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
9
votes
1 answer

How to configure embedded ActiveMQ Broker URL with Spring Boot

I followed a simple example of setting up and running embedded ActiveMQ with Spring Boot (version 1.4.X). Here's link to the example https://spring.io/guides/gs/messaging-jms/ My class is structured as…
Aliyu Fonyuy
  • 515
  • 1
  • 5
  • 13
9
votes
2 answers

Does the number of consumer groups impact Kafka performance

While trying to get a deep understanding of the Kafka distribution model, one sentence here from StackOverflow got me buzzing, and I can't get a confirmation nor deny. So, the more subscriber groups you have, the lower the performance is, as kafka…
8
votes
1 answer

Is it possible to combine REST and messaging for microservices?

We have the first version of an application based on a microservice architecture. We used REST for external and internal communication. Now we want to switch to AP from CP (CAP theorem)* and use a message bus for communication between…
8
votes
0 answers

How Do You Configure The Spring Websocket STOMP Server Name?

I am a bit tired of seeing 'connected to server undefined' in the Chrome dev console. How do I give my server a name? @Configuration @EnableWebSocketMessageBroker public class WebsocketConfig extends AbstractWebSocketMessageBrokerConfigurer { …
7
votes
2 answers

Getting error : WebSphere MQ reason code 2538?

I have WebSphere MQ and WebSphere Message Broker installed on Linux and when I execute mqsicreateexecutiongroup I get an error saying: BIP1046E: Unable to connect with the queue manager (Could not connect to queue manager 'NSPZPAI1' (MQ reason…
Tanu
  • 369
  • 5
  • 7
  • 18
6
votes
4 answers

How to save message into database and send response into topic eventually consistent?

I have the following rabbitMq consumer: Consumer consumer = new DefaultConsumer(channel) { @Override public void handleDelivery(String consumerTag, Envelope envelope, MQP.BasicProperties properties, byte[] body) throws IOException { …
gstackoverflow
  • 36,709
  • 117
  • 359
  • 710
6
votes
1 answer

How to organize queues in Masstransit/RabbitMQ?

I'd like to know best practices for consuming messages. I've read MassTransit docs and I've searching about this but I don't get to come to any conclusion. I have one api (hosting a bus instance) that is publishing messages. These messages are…
6
votes
1 answer

Is Firebase Cloud Messaging considered a message broker?

I have a task to implement a message broker at choice in a distributed system. Is Firebase Cloud Messaging considered one?
6
votes
2 answers

Using ActiveMQ and RabbitMQ simultaneously

According to my experience in working with message brokers, RabbitMq has a better performance under heavy loads. However, for the sake of simplicity, it is better to use AtiveMQ in the browser. I want to know if it is possible to use both of them…
user4944451
5
votes
1 answer

is redis pub/sub realistic in php?

I'd like to use redis pub/sub in PHP, but I'm afraid PHP can't be the only tool: a subscriber need to be always callable, since php isn't built for running as a daemon, I can't trust it to reliably be always "on". So what is the solution for the PHP…
Bruno
  • 1,088
  • 1
  • 13
  • 31
5
votes
2 answers

How to select distinct in esql?

I have a subflow in esql (IBM Websphere Message Broker) where I need to achieve something similar to select distinct functionality. Some background: I have a table in an Oracle database group_errcode_ref. This table is pretty much a fixed…
bbedward
  • 6,368
  • 7
  • 36
  • 59
4
votes
2 answers

ZMQ pub/sub reliable/scalable design

I'm designin a pub/sub architecture using ZMQ. I need maximum reliability and scalability and am kind of lost in the hell of possibilities provided. At the moment, I got a set a publishers and subscribers, linked by a broker. The broker is a simple…
NewbiZ
  • 2,395
  • 2
  • 26
  • 40
4
votes
1 answer

IBM Cast Iron and ESB

I'm trying to define the integration architecture roadmap for my company and I'm looking for some guidance on my approach. Most (90-95%) of our applications are based on .NET with Microsoft SQL Server 2008. We have sales cloud in Salesforce and…
KrishHari
  • 449
  • 5
  • 10
4
votes
4 answers

How to reset a rabbitmq node to get rid of an enabled feature flag

It happened after restart of a node in cluster. It complains about incompatible_feature_flags and stops. The doc says that once a feature flag enabled it is impossible to disable. The only other running node in cluster has that flag (user_limit)…
ali ebrahimi
  • 81
  • 2
  • 6
4
votes
2 answers

sql insert into child and parent tables

I have two tables with a many-to-one relationship. (Oracle) **Table: PARENT** Field: A (PK) Field: B Field: C1 Field: C2 Field: C3 Field: C4 Field: C5 **Table CHILD** Field: A (PK) (FK to PARENT.A) Field: D (PK) Field: E Records inserted into the…
kralco626
  • 8,456
  • 38
  • 112
  • 169
1
2
3
43 44