In a multi-container docker deployment, is `max_wo...
# ask-community
c
In a multi-container docker deployment, is
max_workers
set in
workspace.yaml
to increase the number of concurrent workers? Or is it set elsewhere?
🤖 1
FWIW, this threw me for a loop because the format is
max_workers
and not
max-workers
like it is with other params in the
CMD
line. I ended up with
Copy code
CMD ["dagster", "api", "grpc", "-h", "0.0.0.0", "-p", "4000", "--max_workers", "3", "--module-name", "my_code_module"]
s
Good catch Clay. Definitely a usability problem we will fix: https://github.com/dagster-io/dagster/pull/12246
👍 1