Top "Rabbitmq" questions

RabbitMQ is an open-source message broker originally implementing the AMQP protocol with additional messaging protocols supported via a plug-in architecture.

When to use RabbitMQ shovels and when Federation plugin?

For the company I work for we would like to use RabbitMQ as our main message bus. The idea we …

rabbitmq rabbitmq-shovel rabbitmq-federation
Consuming not acknowledge messages from RabbitMq

I have create a simple publisher and a consumer which subscribes on the queue using basic.consume. My consumer acknowledges …

php rabbitmq amqp
How to stop consuming message from selective queue - RabbitMQ

QueueingConsumer consumer = new QueueingConsumer(channel); System.out.println(consumer.getConsumerTag()); channel.basicConsume("queue1", consumer); channel.basicConsume("queue3", consumer); Is it …

queue rabbitmq consumer
How to configure rabbitmq.config inside Docker containers?

I'm using the official RabbitMQ Docker image (https://hub.docker.com/_/rabbitmq/) I've tried editing the rabbitmq.config file inside …

docker rabbitmq docker-swarm-mode
How does rabbitmq heartbeat work

The native rabbitmq client for java allows to setup heartbeat on connection settings, for example like this: import com.rabbitmq.…

rabbitmq heartbeat
OS X and rabbitMQ: ERROR: epmd error for host xxx: address (cannot connect to host/port)

I just made to the latest OS X maverick update and I got suprised to see that rabbitMQ is no …

rabbitmq osx-mavericks
Exceptions in rabbitmq with spring boot

I am getting the following exception repeatedly when I start my spring boot application with rabbitmq. The entire flow is …

java spring rabbitmq spring-rabbit
How does RabbitMQ actually store the message physically?

I want to know how does RabbitMQ store the messages physically in its RAM and Disk? I know that RabbitMQ …

rabbitmq
Embedded AMQP Java Broker

I am trying to create integration test for a Scala / Java application that connects to a RabbitMQ broker. To achieve …

java rabbitmq automated-tests integration-testing amqp
RabbitMQ Failed to declare queue and Listener is not able to get queue on server

I have spring boot rabbitmq application where i have to send an Employee object to queue. Then i have set …

spring-boot rabbitmq message-queue spring-amqp spring-rabbit