2
celery tasks have a rate_limit option that should do what you want. This is per-worker so you’ll need to use a dedicated queue to ensure that all requests for this task got the the one worker.
Source:stackexchange.com
2
celery tasks have a rate_limit option that should do what you want. This is per-worker so you’ll need to use a dedicated queue to ensure that all requests for this task got the the one worker.