[Django]-Celery events specific to a queue

3👍

From http://celery.readthedocs.org/en/latest/getting-started/brokers/redis.html:

Monitoring events (as used by flower and other tools) are global and
is not affected by the virtual host setting.

This is caused by a limitation in Redis. The Redis PUB/SUB channels are global and not affected by the database number.

This seems to be one of Redis’ caveats 🙁

Leave a comment