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
2
votes
2 answers

Is the character § supported by CCSID 1208

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
Lee
  • 101
  • 1
  • 2
  • 6
2
votes
3 answers

Autofac: publish/subscribe extension

Does Autofac support an easy to use message broker for doing many-to-many publish/subscribe event messaging? Edit: public class Service1 { [Publish("message://an-event")] public event Event AnEvent; public void…
user1022465
  • 103
  • 6
2
votes
1 answer

Exception when parsing a message

I am using a message set to parse a file and I am getting the following exception.I am not able to understand what it actually means.Please help me understand and resolve the problem.
Lee
  • 101
  • 1
  • 2
  • 6
2
votes
1 answer

ActiveMQ to Apollo transition, Openwire to Stomp protocol configuration

I'm trying to switch from ActiveMQ 5.6 to Apollo 1.5. I have two soft that are exchanging messages, using publish/subscribe on topics. The first one is c++ and use openwire with tcp The second one is Javascript and use stomp with websockets With…
Typedef
  • 169
  • 1
  • 11
2
votes
1 answer

WMB8/.NET Compute Node Debug

In WebSphere message Broker 8, the new .NET compute node is awesome to interface Windows based services and handle windows things. However, it is non trivial to debug the code. I was hoping any of you have some clues towards this: Short…
Petter Nordlander
  • 22,053
  • 5
  • 50
  • 84
2
votes
2 answers

How to cast(convert) string to blob? in ESQL?

So i am reading an XML file from request note of flow. And need to convert XML data to blob.
Kenneth Lhv
  • 558
  • 2
  • 6
  • 16
2
votes
2 answers

Pub Sub implementation zero mq 3.xx

I have been working with qpid and now i am trying to move to broker less messaging system , but I am really confused about network traffic in a Pub Sub pattern. I read the following document : http://www.250bpm.com/pubsub#toc4 and am really…
1
vote
0 answers

"Stream connection lost: ConnectionResetError(10054, 'An existing connection was forcibly closed by the remote host', None, 10054, None)"

I am trying to connect rabbitmq to python and run a basic hello world..!! program but the connection show this error: "Stream connection lost: ConnectionResetError(10054, 'An existing connection was forcibly closed by the remote host', None,…
1
vote
0 answers

Is there any way to consume messages from RabbitMq reading from multiple queues where one has a higher priority than the other?

I have a microservice that is processing messages of different types. One of these types(A) needs to be processed ahead of the others. So that if the queue has 1000 entries of type B and a message of type A enters the queue, then that messages is…
hepta
  • 11
  • 1
1
vote
1 answer

ActiveMQ Artemis: can a producer determine final broker destination?

I am evaluating ActiveMQ Artemis as a potential replacement for SonicMQ. In Sonic, we have the ability for a client producing a message to determine the final broker destination. Simplified example: We have a broker in each of two regions: Europe…
Cosmittus
  • 637
  • 6
  • 19
1
vote
0 answers

Messaging Broker for High Latency/Low Connectivity Mesh/Geographically dispersed nodes

I am looking for some advice on a clustered or federated broker to use in a given scenario. I will try to describe the problem with what I think is going to be a few critical decision points/information. I believe any solution here will have some…
Nashirak
  • 71
  • 4
1
vote
0 answers

Which protocol (AMQP or MQTT) should I use with RabbitMQ for internal communication among microservices?

I need help on following: I want to use RabbitMQ message broker for internal communication among microservices. For example shopping cart, order, product, payment etc. Can I use AMQP for internal communication among microservices & MQTT for push…
Pooja
  • 17
  • 4
1
vote
2 answers

Difference between kafka batch and kafka request

I was not able to find an satisfactory answer anywhere, sorry for if this question might look trivial: In Kafka, on producer side, can a request contain multiple batches to different partitions ? I see the words batch and requests are used as…
GionJh
  • 2,742
  • 2
  • 29
  • 68
1
vote
2 answers

How does a microservice return data to the caller when using a message broker? or a message queue?

I am prettty new to microservices, and I am trying to figure out how to set a micro-service architecture in which my publisher that emits an event, can receive a response with data from the consumer within the publisher? From what i have read about…
xunux
  • 1,531
  • 5
  • 20
  • 33
1
vote
1 answer

Google Cloud Run + Django + RabbitMQ (or another message broker)

I have a contenerized Django application, which I deployed on Google Cloud Run. For the most time no requests are made to the app, so GCP can reduce it to 0 instances (and the billing is small). Some requests provide time consuming tasks and I need…