87 discussions in the community
hey all, im working on a system that needs to push real-time updates to a large number of users at the same time, kinda like a live feed or alerts. im...
So, I'm working on a bunch of new microservices, and they all need to talk using message queues. A big headache, honestly, is making sure things don't...
hey folks, ive been thinking a lot about how microservices talk to each other, especially when we need to decouple services and handle spikes in load....
hey every1, lately ive been thinkin a lot abt consistency models in distributed systems. we often aim for strong consistency, but it can come w/ perf ...
hey folks, i’ve been thinking a lot about how microservices should talk to each other. we often use synchronous REST calls for simple request/response...
I've been wondering about scaling message queue consumers. When a queue gets swamped with messages, do you usually just add more instances of the same...
when you're building systems that use message queues, keeping things durable is always a big worry. i've totally seen setups where messages can just v...
Hey everyone, I'm trying to figure out the best caching strategies for our really busy web app. We've got tons of static files, plus some content that...
Hey everyone, hoping to get some collective wisdom here. We've been pushing a lot of data between services synchronously, and honestly, it's starting ...
hey everyone, i've been thinking a lot about message queues lately, espcially in systems where throughput is absolutely critical. weve looked at kafka...
Hey everyone, I'm trying to figure out the best strategy for handling background jobs in our system. We've got a bunch of tasks like sending emails, p...
I've been using message queues for a bit now, you know, to split up services and deal with tasks that don't need to happen right away. They've worked ...
hey everyone, i've been thinking about message queues lately, specifically around when they stop being a solution and start becoming the problem. we a...
hey everyone, been thinking about how we handle tasks that dont need immediate user feedback. for a while now, weve been doing everything synchronousl...
hey everyone, ive been thinking a lot about system design patterns lately, and im a bit unclear on the exact criteria for introducing a message queue....
hey everyone, i've been thinking a lot about how different services in a distributed system should communicate. we've all heard about message queues l...
we're trying to scale up our user service, and our one PostgreSQL instance is starting to show its limits. writes are getting slower, and reads are mo...
hey everyone, ive been wrestling with message queues lately. were considering using one for some background job processing, but im wondering if were o...
Hey everyone, I've been giving our API design patterns some thought recently. Most of what we do is request-response, and that's fine for a lot of syn...
So, I've been pondering message queues quite a bit lately. Everyone seems to use them for breaking up services and dealing with tasks that don't need ...