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
3
votes
0 answers

Getting Intermittent BIP3113E error from IBM Message Broker

I have deployed a message flow in Message Broker. The flow calls a back-end web service. Broker has published the deployed flow as a WSDL. I took the WSDL and using Maven, created a test client. The client works and everything. I can call the flow…
Shahriar
  • 303
  • 4
  • 12
3
votes
1 answer

AMQP broker written in python?

I'm looking for a amqp broker written in python. Right now I'm using RabbitMQ with pika bindings. RabbitMQ does the job, but it would be nice to find something simpler and more lightweight written in python. The only one I have found so far is…
Carl
  • 740
  • 8
  • 18
3
votes
2 answers

mock external system working through websphere mq

I'm developing integration solution with message broker. Solution communicates with the back-end system using websphere mq. During development process I don't have an access to the real back-end service so I have to mock it somehow. Mock…
koss
  • 874
  • 1
  • 10
  • 22
3
votes
4 answers

In JMS asynchronous message handling as soon as onMessage() is called, message deleted from queue

Requirement: I want messages to be persist in queue till onMessage() executed successfully. If any exception occur during execution of onMessage() and if it is not handle then message should be redelivered to listener. I am having Glassfish v2 as a…
Ashwini
  • 71
  • 1
  • 2
  • 3
3
votes
1 answer

Common variable for execution groups

If i create an environment variable will it exist in all flows within the execution group? I need to have a value which has to be shared between two flows in the same execution group.
Smitha
  • 63
  • 4
2
votes
1 answer

NATS Core + Nats C Client message loss

I suffer message loss with NATS publish (Core, not Jetstream yet). Using NATS CLI on Windows to subscribe as sub ">" Using NATS server on Linux Ubuntu on local LAN. Application on Windows using NATS C Client (latest GitHub version). The following…
Morph
  • 144
  • 4
2
votes
0 answers

RabbitMQ auto-delete queues with timeouts

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 RabbitMq Queues Docs I found that the best case for me…
2
votes
0 answers

Rabbitmq requeue/queue with custom timeout

For reasons I can't use the delayed plugin. So I've made implemention with dead-letter-exchange. The thing is that my letters have different timeouts. Here comes the main problem: first letter with timeout 15s blocks letter with 1s timeout. Is there…
2
votes
1 answer

How to process a logic or job periodically for all users in a large scale?

I have a large set of users in my project like 50m. I should create a playlist for each user every day, for doing this, I'm currently using this method: I have a column in my users' table that holds the latest time of creating a playlist for that…
Mahdi Youseftabar
  • 2,273
  • 1
  • 22
  • 29
2
votes
0 answers

Error: Empty response. There are no subscribers listening to that message ("x")

I am trying to create microservices via Nestjs and Nats but I am getting an error Error: Empty response. There are no subscribers listening to that message ("checkUserExists") For Now I have only Gateway and Auth microservice All necessary code and…
2
votes
3 answers

AWS Amazon MQ (RabbitMQ) Broker - Can't find IP Address

So I've created our RabbitMQ broker via Amazon MQ within a private Subnet and not publicly accessible. This generates a web console URL https://xxxx.mq.us-west-2.amazonaws.com. And I wanted to create a Route 53 record name xxxxx.ourdomain.com and…
2
votes
1 answer

MQTT for client communication in chat application

I want to develop chat application and using MQTT and Web socket for live notification, active status at client (mostly web browser). I am wondering that how can I make communication between clients in best possible way to reduce load at MQTT and…
Jayendra Singh
  • 147
  • 2
  • 10
2
votes
1 answer

Connect VueJS to RabbitMQ

I'm building a web application using VueJS. The application should act as a message producer and should send messages to a RabbitMQ. Is there a best practice on how to implement the components for this? Edit: I believe that this is not solved and…
offsec1
  • 31
  • 1
  • 4
2
votes
4 answers

RabbitMQ+SpringAMPQ: Broker not available; cannot force queue declarations during start: java.net.ConnectException: Connection refused: connect

I am currently learning RabbitMQ and Spring AMPQ. I was trying some examples this week but I am facing an issue in some step of the configuration. I have this docker-compose file: app: build: . environment: INSERTION_QUEUE: insertion.queue …
Matheus Bica
  • 1,055
  • 3
  • 13
  • 23
2
votes
1 answer

Message Broker - Multivendor Architecture in .NET Core

I am currently building a system following the "competing consumer pattern" in .Net Core. Thus, I put a JobRequest-Message on a queue on which multiple consumers (workers) are subscribed to. One of the consumer receives the message an does the…