RabbitMQ is an open source robust messaging software for applications.

learn more… | top users | synonyms

1
vote
1answer
18 views

Multiple Django projects inadvertently receiving each other's celery tasks

I have five different Django projects all running on one box with one installation of RabbitMQ. I use celery for various tasks. Each project appears to be receiving tasks meant for other projects. ...
2
votes
1answer
20 views

Is RabbitMQ Authentification secure without SSL?

We are using RabbitMQ, we'll expose the server over the internet. We'll have multiple clients from multiple computers accessing the server. Our first instinct would be to enable SSL but this seems ...
0
votes
0answers
13 views

Forward nginx http post request to rabbitmq

Here our data flow is nginx as front-end server, and proxy post data to backend server. But currently large request cost http response long time. An solution is put http post request to rabbitmq and ...
0
votes
0answers
16 views

NServiceBus RabbitMQ Transport and SignalR

I realize that the use of SignalR has nothing to do with NServiceBus. However, I think there's something fundamental about NServiceBus transports for me to learn here. Here's what's happening: when ...
0
votes
1answer
9 views

Send One Message to only one of Multiple Consumers in RabbitMQ

I have a somewhat unique use case with RabbitMQ and I'm not sure how to go about solving the problem. I want to have one queue with multiple consumers bound to it and then have RabbitMQ send out one ...
1
vote
1answer
29 views

Getting number of messages in a RabbitMQ queue

We're using amqplib to publish/consume messages. I want to be able to read the number of messages on a queue (ideally both acknowledged and unacknowledged). This will allow me to show a nice status ...
1
vote
1answer
53 views

Mirrored queue performance factors

We operate two dual-node brokers, each broker having quite different queues and workloads. Each box has 24 cores (H/T) worth of Xeon E5645 @ 2.4GHz with 48GB RAM, connected by Gigabit LAN with ~150μs ...
0
votes
1answer
13 views

org.springframework.jms.connection.CachingConnectionFactory cannot be cast to org.springframework.amqp.rabbit.connection.ConnectionFactory

I am getting the following error when I run rabbitmq and jms Spring Project together. ERROR o.s.web.context.ContextLoader - Context initialization failed ...
0
votes
0answers
21 views

Error when calling Rabbitmq consumer from command line

I am trying to setup a simple AMQP publisher/consumer using Symfony2.2 with RabbitMq bundle, I am following the documentation on the bundle page The publisher works fine, I can see my messages on the ...
0
votes
1answer
16 views

How to do blocking subscribe using bunny RabbitMQ client?

In java RabbitMQ client I can do (code in ruby): consumer = QueueingConsumer.new(channel); channel.basicConsume(queue_name, true, consumer); consumer.nextDelivery.getBody And then third line ...
0
votes
0answers
15 views

using RabbitMQ connection inside servlet

I'm trying to write a servlet that receives some messages from clients via GET and publish them on RabbitMQ. I have created a Broker class: public class Broker { private static final ...
0
votes
1answer
12 views

RabbitMq error while calling exchangeBind

I have a very simple scenario. I create a queue, exchange and bind the queue to exchange. Code : String queueName = new ...
0
votes
2answers
26 views

Implementing RabbitMQ in BlackBerry

I need to use RabbitMQ in one of my projects. On googling I got to know that the library for RabbitMQ is not compatible with BlackBerry. In some posts in StackOverFlow itself someone has suggested to ...
0
votes
0answers
23 views

RabbitMQ - Receive messages on an HTTP API

Is it possible that RabbitMQ can distribute messages to HTTP rest endpoints? For example a desktop app publishes a message to RabbitMQ which then relays it on to several subscribers including ...
0
votes
1answer
48 views

How to set ActiveMQ to stop accepting messages?

I want to know that in ActiveMQ is there any property with which user can restrict ActiveMQ to not accept the messages in an Input Queue after a certain threshold is reached ? So far i am able to ...
0
votes
0answers
22 views

RabbitMQ http api basic auth

I have a question about rabbitmq http api basic auth. I use rabbitmq v3.1.0 and my code is below. package com.foo.bar.controller; import java.io.BufferedReader; import java.io.IOException; import ...
1
vote
1answer
63 views

message queue - smallest amount of work for a consumer

