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.

Specific advantages of NServiceBus over plain RabbitMQ

Are there any advantages of using NServiceBus over simply using the .net driver for RabbitMQ (assuming we can replace MSMQ …

nservicebus rabbitmq amqp
RabbitMQ: What Does Celery Offer That Pika Doesn't?

I've been working on getting some distributed tasks working via RabbitMQ. I spent some time trying to get Celery to …

python rabbitmq celery task-queue pika
Creating a realtime push notification system for desktop/mobile/web apps using kafka as message broker

I have a use case where there needs to be a real-time communication between servers and clients following a pub/…

rabbitmq real-time scalability apache-kafka publish-subscribe
How to communicate Web and Worker dynos with Node.js on Heroku?

Web Dynos can handle HTTP Requests and while Web Dynos handles them Worker Dynos can handle jobs from it. But …

node.js heroku redis rabbitmq kue
How to put data from server to Kinesis Stream

I am new to Kinesis. Reading out the documentation i found i can create the Kinesis Stream to get data …

java amazon-web-services rabbitmq amazon-kinesis
In Pika or RabbitMQ, How do I check if any consumers are currently consuming?

I would like to check if a Consumer/Worker is present to consume a Message I am about to send. …

python rabbitmq pika
Messages with expiration are not removed from RabbitMQ

I am sending a normal message through a producer to RabbitMQ and then I send a second message with the …

rabbitmq messages ttl
Error response from daemon: cannot stop container

I started the Docker container: VirtualBox:~$ sudo docker run --name rabbitmq -d -p 0.0.0.0:5672:5672 -p 0.0.0.0:15672:15672 bitnami/rabbitmq All is well, the …

docker rabbitmq bitnami
Pika + RabbitMQ: setting basic_qos to prefetch=1 still appears to consume all messages in the queue

I've got a python worker client that spins up a 10 workers which each hook onto a RabbitMQ queue. A bit …

rabbitmq pika qos
RabbitMQ - Close Idle/dangling channels

I have a multi-threaded application that publishes incoming messages to a rabbitmq exchange. Using the rabbitmq java client, I create …

multithreading rabbitmq netty channels