Skip to main content

Job

Specification

{
"name": String,
"description": String,
"state": String,
"failureMode": String,
"allowConcurrentRuns": Boolean
}

Structure values

Field NameTypeDescriptionRequiredDefault
nameStringJob name.Required
descriptionStringExpanded job information.None
stateStringWhether the job is enabled or disabled. Supported values: Enabled, Disabled.Enabled
failureModeStringJob flow behavior in the event of a task failure. Supported values: Halt, Continue.Halt
allowConcurrentRunsBooleanWhen true this job can be run concurrently with itself. When false if someone tries to start the job while it is currently running they will get an exception stating the job is already running.True

Example

{
"name": "etl_pipeline",
"description": "Job that executes ETL for my data lake."
}