Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleINVENTORY_AGENT_CLUSTERS
FieldNullableData typeConstraintUnique Constraint Description
IDNOT NULLNUMERICPrimary Key  
INSTANCE_IDNOT NULLNUMERICForeign Key 

references INVENTORY_INSTANCES.ID

PROCESS_CLASS_ID
NOT NULLNUMERICForeign Key  X

references INVENTORY_PROCESS_CLASSES.ID

SCHEDULING_TYPE
NOT NULLVARCHAR  

type of scheduling configured for the agent cluster

  • first Fixed Priority Scheduling
  • next Round Robin Scheduling
  • single
NUMBER_OF_AGENTS
NOT NULLNUMERIC   
CREATEDNOT NULLDATETIME  UTC timestamp of record creation
MODIFIEDNOT NULLDATETIME  UTC timestamp of record modification
Expand
titleINVENTORY_APPLIED_LOCKS
FieldNullableData typeConstraintUnique Constraint Description
IDNOT NULLNUMERICPrimary Key  
JOB_IDNOT NULLNUMERICForeign Key  X

references INVENTORY_JOBS.ID

LOCK_ID
NOT NULLNUMERICForeign Key X

references INVENTORY_LOCKS.ID

CREATEDNOT NULLDATETIME  UTC timestamp of record creation
MODIFIEDNOT NULLDATETIME  UTC timestamp of record modification

  

Expand
titleINVENTORY_FILES
FieldNullableData typeConstraintUnique ConstraintDescription
IDNOT NULLNUMERICPrimary Key  
INSTANCE_IDNOT NULLNUMERICForeign Key X

references INVENTORY_INSTANCES.ID

FILE_TYPENOT NULLVARCHAR  

file types in use:

  • job
  • job_chain
  • order

file types not used:

  • process_class
  • config
  • lock
  • schedule
  • ...
FILE_NAMENOT NULLVARCHAR  X

path from live directory

e.g. /test/my_job.job.xml

FILE_BASENAMENOT NULLVARCHAR  

file base name with extension

e.g. my_job.job.xml

FILE_DIRECTORYNOT NULLVARCHAR  

path calculated from the live directory

e.g. test

FILE_CREATEDNULLDATETIME  UTC timestamp of the creation date of the file
FILE_MODIFIEDNULLDATETIME  UTC timestamp of the modification date of the file
FILE_LOCAL_CREATEDNULLDATETIME  local timestamp of the creation date of the file
FILE_LOCAL_MODIFIEDNULLDATETIME  local timestamp of the modification date of the file
CREATEDNOT NULLDATETIME  UTC timestamp of record creation
MODIFIEDNOT NULLDATETIME  UTC timestamp of record modification

  

Expand
titleINVENTORY_INSTANCES
FieldNullableData typeConstraintUnique ConstraintDescription
IDNOT NULLNUMERICPrimary Key  
OS_ID 
NOT NULL NUMERIC Foreign Key  

references INVENTORY_OPERATING_SYSTEMS.ID 

SCHEDULER_IDNOT NULLVARCHAR  Xcorresponds to the SCHEDULER_ID that is specified during installation of the JobScheduler instance
HOSTNAMENOT NULLVARCHAR  Xhost on which the JobScheduler instance has been installed
PORTNOT NULLNUMERIC  X

HTTP port that the JobScheduler instance is listening to.

LIVE_DIRECTORYNOT NULLVARCHAR  path of the live directory
VERSION
NOT NULL VARCHAR   

JobScheduler version e.g. 1.11.0

COMMAND_URL 
NOT NULLVARCHAR  HTTP URL for XML request response
URL 
NOT NULLVARCHAR  TCP URL still used by supervisor
TIMEZONE
NOT NULLVARCHAR   
CLUSTER_TYPE
NOT NULLVARCHAR  

possible values

  • standalone
  • active
  • passive
PRECEDENCE
 NUMERIC  precendence of JobScheduler in a passive cluster e.g. 0 (primary) , 1 (backup no. 1), 2 (backup no. 2) etc
DBMS_NAME
NOT NULLVARCHAR  name of the database vendor e.g. MySql , Oracle, etc
DBMS_VERSION
 VARCHAR   release number of database system
STARTED_AT
 DATETIME    
SUPERVISOR_ID
 NUMERIC   reference INVENTORY_INSTANCES.ID
AUTH
 VARCHAR    
CREATEDNOT NULLDATETIME  UTC timestamp of record creation
MODIFIEDNOT NULLDATETIME  UTC timestamp of record modification
Expand
titleINVENTORY_JOB_CHAIN_NODES
FieldNullableData typeConstraintUnique ConstraintDescription
IDNOT NULLNUMERICPrimary Key  
INSTANCE_IDNOT NULLNUMERICForeign Key 

references INVENTORY_INSTANCES.ID

JOB_ID 
NOT NULL NUMERIC Foreign Key  references INVENTORY_JOBS.ID 
JOB_CHAIN_IDNOT NULLNUMERICForeign Key references INVENTORY_JOB_CHAINS.ID
NESTED_JOB_CHAIN_ID 
NOT NULL NUMERIC Foreign Key  references INVENTORY_JOB_CHAINS.ID 
NAMENOT NULLVARCHAR  

job node name:

  • file_order_source
  • job_chain_node
  • file_order_sink
ORDERINGNOT NULLNUMERIC  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_NAMENOT NULLVARCHAR  

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 
 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 :

  • 1: move
  • 2: remove
MOVE_PATH 
 VARCHAR   

in case of file order sink and operation move this column will have the directory path

e.g. /data/input/archive

CREATEDNOT NULLDATETIME  UTC timestamp of record creation
MODIFIEDNOT NULLDATETIME  UTC timestamp of record modification

...