https://dagster.io/ logo
#dagster-support
Title
# dagster-support
a

Antoine Valette

08/08/2022, 4:38 PM
Hello there! Is there a way to limit the number of parallel
op
run in a
job
?
o

owen

08/08/2022, 5:00 PM
hi @Antoine Valette! If you're using the multi process executor (which is the defualt), you can configure
max_concurrent
to specify the maximum number of concurrently running ops: https://docs.dagster.io/concepts/ops-jobs-graphs/job-execution#default-job-executor
a

Antoine Valette

08/08/2022, 7:59 PM
Thanks a lot, very clear! Is there a way for the Docker or Kubernetes executor?
m

Mike Logaciuk

08/08/2022, 9:32 PM
Isn't it working for Docker too? I think I saw that my 4 way job was working only with 2 jobs in parallel mode while I was testing it with concurrency limit
a

Antoine Valette

08/09/2022, 6:30 AM
Let me try that! Thanks a lot for the help.