Celery is a simple and reliable distributed system to process tasks. At Dynamic Yield, we use Celery to orchestrate and distribute work across pods in Kubernetes. Celery communicates via messages, usually using a broker to mediate between clients and workers. We use RabbitMQ as the broker. In our system, we…