I read this in celery documentation :
Task.rate_limit http://celery.readthedocs.org/en/latest/userguide/tasks.html#Task.rate_limit
Note that this is a per worker instance rate limit, and not a global rate limit. To enforce a global rate limit (e.g. for an API with a maximum number of requests per second), you must restrict to a given queue.
How to put rate limit on celery queue?
Thanks for not down voting the question.