cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Data Engineering
Join discussions on data engineering best practices, architectures, and optimization strategies within the Databricks Community. Exchange insights and solutions with fellow data engineers.
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Make the job fail if a task fail

tramtran
Contributor

Hi everyone,

I have a job with 2 tasks running independently. If one of them fails, the remaining task continues to run. I would like the job to fail if any task fails.

Is there any way to do that?

Thank you!

7 REPLIES 7

holly
Valued Contributor III

Can you share why you want that to happen? If it's a case of saving on compute, you can repair the run and only rerun the parts that failed.

If you want the status code to be a failure, you could use the if/else logic with both tasks as dependents to then point to a failure script to 'fail' the final step.

 

Actually, my job has multiple streaming tasks running independently. I would like to make the whole job stop if one of the streaming tasks fails.

For example, one of the tasks failed after 8 minutes of execution, but the others continued running for 35 hours until I found and canceled them. I would the job to fail if any task fails.

tramtran_0-1722587141935.png

 

holly
Valued Contributor III

Unfortunately, that's not something that can be done today. It's a good idea, so I'll raise it with the product team.

As for saving you 35 hours, you can set up alerting should a single task fail. The alerts can be emails, but can also be slack/teams messages or anything with a webhook. Setup docs are here: https://docs.databricks.com/en/workflows/jobs/job-notifications.html

 

mhiltner
Contributor III

An idea, not sure if it helps you... You could set up a new task dependent on every other task, but with the run option set to "Run If at least one dependency failed". This new task would be a simple API call to the CANCEL RUN or CANCEL ALL RUNS OF A JOB endpoint. -- https://docs.databricks.com/api/workspace/jobs/cancelallruns

mhiltner_0-1722710662686.png

 

holly
Valued Contributor III

The problem with that is that you're dependent on the other task 'finishing' and if it's an always on streaming job, by definition it won't finish

Edthehead
Contributor

Extending to what @mhiltner has suggested, let's  say you have 2 streaming tasks streamA and streamB. Create 2 separate tasks taskA and taskB. Each of these tasks should execute the same notebook which makes an API call to the CANCEL RUN or CANCEL ALL RUNS OF A JOB endpoint.

Task settings should be as follows :

  1. taskA be dependent on streamA with Run if dependencies as All failed. So taskA will only run when streamA fails.
  2. taskB to be dependent on streamB with Run if dependencies as All failed. So taskB will only run when streamB fails.

So now, if streamA fails, taskA will run and cancel the run. If streamB fails, taskB will run and cancel the run. 

Kaniz_Fatma
Community Manager
Community Manager

Hi @tramtran, Thanks for reaching out! Please review the responses and let us know which best addresses your question. Your feedback is valuable to us and the community. If the response resolves your issue, kindly mark it as the accepted solution. This will help close the thread and assist others with similar queries. We appreciate your participation and are here if you need further assistance!

Connect with Databricks Users in Your Area

Join a Regional User Group to connect with local Databricks users. Events will be happening in your city, and you wonโ€™t want to miss the chance to attend and share knowledge.

If there isnโ€™t a group near you, start one and help create a community that brings people together.

Request a New Group