TableStatusInfoJobSummary
Summary of an ingestion or deletion job.
Properties
id
String required
The unique ID of the job.
type
String required
Possible values: APPEND
, REPLACE
, DELETE
, DELETE_ALL
The job type.
status
String required
Possible values: CREATED
, SCHEDULED
, RUNNING
, SUCCESS
, SUCCESS_WITH_WARNING
, NO_ROWS_INGESTED
, FAILED
, CANCELED
, UNKNOWN
A job can take one of the following statuses:
CREATED
: The job has been created but has not yet been scheduled to run. Jobs may be in this state if they must wait for another job to complete before being scheduled.SCHEDULED
: The job has been scheduled but not yet started. Jobs may be in this state if they are waiting for resources, such as compute or locks, to become available. For jobs waiting on a compute resources, Polaris automatically scales up as necessary (within your account limits) to run the job.RUNNING
: The job is running.SUCCESS
: The job succeeded.SUCCESS_WITH_WARNING
: The job succeeded but encountered non-fatal errors. This state is most often seen on ingestion jobs where data was ingested but some rows were malformed. The job details for a job in this state contain a description of the non-fatal errors.NO_ROWS_INGESTED
: The ingestion job finished without failures, but no rows were ingested.FAILED
: The job failed. Check the job details for the cause of the failure. This state is most often seen on ingestion jobs if the data cannot be parsed.CANCELED
: The job was canceled by a user.
progressUri
String
The URI for getting the progress of this job.
submittedOn
DateTime
The date and time the job was submitted.