Worker deployments have no concurrency limit and will use all CPU cores by default, which can lead to memory exhaustion on bare metal clusters. The worker process is started using the following command: ```shell celery -A plane worker -l info ``` According to the [documentation](https://docs.celeryq.dev/en/stable/reference/cli.html#celery-worker), -c needs to be set to limit the number of concurrent processes.