I use the Batch API to batch requests per customer.
While I can control the concurrency of Celery workers with WORKER_CONCURRENCY, is there a way to limit the concurrency of tasks per batch? Currently, there are situations in which Internet.nl does tens of requests per second to a specific customer (with a few hundred domains, all in the same batch).
I use the Batch API to batch requests per customer.
While I can control the concurrency of Celery workers with
WORKER_CONCURRENCY, is there a way to limit the concurrency of tasks per batch? Currently, there are situations in which Internet.nl does tens of requests per second to a specific customer (with a few hundred domains, all in the same batch).