Tag : message-queue

I have a service A that every once in a while needs to send a message to a cluster of services B1, B2 … BN.
Then all of these services need to receive that message reliably, and send a confirmation back to A.
After A receives the confirmation from all services from cluster B, it needs to send a message to another cluster of services C1, C2 …

Read more

Had a discussion today in how to implement services that work with messages coming in from event queues. We call these services processors. One of us argues for using several functions, while the other argues for fewer functions that do more things, according to idiomatic go. To make things more difficult, there’s a healthy amount of async stuff happening and I’m new to ..

Read more