I have 1 job with 2 configurations: incremental sy...
# ask-community
p
I have 1 job with 2 configurations: incremental sync and full sync. I want to schedule the full sync weekly, the incremental sync hourly. If they run at the same time, things get messed up. What is the best practice to let the jobs (in the same repo) wait for each other to prevent that they run at the same time?
r
You could set the concurrency limit of these jobs to be 1 using tags: https://docs.dagster.io/deployment/run-coordinator#run-limits
This way, both jobs cannot be occurring at the same time.
p
Great! 🙏