Alberto_Umana
Databricks Employee
Databricks Employee

Hi @h2p5cq8,

 
Is it possible for you to Instead of a continuous workflow, you can use a scheduled workflow that runs every minute. To prevent multiple instances from running simultaneously, you can implement concurrency control:
1. Set the workflow to run every minute using a cron expression like `* * * * *`.
2. At the beginning of your workflow, add a check to see if a previous instance is still running.
 
Or add dependency tasks in your workflow.

View solution in original post