Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
33 views

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 ...
4 votes
1 answer
10k views

After going through a couple of articles explaining the difference between Message Queues and Message Brokers, I'm quite confused as to whether Kafka is a Message Queue or a Message Broker. The main ...
0 votes
0 answers
64 views

I have a queue in RabbitMQ broker called queue-ktm of type quorum. There are tasks pushed to this queue and available. I run a celery worker to consume from this queue with following configuration: ...
0 votes
1 answer
90 views

I want to publish a sale of a product. I just wanted to publish once to a topic like sale/124 where each number represents an id of a store. Then each queue connected to that store only had to ...
0 votes
0 answers
43 views

Simply put, I want to implement the same function of ServiceBusReceiver.RenewMessageLockAsync of Azure Service Bus queue in RabbitMQ. This function lets the message consumer "extend" the &...
1 vote
1 answer
731 views

I am trying to connect to a localhost RabbitMQ server on my machine and keep getting the error. Error: RabbitMQ.Client.Exceptions.BrokerUnreachableException: 'None of the specified endpoints were ...
0 votes
0 answers
23 views

I have a zip file with csv tables which are read and formatted with polars. I want to run it so this operation doesn't block my main thread. But it blocks it and fastapi cannot process any incoming ...
60 votes
6 answers
28k views

From what I understand, a message queue helps with inter-process communication, but it is limited to basically allow communication between only 2 applications? I'm asking this because for example MSMQ ...
0 votes
0 answers
47 views

I'm new to message brokers and feel quite confused. The task is to send changes from PostgreSQL table to a RabbitMQ as a no-code solution. The instrument chosen is pg-bifrost. I took a look at the ...
1 vote
2 answers
2k views

Iam trying to figure out a way to subscribe to multiple topics, and then after receiving a message the function should publish it to a different broker depending on the topic. I've thought of ...
0 votes
0 answers
144 views

VerneMQ broker with 3 nodes A,B and C is deployed in Kubernetes with clustering enabled. Assume that a client x is connected to Node B. A request to disconnect client x is sent to the broker and the ...
146 votes
4 answers
87k views

All of the examples of Kafka | producers show the ProducerRecord's key/value pair as not only being the same type (all examples show <String,String>), but the same value. For example: producer....
3 votes
2 answers
6k views

I am just playing with RabbitMQ and trying to get a test sender and receiver set up in two C# projects. TestSender.cs using System; using RabbitMQ.Client; using System.Text; public class ...
0 votes
2 answers
572 views

SQL Server 2019 I'm trying to start stored procedures from a trigger (so that the trigger stays lean) to process data in some production facility. Working with queues/messages etc is new to me I've ...
0 votes
2 answers
202 views

I am facing a challenge with ESQL code. I have an XML message that contains a recurring segment, and I need to extract unique values from a specific element within that segment. Following is the input ...
2 votes
2 answers
190 views

I'm working on a Go application that subscribes to an MQTT topic and processes incoming messages using a handleMessage function. However, I'm encountering an issue where the handleMessage function is ...
3 votes
1 answer
1k views

I have a k8s service, using rabbitMQ as message broker. I want to be able to delete a specific queue if the service deployment which may have multiple pods is stopped. Reading the documentation ...
2 votes
2 answers
9k views

I need to know if the character § is supported by CCSID 1208. In general, How do we find the list of characters supported by a particular CCSID. Thanks
0 votes
3 answers
3k views

Is anyone has a logical explanation why despite I have the clear session flage = false I do not receive the updated published message I am subscribed to while i am not connected to the broker? With ...
2 votes
1 answer
370 views

I'm doing a project to study more of brokers and i'm using .NET 6.0 and Service bus to do this. My question is: I need to publish a message and consume the same message only after a few time (i put ...
0 votes
0 answers
326 views

I'm trying to build mosquitto from the source code (which is in the official github repository). After resolving some dependencies make install finishes without errors. However, when testing ...
0 votes
1 answer
1k views

I'm working on a project where we are trying to utilize message brokering where after a type message starts going to a given consumer, it continues to go to that consumer. This is essentially the same ...
0 votes
1 answer
91 views

I am trying to implement a RabbitMQ solution in an environment where all connections have to be started from the secure zone to the less secure zone. The standard RabbitMQ implementation foresees the ...
-1 votes
2 answers
526 views

Is there any framework or platform that is providing message exchange in reliable, flexible, and scalable manner? Where I have the following scenario: I have external devices exchanging messages with ...
0 votes
2 answers
286 views

Scenario: Users are taking a long quiz. I store the current score and location in the quiz after each interaction. I want to store in the DB only the last interaction the user did during this current ...

1
2 3 4 5
14