3,986 questions
0 votes
0 answers
36 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 ...
-1 votes
2 answers
69 views
Why retry cound does not increase upon exception thrown?
In Symfony I use a custom Serializer upon a transport: framework: messenger: transports: async: '%env(MESSENGER_TRANSPORT_DSN)%' failed: 'doctrine://default?...
0 votes
0 answers
101 views
Azure Functions (Flex Consumption) – Storage Queue trigger not firing when message added
I’m working on an Azure Functions project using the new Flex Consumption model with @azure/functions in TypeScript. I have two functions: Producer – sends a message to a storage queue: export async ...
0 votes
0 answers
99 views
Win32 Mouse Click is observed through Message Queue, but not working
I am making a Win32 app. In this, there are two windows - the top one is transparent, and the bottom one is normal. I am trying to achieve this effect: When the click happens on the top transparent ...
0 votes
1 answer
144 views
How to use RabbitMQ Publisher Confirms and Returns for Reliable Message Delivery
I'm using RabbitMQ with Spring AMQP and want to ensure reliable message delivery from the producer to the RabbitMQ broker. To achieve this, I've enabled Publisher Confirms and Publisher Returns. ...
0 votes
0 answers
132 views
BullMQ: Flow parent job's 'failed' event not triggered when child jobs fail
I'm implementing a job flow using BullMQ (latest version) with NestJS, and I've encountered an issue with error handling in flow jobs. The setup I have a parent flow job and multiple child jobs. The ...
0 votes
0 answers
25 views
Asynch integration approach between two ERP systems
We need to integrate two ERP systems which have to exchange many Entities (Items, Vendors, Prices ect.) and business Documents (Purchase orders, Sales orders, Warehouse transfer orders, ect.). The ...
0 votes
2 answers
255 views
Discord Bot and a website communication, what should be the system design
I'm building a website that lets users add new items in their profiles. Users can also do the same using Discord bot's commands. In both cases the Discord bot sends a message New item added by @user ...