Is it possible to 'pause' qued runs? I have 300 j...
# ask-community
r
Is it possible to 'pause' qued runs? I have 300 jobs waiting to start from a sensor (because I limit the number of allowed runs). Could I pause runs or change priority?
1
I see there is a dagster/priority tag but that does not pause the other runs. But I think I can use it for my goal of running one before the other
j
Hi Roel, yeah the priority tag makes sense here. We don’t currently support pausing from within Dagit, but it is possible to redeploy the daemon with a new queue config.
max_concurrent_runs: 0
will stop all dequeuing, which doesn’t sound like quite what you want
r
The priority tagging actually does pretty much what I want, now that I 've tried it out
thanks!