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.

RabbitMQ - purge a queue from all of its unacked messages

I have thousands of unacked messages in my dev environment which I can't restart. Is there a way to remove (…

rabbitmq
Topic Exchange vs Direct Exchange in RabbitMQ

We've got an application which will be using RabbitMQ and have several different queues for passing messages between tiers. Initially, …

rabbitmq message-queue rabbitmq-exchange
Rabbitmq or Gearman - choosing a jobs queue

At work, we need to build a jobs server for things like sending emails, building PDFs, crunching some data, etc. …

message-queue rabbitmq celery gearman
Not able to Start rabbitmq server in centos 7 using systemctl

I am trying to start the rabbitmq server in centos 7. I installed erlang as it is a dependency to rabbitmq-server. …

rabbitmq centos7
Error "unknown delivery tag" occurs when i try ack messages to RabbitMQ using pika (python)

I want process messages in few threads but i'm getting error during execute this code: from __future__ import with_statement …

python message-queue rabbitmq pika
Delayed message in RabbitMQ

Is it possible to send message via RabbitMQ with some delay? For example I want to expire client session after 30 …

rabbitmq
RabbitMQ C# connection trouble when using a username and password

I am at a loss here so I'm reaching out to the collective knowledge in hope of a miracle. I …

c# .net rabbitmq
How can I check whether a RabbitMQ message queue exists or not?

How can I check whether a message Queue already exists or not? I have 2 different applications, one creating a queue …

.net queue rabbitmq message-queue not-exists
RabbitMQ new connection refused due to SocketException

while trying to create a new connection to rabbitmq running on a different server, I got the following error: java.…

java connection rabbitmq amqp
Unmarshaling Into an Interface{} and Then Performing Type Assertion

I get a string through a rabbitmq message system. Before sending, I use json.Marshal, convert the outcome to string …

go rabbitmq