I have a message queue containing a customer id and some of their data. To improve performance those messages will be processed by multiple threads. My issue is that I need to find a way to ensure the message order for individual customers. To give an example, take a financial system with a queue of transactions: Message1: customer: 1, deposit:
Advertisement
Tag: message-queue
Do I need transactional queues in Microservices?
I’m learning about microservices and I understand that in my scenario I want microservices to communicate with each other using message queues, with persistence. That means if the instance crashes and …
Advertisement