- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2026 08:11 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2026 08:58 AM
You can trigger a specific task from another job code.
- Triggering Task via Python
You can invoke a specific task of a second job using below code in the first job. Ensure the calling Service Principal has Run permissions on the target job.
w = WorkspaceClient()
# Trigger the 'Task1' task within the specified Job ID
w.jobs.run_now(
job_id=615516,
only=["Task1"] # run Task1
)- You can also use Conditional Tasks (If/Else) within a job and use modular code in jobs to control it better
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2026 09:04 AM
Hi,
There is no way that I'm aware of to just trigger one task in a pipeline. You can repair a run, but this will just trigger everything in the job from the point it failed out. If I've understood you correctly, the better approach may be to separate your table creations into individual jobs, then run an overall job to execute them for your day-to-day schedule. You will then be able to execute the individual components as well, as and when you need to.
I hope that helps.
Thanks,
Emma
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2026 10:40 AM
1. Go to job and left click on task you want to run .
2. Click on play button(highlighted in yellow in attachment )
3. This make sure that you run only 1 task at a time and not the whole job .