This question is about Architecture / Design: I have a consumer that needs to perform x numbers of tasks, when should I think about breaking the consumer up into smaller task and/or adding the ...
0
votes
0answers
25 views

What could make celery worker becoming unresponsive after a few tasks?

My workers are stopping after a few (<50) tasks. I have a very simple client/worker setup. The client post the task via func.delay(...) then enter a while loop to wait for the completion of all ...
0
votes
0answers
13 views

Need help identify host name

I'm very new to rabbitmq, I installed rabbitmq-server on one EC2 instance, and want to create a consumer on another EC2 instance. But I'm getting this error: socket.gaierror: [Errno -2] Name or ...
0
votes
1answer
40 views

JMS Broker Options for CloudBees?

Does CloudBees offer any JMS hosting or any 3rd party JMS hosting (like IronMQ)? After perusing their Partner Ecosystem pages and developers docs, I don't see anything of the sort. I'd like to deploy ...
1
vote
1answer
17 views

Should I use AMQP RPC or AMQP + REST

I really like the idea of setting up a service such as RabbitMQ to handle my larger jobs and have n workers scale and process those requests. My question lies in if I should also handle 'quick' ...
1
vote
1answer
24 views

Do RabbitMQ, Beanstalk or Resque support scheduling a task at a certain date?

I've looked at RabbitMQ, Beanstalk and Resque, which all seem geared towards asynchronous, non-delayed tasks (i.e., run all of these as quickly as possible). Do any of them support scheduling a task ...
-1
votes
1answer
21 views

RabbitMQ 3.0.x issue with monitoring

I have used RabbitMQ 2.8.6 on Ubuntu 11.10 with success quite long time and recently decided to upgrade it up to newest version (3.1.x). I use the custom monitoring for RabbitMQ by using management ...
0
votes
1answer
26 views

Intent inside AsyncTask (Not accessible in scope)

First of all, I want to apologize for my BAD English. I'm using a AsyncTask class, called from Main_Activity, and when in PostExecute I call de intent, I get an error "Not Enclosing Instance type ...
0
votes
1answer
43 views

Django Celery - How to start a task with a delay of n - seconds - countdown flag is ignored

In my Django project I'm running some asynchronous tasks using Celery (docs), Django-Celery and RabbitMQ as the broker. Whereas it works in general, I have two problems with my setup: a) the task ...
0
votes
1answer
32 views

Celery connection broker lost makes CPU usage go to 100%

We've been getting strange issues with Celery when the MainProcess it loses connection to the broker. Celery generates the error below and then starts using 100% CPU. The workers will still continue ...
0
votes
0answers
29 views

What are Channels in AQMP Rabbit MQ?

I have been reading through the RabbitMq in action book this is the following excerpt from the book [Chapter 2, Section 1] where i am stuck Whether you’re publishing a message, subscribing to a ...
0
votes
0answers
28 views

Set up automatic synchronisation in rabbit cluster

Hi I'm trying to follow the RabbitMQ HA guide and implement mirrored queue cluster with automatic synchronization. However when I try to run the following command which should set the policies as per ...
0
votes
0answers
13 views

How to check if the consumer application is processing a message? for how long?

How do we check if the consumer application is processing a message? for how long? We are interested to check if consumer application has been running for some amount of time. If it exceeds a ...
0
votes
0answers
24 views

topic in rabbitmq and activemq

