SchedulerJobInfo Data Type

POJO to represent the job table in the database.

Properties
name data type description
id SchedulerJobHandle ID of the job. Each job has a unique id which can be used to query it.
job XJob Definition of the job scheduled.
userName string
jobState SchedulerJobState
createdOn number
modifiedOn number

Example

{
  "id" : {
    "handleId" : "...",
    "handleIdString" : "..."
  },
  "job" : {
    "name" : "...",
    "execution" : {
      "session" : { },
      "query" : { }
    },
    "trigger" : {
      "frequency" : { }
    },
    "job_conf" : [ [ {
      "key" : "...",
      "value" : "..."
    }, {
      "key" : "...",
      "value" : "..."
    } ], [ {
      "key" : "...",
      "value" : "..."
    }, {
      "key" : "...",
      "value" : "..."
    } ] ],
    "start_time" : 12345,
    "end_time" : 12345
  },
  "userName" : "...",
  "jobState" : "SUSPENDED",
  "createdOn" : 12345,
  "modifiedOn" : 12345
}