Field | Nullable | Data type | Constraint | Unique Constraint | Description |
---|
ID | NOT NULL | NUMERIC | Primary Key | | |
INSTANCE_ID | NOT NULL | NUMERIC | Foreign Key | | references INVENTORY_INSTANCES.ID |
JOB_ID | NOT NULL | NUMERIC | Foreign Key | | references INVENTORY_JOBS.ID |
JOB_CHAIN_ID | NOT NULL | NUMERIC | Foreign Key | | references INVENTORY_JOB_CHAINS.ID |
NESTED_JOB_CHAIN_ID | NOT NULL | NUMERIC | Foreign Key | | references INVENTORY_JOB_CHAINS.ID |
NAME | NOT NULL | VARCHAR | | | job node name: file_order_source job_chain_node file_order_sink
|
ORDERING | NOT NULL | NUMERIC | | | ordering of node in job chain |
STATE
| | VARCHAR | | | job node state as specified in the configuration |
NEXT_STATE | | VARCHAR | | | next state for an order in case of successful execution |
ERROR_STATE | | VARCHAR | | | error state for an order in case of unsuccessful execution |
JOB | | VARCHAR | | | job name as specified in the job node configuration e.g. ../my_job |
JOB_NAME | NOT NULL | VARCHAR | | | corresponds to INVENTORY_JOBS.NAME. Paths are resolved to absolute values starting from the live directory e.g. /test/my_job |
NESTED_JOB_CHAIN | | VARCHAR | | | job_chain attribute of the node |
NESTED_JOB_CHAIN_NAME | NOT NULL | VARCHAR | | | corresponds to INVENTORY_JOB_CHAINS.NAME |
NODE_TYPE | NOT NULL | NUMERIC | | | | specifies the node type: 1: job 2: job chain 3: file order source 4: file order sink 5: end node
|
ON_ERROR | | ON_ERROR | | VARCHAR | | | on_error attribute of a job_chain_node |
DELAY | | NUMERIC | | | delay attribute of a job_chain_node |
DIRECTORY | | VARCHAR | | | directory attribute of a file_order_source |
REGEX | | VARCHAR | | | regex attribute of a file_order_source |
FILE_SINK_OP | | NUMERIC | | | specifies the operation in case of file order sink : |
MOVE_PATH | | VARCHAR | | | in case of file order sink and operation move this column will have the directory path e.g. /data/input/archive
|
CREATED | NOT NULL | DATETIME | | | UTC timestamp of record creation |
MODIFIED | NOT NULL | DATETIME | | | UTC timestamp of record modification |