TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What do you use Celery / RabbitMQ for?

5 pointsby zabanaalmost 8 years ago

2 comments

malux85almost 8 years ago
To easily distribute jobs over a cluster.<p>Running right now:<p>I have a database of 100,000,000 molecules, and I need to compute the force field on all of them. So I put all of the IDs in the celery queue, and then start a worker across 6 nodes,<p>The job pulls the row from the database, computes the force field, and then stores the result.<p>Lots of jobs like this: - I used to use it to tune hyperparameters of shallow models - Used it to batch convert a bunch of compressed files from one format to another - Use it with celery beat to schedule scraping of URLs
gerenukalmost 8 years ago
We have written distributed crawler using celery&#x2F;Rabbitmq.<p>Analyzing social signals real time and it is processing more than 10 million requests everyday. On the way to scale it to process more than 50-100 million requests per day.<p>Other than that doing nlp tasks along with machine learning using topic modeling, ner etc.