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: How big companies handle big queues?

2 pointsby superdarioover 2 years ago
I would like to know how big companies handle big queues. For example, if there are 1M users and each sends one message and it all happens almost at the same time within few seconds timeframe.<p>It means 1M messages need to reach other 1M users and 1M push notifications need to be sent. I presume all those requests go to the queue so the response is returned faster and user experience is better.<p>But how do those companies handle 1M queue jobs, since most of those messages need to reach other users almost in realtime, without much delay.

1 comment

yawgmothover 2 years ago
One methos is to use a fan out strategy. Increase the number of consumers on the queue.