0 votes
in Celery by

If we add the following in celery configuration

task_annotations = {

  ‘tasks.add’: {‘rate_limit’: ’10/m’}

}

what does it mean

a) mechanism to low prioritize misbehaving queues

b) the task rate limit is set

c) Only 10 tasks of this type can be processed in a minute

d) All the options

1 Answer

0 votes
by
d) All the options

Related questions

0 votes
asked Jun 19, 2022 in Celery by john ganales
0 votes
asked Jun 19, 2022 in Celery by john ganales
...