Questions tagged [messagebroker]

A Message Broker is a pattern which is designed for purpose of consuming messages from applications and performing actions like transformation , providing a point-to-point and publish-subscribe pattern of message routing mechanism. It mediates communication among applications, minimizing the mutual awareness that applications should have of each other in order to be able to exchange messages, effectively implementing decoupling.

Message broker is an intermediary program module which translates a message from the formal messaging protocol of the sender to the formal messaging protocol of the receiver. Message brokers are elements in telecommunication networks where programs (software applications) communicate by exchanging formally-defined messages. Message brokers are a building block of Message oriented middleware.

Resources:

648 questions
4
votes
0 answers

Which is the best configuration for a Kafka consumer to increase throughput

I have a bunch of services that are integrated via Apache Kafka, and each of the services has their consumers and producers, but im facing slowing consuming rate like there's something slowing the consuming when get so much load into the…
4
votes
3 answers

What open source message queuing software provides durability with strict ordering?

What we need is RabbitMQ that actually works as a queue and doesn't do this. Messages should stay at the head of a queue untill client dequeues them explicitly. It seems like a very straightforward scenario, but for some reason I can't find any…
Kimi
  • 13,621
  • 9
  • 55
  • 84
4
votes
1 answer

Mqtt doesn't send data to subscriber after reconnection

I have a mqtt beoker which i am trying to connect and subscribe in python. code client = mqtt.Client("P1",clean_session=True) #create new instance client.on_connect = on_connect client.on_message = on_message #attach function to…
chink
  • 1,505
  • 3
  • 28
  • 70
4
votes
1 answer

Subscribing to an Azure Event Grid topic directly from an Angular client

I'm working on an application that needs to respond to events from a third-party WebHook. I chose Azure Event Grid as my chosen event broker, Angular for the frontend and Asp.Net Core for the backend. In my current solution, I'm publishing to the…
4
votes
2 answers

Is it possible to wait until celery group done?

I am trying to do group tasks and wait until all the group subtasks finished then run the last task. But when I call task it calls group and last tasks but the last task finished before group finish. Is it possible to wait until all the tasks inside…
Zorig
  • 585
  • 1
  • 10
  • 26
4
votes
1 answer

Will rabbitmq server recover messages for queue marked as durable, when rabbitmq-server gets crashed?

I am going through the documentation of AMQP given by Rabbitmq official site. It says that Queue Durability Durable queues are persisted to disk and thus survive broker restarts. Queues that are not durable are called transient. Not all…
Mangu Singh Rajpurohit
  • 10,806
  • 4
  • 68
  • 97
4
votes
5 answers

How to move messages from one queue to another in RabbitMQ

In RabbitMQ,I have a failure queue, in which I have all the failed messages from different Queues. Now I want to give the functionality of 'Retry', so that administrator can again move the failed messages to their respective queue. The idea is…
4
votes
2 answers

Reading data from _transaction_state topic in Kafka 0.11.0.1

I want to read meta data for transaction (which is supported in Kafka 0.11.0.1) so that I can figure out that whether the transaction for a particular transactional ID has been committed or not. Currently I am getting the key and value from…
4
votes
1 answer

How to specify advertised listeners for Kafka multi broker setup on kubernetes and expose the cluster expernally?

I am trying to setup a multi broker kafka on a kubernetes cluster hosted in Azure. I have a single broker setup working. For the multi broker setup, currently I have an ensemble of zookeeper nodes(3) that manage the kafka service. I am deploying the…
Annu
  • 145
  • 1
  • 3
  • 10
4
votes
1 answer

java.lang.OutOfMemoryError: GC overhead limit exceeded on WSO2 MB

I've been recently working on with the WSO2 Message Broker (Ver : 3.1.0 ) in order to publish and consume messages using JMeter as the jms client. So I've got my publisher Java program where I'm publishing the messages from and I'm trying to publish…
Kulasangar
  • 9,046
  • 5
  • 51
  • 82
4
votes
1 answer

Kafka Consumer path must not end with / character

I am using Apache Kafka 0.8.2.1 to stream web events to other datasources. The Kafka Producer I wrote is working great and I'm able to see the data getting streaming through my topic when I run kafka-console-consumer.sh. However, I have had no…
4
votes
1 answer

PUT on a specific MQ Cluster

I'm using WebSphere MQ. I have 3 QMs: QM1, QM2, and QM3. QM1 and QM2 form together an MQ Cluster named CLS12, while the QM2 and QM3 form CLS23. In other words, QM2 is in two clusters. I'd like to put a message (actually, it will be IIB to put a…
spakendralo man
  • 635
  • 2
  • 8
  • 21
4
votes
1 answer

Log4jNode in Message flow in Websphere Message Broker is throwing error

I am developing a simple message flow which uses Log4j to log the status at various stages. But when I am trying to run this flow I am getting the following error. I have use Log4jNode in the message flow. An error occurred when trying to resolve…
user1882601
4
votes
2 answers

Unable to connect to queue manager in WebSphere MQ 7.1

I've installed WebSphere MQ 7.1 on Linux platform, after which I installed WebSphere Message Broker 8.0.0.1. Now when I try to create an execution group, I get an exception: Reason code 2035. This exception states that the user is unauthorised to…
Tanu
  • 369
  • 5
  • 7
  • 18
4
votes
1 answer

Emulating serial bus with JMS?

I'm currently working on meter-bus project and my testing environment includes com0com, hub4com, rxtx and mixed real & virtual devices. Since I've collected enough data I want to move away from the serial stuff and go for a pure virtual tcp/ip…
1 2
3
43 44