Hacker News new | ask | show | jobs
by pmart123 2829 days ago
Well, Celery uses Rabbit-MQ and typically Redis underneath. Rabbit-MQ to pass messages, and Redis to store results.

You can scale up web servers to handle more requests, which then uses Celery to offload jobs to different clusters.

1 comments

Yeah, but fundamentally Celery is a task queue. You don't build a distributed system around that.