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:
celery -A plane worker -l info
According to the documentation, -c needs to be set to limit the number of concurrent processes.
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:
According to the documentation, -c needs to be set to limit the number of concurrent processes.