AMQP is an open messaging standard. It defines a wire-level protocol and semantic framework for high performance enterprise messaging.

learn more… | top users | synonyms

0
votes
0answers
4 views

Specify what type of queue is that

I'm very new to messaging system, and I was trying to find my answer on http://www.rabbitmq.com/tutorials/, and I'm pretty sure it should be over there, but so far I got little bit confused with all ...
0
votes
1answer
13 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 ...
0
votes
0answers
22 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
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 ...
1
vote
1answer
18 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
75 views

Achieving JMS/AMQP messaging patterns using Redis

This question arises as I came across some mentions (such as this), about using a Messaging software such as ZeroMQ alongwith Redis, but I keep hearing about Redis itself used a messaging-system. So, ...
0
votes
2answers
34 views

Rabbit prefetch

I use spring amqp with rabbitmq. I want get one message without prefetch. I configured with SimpleMessageListenerContainer container = new SimpleMessageListenerContainer(); ...
0
votes
1answer
37 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
1answer
21 views

Cannot send message using exchange in node-amqp

This is my code: var amqp = require('amqp'); var connection = amqp.createConnection( { host: 'localhost' }, { defaultExchangeName: 'testexchange' }); connection.on('ready', function () { ...
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. ...
-1
votes
0answers
34 views

Performance of app that uses Camel [closed]

We are going to create program with high requirements to performance. It's about 5000 business transactions (BT) per second. We usually use Camel for business workflow. But what about performance. ...
0
votes
0answers
46 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 ...
0
votes
2answers
98 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
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
26 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
0answers
23 views

RabbitMQ user permission format

I am trying to configure user permissions in RabbitMQ using rabbitmqctl. The RabbitMQ documentation http://www.rabbitmq.com/man/rabbitmqctl.1.man.html gives a basic example of setting configure, ...
0
votes
1answer
41 views

Single consumer for multiple queues in the Same JMS Server

I have a ActiveMQ AMQP Server running and I have a single consumer listening to the queue Now i have three different producers Producers 1 produces to Queue 1 Producers 2 produces to Queue 2 ...
0
votes
2answers
23 views

Can I deal with four queues in one connection?

I have 2 publish queues and 2 subscribe queues, can I deal with four queues in on connection? connection = amqp.createConnection(); connection.on("ready", function () { subscribe(queue1,msg1); ...
2
votes
1answer
72 views

node-amqp cannot send message to RabbitMQ

I'm tring rabbitmq-tutorials, ruby version works fine, but node.js version cannot send message. I do not know what is wrong. var amqp = require('amqp'); var amqp_hacks = ...
0
votes
0answers
27 views

Is there any AMQP client for windows phone that I can use? [closed]

I can't find any working AMQP clients for windows phone projects that actually work. I have tried RabbitMQ but it's not compatible with windows phone framework. I also searched for STOMP (another AMQP ...
3
votes
1answer
79 views

Celery is not working on my Heroku

What on earth am I doing wrong? I have recently found an awesome django template called django-skel. I started a project with it because it made it very easy to use heroku with django. It was all ...
3
votes
1answer
88 views

How to handle long asynchronous requests with pyramid and celery?

I'm setting up a web service with pyramid. A typical request for a view will be very long, about 15 min to finish. So my idea was to queue jobs with celery and a rabbitmq broker. I would like to know ...
0
votes
2answers
97 views

Multiple AMQP configurations for Graylogs, RabbitMQ or ElasticSearch

Here is what I would like to do: I'm using RabbitMQ VHosts to break out different projects workflow, each vhosts has it's own logs exchange/queue, which Graylogs consumes from. The problem is ...
0
votes
0answers
28 views

How can I implement a server-side counter with RabbitMQ?

I have many clients which interact with a server via rabbitmq. I'd like to be able to request the next item of a counter via rabbitmq from the server. I suppose the connection would have to be ...
0
votes
0answers
26 views

RabbitMQ fetch number of messages that have been unacknowledged for given time

For system monitoring I'm trying to make sure that all messages that are delivered are acknowledged (which in my system means completed) in a given time frame. The reason I am not ack'ing right away ...
0
votes
1answer
74 views

RabbitMQ Prefetch

Up until now, my RabbitMQ consumer clients have used a prefetch value of 1. I'm looking to increase the value in order to gain performance. If I set the value to 2, will the RabbitMQ server send each ...
0
votes
2answers
58 views

javax.jms.MessageNotReadableException: Message body is write-only

Am having a weird problem ActiveMQ is the messaging server and am using AMQP for sending messages When I have both the publisher and subscriber in the same eclipse project. I can send send ...
0
votes
0answers
76 views

Rabbitmq - php amqp broken broken pipe error

I am processing a huge xml document (which contains around a million entries) and subsequently importing a formatted version to the db using rabbitmq. Each time after publishing around 200,000 entries ...
0
votes
0answers
34 views

AMQP Reply Channels in Camel

How does one enable request/response behaviour over AMQP with Apache Camel? There are lots of examples of using Camel with JMS, but very few I can find with AMQP. I have an orchestration service that ...
2
votes
2answers
252 views

Spring integration - Queue/Poller seems to exhaust threadpool without any action

I have a Spring integration app, attached to an AMQP broker. I want to receive messages from an amqp-queue, and update db records. In order to improve performance, I have a pool of workers allowing ...
0
votes
0answers
20 views

authentication failure working with node-amqp library while switching to stomp-client, it works

I am using the node-amqp library to connect to a on-line stomp service, before I was using stomp-client, it was connected very successfully, but it doesn't support auto failure detection and ...
0
votes
1answer
19 views

Sendmail consumer for AMQP

I am looking for a light weight and robust AMQP consumer for sending emails using sendmail. Dose anything like this exists or do I have to write something on my own?
1
vote
1answer
116 views

Transport scheme NOT recognized: [amqp]

Am trying to use AMQP with ActiveMQ and am getting the following error Transport scheme NOT recognized: [amqp] This is my code ConnectionFactory connectionFactory = new ActiveMQConnectionFactory( ...
0
votes
0answers
30 views

best amqp client [closed]

I use messaging system RabbitMQ and have some experience with rabbitmq-client, but I'm not familar with Spring AMQP and therefore I have a question. What AMQP client is better - rabbitmq-client or ...
0
votes
1answer
41 views

Does Heroku support RabbitMQ currently

So my question is heroku support rabbitmq currently? It was addon 'rabbitmq' but currently it looks like it disabled. If heroku do not support rabbitmq, then maybe it support other broker which could ...
0
votes
1answer
38 views

How to set a redelivery policy in RabbitMQ/AMQP

I'm currently using ActiveMQ for my queueing system, and I'm wanting to make the transition to RabbitMQ. One feature I've been using that belongs to ActiveMQ is a redelivery policy, as sometimes our ...
1
vote
1answer
51 views

What's a good in memory rabbitmq alternative for .net

I need to have a bunch of nodes talking to each other in a rabbitmq manor, messaging/routing/exchanges. I'd like a service to be embedded as part of the application. What are my options for this. ...
-1
votes
1answer
58 views

Permission Denied when using AMQP 0-9-1 with WSO2 MB

When trying to communicate with WSO2 MB using AMQP 0-9-1 I receive a 'permission denied' AMQSecurityException from the Andes core of WSO2 MB. This occurs because I am trying to bind a queue to a ...
0
votes
1answer
35 views

AMQP QPID client connector?

My next project is a RESTful application, so Restlet seems to be an excellent choice for implementation. However, I couldn't find any support for AMQP. What is the best way to add AMQP support, in ...
0
votes
1answer
46 views

AMQP exchange to exchange mesh architecture

Is it possible to create a mesh architecture between servers using exchange to exchange binding with AMQP? A practical example being a chat relay system that has multiple exit nodes/exchanges across ...
0
votes
2answers
91 views

RabbitMQ C# catch exception problems

I have a simple C# application that is sending a message to my RabbitMQ exchange once every second. When my internet connection drops, the app would crash. So I added a Try/Catch statement and now ...
0
votes
0answers
31 views

AMQP topic exchange to only 1 consumer

I am using the topic exchange in PHP. The topic exchange is Multicasting, so when there are many consumers that their topic is "#", the task will be send to all of those consumers (the same task), so ...
1
vote
0answers
72 views

serialize object (really Mongoid document) to any binary format in Rails

I implementing async process which handle documents from mongodb database. I have something like master thread which check if new objects exist in collection and then put it to the queue (RabbitMQ), ...
3
votes
1answer
188 views

PHP AMQP Consume() fork to do actual work

I'm looking to have a PHP script that consumes (using the PECL AMQP module) from a RabbitMQ queue and then forks off to do the actual work. I've got code @ ...
0
votes
0answers
29 views

rabbitmq AMQP::consume()

AMQP function consume() is a blocking function with a callback, Is it possible to set a timeout for consume() function, so after specific amount of time it doesn't block anymore and the code execution ...
0
votes
1answer
81 views

Message queue with random read\write access to queue elements before dequeing (rabbitmq or)

I use rabbitmq in Python via amqplib. I try to use AMQP for something more than just a queue, if that's possible - searching messages by ID, modifying them before dequeing, deleting from queue before ...
1
vote
0answers
114 views

Error handling exclusive queue subscription in node-amqp (node.js)

When you subscribe to an exclusive queue (only one consumer allowed at a time), node-amqp throws an exception when the queue is oversubscribed (already has a consumer). I've tried using the ...
0
votes
0answers
33 views

AMQP queue consume() set timeout

Is it possible to set a timeout on the blocking function consume ? I want when a specific timeout is passed, then the consume function doesn't block, and the code continue to execute
1
vote
0answers
36 views

php rabbitmq Consumer stopped receiving messages after getting 3 messages

I have a php producer, which produce message into a queue. The consumer get 3 messages only then freez into the $queue->consume(); method. If I run another consumer, it also get the following 3 ...

1 2 3 4 5 11