Table

jobs

Description

Jobs


Column

Format

Description

Definition

Required

Comments

id

integer, primary key

Row identifier

autoincrement

(tick)


co_idinteger, foreign keyCO IDcos:id(tick)
pluginvarchar(80)Job plugin entry point model
(tick)
parameterstextJSON encoded list of parameters to pass to the Job plugin

Although this is a JSON document, native JSON types are not used to facilitate portability
requeue_intervalintegerUpon successful completion, requeue a new copy of the same Job after this many seconds


retry_intervalintegerUpon failure, retry the Job after this many seconds

A new copy of the job will be queued, and the original will be placed in failed status
requeued_from_job_idinteger, foreign keyIf this Job was requeued or retried, the original Jobjobs:id

statusvarchar(2)Job status
  • A: Assigned
  • CX: Canaceled
  • GO: InProgress
  • OK: Complete
  • Q: Queued
  • X: Failed
(tick)
assigned_hostvarchar(60)The hostname of the server that has been assigned this Job to process


assigned_pidintegerThe Process ID (PID) that has been assigned this Job


register_summaryvarchar(256)Summary description for status at time of Job registration


start_summaryvarchar(256)Summary description for status at time of Job start


finish_summaryvarchar(256)Summary description for status at time of Job completion


register_timetimestampThe time this Job was registered (queued)


start_after_timetimestampThe Job will be started no earlier than this time, or null for ASAP


start_timetimestampThe time this Job was started


finish_timetimestampThe time this Job finished or was terminated


percent_completeintegerFor In Progress Jobs, percent completeAs defined by the Plugin

  • No labels