Enabling of Task Orchestration feature in Jobs via API as well Databricks supports the ability to orchestrate multiple tasks within a job. You must en...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
โ11-08-2021 08:36 AM
Enabling of Task Orchestration feature in Jobs via API as well
Databricks supports the ability to orchestrate multiple tasks within a job. You must enable this feature in the admin console. Once enabled, this feature cannot be disabled. To enable orchestration of multiple tasks:
Go to the admin console.
Click the Workspace Settings tab.
In the Jobs section, click the Task orchestration in Jobs toggle.
Click Confirm.
In addition to this, this feature can also be enabled via the API
You can use PATCH call to https://<databricks-instance>/api/2.0/workspace-conf with a payload of
{
"enableJawsMultitasking": "true"
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
โ11-08-2021 08:40 AM
@Mohit Miglaniโ this will be really helpful for those who prefer CLI / API more than the UI.