all, Background: now client produces many messages of different labels.Consumers may subscribe some labels of them(different consumer need different labels's msgs). Now method: I used direct ...
0
votes
0answers
15 views

integrating RabbitMQ with Java EE6

I'm wondering if it's possible to integrate RabbitMQ with Java EE6 application. In our scenario, we want to pass data in json format to Java EE6 server app using RabbitMQ via internet. Our clients ...
0
votes
1answer
23 views

how to find the number of subscribers to a durable queue in rabbitmq?

In my android app I need to find offline/online status of user. the user connects to rabbitmq, creates a durable queue with his name and binds to a durable exchange with queue name as routing key. ...
2
votes
0answers
41 views

heroku celery exceeding connection limit

I am using Django/Celery on Heroku with the CloudAMQP add-on. In my settings file if I set BROKER_POOL_LIMIT to any value other than None I quickly exceed my CloudAMQP connection limit of 6. I'm ...
0
votes
0answers
18 views

Read mesage from exchange with Rabbit Template

I'm using rabbitTemplate in this way: <bean id="rabbitConnFactory" class="org.springframework.amqp.rabbit.connection.SingleConnectionFactory"> <constructor-arg> ...
0
votes
0answers
45 views

uLink messaging with RabbitMQ and Unity3D

Can a server built with node.js, for example, which can talk to RabbitMQ via a RabbitMQ node.js client talk to a uLink server? Does anyone know if there are any technical barriers to communication ...
1
vote
0answers
74 views

Broadcasting message to all clients using Pika + sockjs-tornado

I'm new to realtime apps based on WebSockets, and stucked at one point. My app has following components: Simple Python script which is fired when some generic event occurs. It receives data and ...
0
votes
2answers
91 views

How to get Spring RabbitMQ to create a new Queue?

In my (limited) experience with rabbit-mq, if you create a new listener for a queue that doesn't exist yet, the queue is automatically created. I'm trying to use the Spring AMQP project with rabbit-mq ...
0
votes
1answer
29 views

How to make compiler restrict me from using any RabbitMQ AMQP extensions?

I am planning on using RabbitMQ as the AMQP implementation in my project. But I would like to restrict myself to using only the AMQP spec and not use any RabbitMQ extensions to AMQP. Is there a way I ...
0
votes
1answer
82 views

Consuming from queues based upon external event (event queues)

I am running into a use case where I would like to have control over how and when celery workers dequeue a task for processing from rabbitmq. Dequeuing will be synchronized with an external event that ...
1
vote
0answers
32 views

Python Pika - Consumer into Thread

I'm working on a Python app with a background thread for consuming message from a RabbitMQ Queue (topic scenario). I start the thread on on_click event of a Button. Here is my code, please take ...
0
votes
1answer
26 views

rabbitmq (AMQP): delete all messages from a queue

There are some questions like mine on SO, but purge method is not suitable for me. From AMQP docs: Purge a queue. This method removes all messages from a queue which are not awaiting ...
1
vote
1answer
23 views

AMQP - How many consumers on a queue?

Using AMQP module for Node JS and RabbitMQ, is there any way to tell how many subscribers there are on a queue? We have multiple queues on the default exchange for multiple regions. When one region ...
0
votes
1answer
30 views

Multiple server environments with RabbitMQ and Celery

I have a Django-based service with Celery, using RabbitMQ as the broker. I want to install several environments on the same machine. What's the best way of configuring Celery for each environment? ...
0
votes
2answers
34 views

MQ Cache? good or bad idea?

I am wondering if MQ can be used as a state cache for monitoring? And is this a good idea or not? In theory you can have many sources (monitoring agents) that detect problem states and distribute ...
0
votes
0answers
21 views

RabbitMQ to disk

I'd like to replace an applications logging module with an logging module that supports pushing the logs to RabbitMQ. NLog seems to support this just fine. My question though is if there's an existing ...
0
votes
0answers
39 views

Run Symfony2 command in background

I've a queue of emails for send to customers. I'm spooling emails: http://symfony.com/doc/2.0/cookbook/email/spool.html Using this command: php app/console swiftmailer:spool:send --env=prod The ...
2
votes
3answers
148 views

Broadcasting message to all connected users using websocket (Erlang, RabbitMQ, Websocket, Gen_bunny, Cowboy)

I am trying to integrate websocket chat using ERlang, Cowboy, Websocket and gen_bunny. I am able to get them work independently. Browser -> Cowboy websocket chat (Works) Erlang and RabbitMQ AMQP ...
0
votes
0answers
17 views

Repairing a crashed cluster - Obtaining persisted msgs from master

Part of my question was answered here http://rabbitmq.1065348.n5.nabble.com/Repairing-a-a-crashed-cluster-td22466.html. I have a follow up question for the following scenario. Say, I have a ...
0
votes
1answer
29 views

Local-only message queue?

I'm using Celery with RabbitMQ. For my use case, I'll definitely have instances where I'll have messages which should be executed on any given node, but for one specific queue, I'll need things only ...
1
vote
3answers
69 views

Running a task after all tasks have been completed

I'm writing an application which needs to run a series of tasks in parallel and then a single task with the results of all the tasks run: @celery.task def power(value, expo): return value ** expo ...

1 2 3 4 5 28