3 questions from the last 30 days
0 votes
0 answers
37 views
Message queue where each key is processed by only one consumer at a time, but other messages for the same key can be assigned to other consumers
I'm building a distributed system that processes messages from hundreds of thousands of sensors, each identified by a sensor_id. I need to guarantee: Strict ordering per sensor_id No two consumers ...
-3 votes
0 answers
50 views
How to paginate a chat conversation list (1,000+ threads) so new messages move the thread to the top without breaking pagination?
I’m building a chat app using Node.js, Express, MongoDB, and Socket.io. Right now, I load all conversations (around 1,000+) at once, and it’s making the app slow. I want to add pagination to the ...
0 votes
0 answers
14 views
Guidewire triggering a custom event in messaging queue
Im trying to create a new message queue which would send a message to external system but im not able to trigger the new custom event. From the docs ive seen we need to use .addevent() method but ...