message « rabbitmq « Java Enterprise Q&A





1. Unique Messages per Queue in AMQP?    stackoverflow.com

This is similar to this other question but with a bit of a twist: I read in the specification that the message-id for AMQP messages should be set by the ...

2. RabbitMQ message consumers stop consuming messages    stackoverflow.com

Our team is in a spike sprint to choose between ActiveMQ or RabbitMQ. We made 2 little producer/consumer spikes sending an object message with an array of 16 strings, a timestamp, ...

3. How to selectively delete messages from an AMQP (RabbitMQ) queue?    stackoverflow.com

I'd like to selectively delete messages from an AMQP queue without even reading them. The scenario is as follows: Sending side wants to expire messages of type X based on a fact that ...

4. RabbitMQ Question - Is there a way to print log message to console?    stackoverflow.com

I am running RabbitMQ on windows 7 ( currently for debug reasons). I want to see the messages on the open console each time I send a message. Is there a way ...

5. How to retract a message in RabbitMQ?    stackoverflow.com

I've got something like a job queue over RabbitMQ and, upon a request to cancel a job, I'd like to retract the tasks that have not yet started processing (their messages ...

6. Rabbitmq message differentiate with message id based on Java API    stackoverflow.com

i would like to publish/produce a message with some message id, like each message has a particular id..And at the consumer end i would like to retrieve the messages by prividing ...

7. RabbitMQ Wait for a message with a timeout    stackoverflow.com

I'd like to send a message to a RabbitMQ server and then wait for a reply message (on a "reply-to" queue). Of course, I don't want to wait forever in case ...

8. Does anyone use a CLOUD Message queue service?    stackoverflow.com

I am looking for a case study of companies that use Cloud message queueing. What are the benefits of such a service over rabbitmq (if any) I know there are several mature services ...

9. how to set the basic message properties for message in Rabbitmq?    stackoverflow.com

i am using Rabbitmq Java client API.i want to set the Basic Properties for message and also get the message Id of the message.if possible please provide some code to understand ...





10. Delayed message in RabbitMQ    stackoverflow.com

Is it possible to send message via RabbitMQ with some delay? For example I want to expire client session after 30 minutes, and I send a message which will be processed after ...

11. RabbitMQ: setReturnListner handleBasicReturn nt getting called for undelivered messages    stackoverflow.com

For one of the reuirement we need to keep track of queue depth and successfully processed messages. The idea is to publish messages and get a list of successful and failed ...

12. RabbitMQ reordering messages    stackoverflow.com

RabbitMQ ticks all the boxes for the project I am planning, save one. I would have different workers listening on a queue and it is important that they process the ...

13. RabbitMQ - how do I delete all messages from a single queue    stackoverflow.com

How do I delete all messages from a single queue? I have the queue name and I want to clean it.

14. long running process for worker processes to respond to rabbitmq messages    stackoverflow.com

My web application is writing messages to rabbitmq. Example, a user wants to export their data, so I write this message to the queue. The web application is not ...

15. RabbitMQ: persistent message with Topic echange    stackoverflow.com

I am very new to RabbitMQ. I have set up a 'topic' exchange. The consumers may be started after the publisher. I'd like the consumers to be able to be able ...

16. Say I have a RabbitMQ queue, and I want to write clojure code to process the messages on the queue    stackoverflow.com

How or in what way would I call out to my clojure code to process the tasks on a RabbitMQ queue? Would I have to write a daemon or what? I know java ...





17. PubSub + Reliable message delivery to unreliably present subscribers    stackoverflow.com

I need to build a system that uses a Publish/Subscribe bus (e.g. Mule, ZeroMQ, RabbitMQ), but the literature all implies that subscriber applications are reliably available to receive messages from topics ...

18. how framesize changes throughput for different size messages    stackoverflow.com

While testing the performance of RabbitMQ, I found that after increasing the message size above around 250 KB the throughput was decreasing very quickly. Then I changed the frame_size to 5MB ...

19. How to measure time taken for a message to reach message queue in RabbitMQ?    stackoverflow.com

I have a producer class which sends messages to a message broker, RabbitMQ. I am using Quartz scheduler to send the messages at regular intervals. I want to measure the time taken for ...

20. Is Message Queuing the right strategy for a high-bandwidth data feed?    stackoverflow.com

I have a huge network of data-collection servers which generate a large volume of real-time data. In the past I've provided partners with the ability to get this data in near-real-time using ...

21. is there a design pattern for an amqp architecture for commit/rollback message handling?    stackoverflow.com

I have a simple producer/consumer amqp set up like this:

producer -> e1:jobs_queue -> consumer -> e2:results_queue -> result_handler
The producer sends of some number of jobs. The consumer pulls down jobs one ...

22. Background processing of temporary data via message queues in a Java EE application    stackoverflow.com

I am building a Java EE web application, which also has a JAX-RS API so that plugins at other web sites can send data to it, think of it like an ...

23. Messages on a RabbitMQ Topic Exchange queue    stackoverflow.com

Note: Using RabbitMQ .NET library I have a Topic Exchange on my RabbitMQ called FXTO.HK and a binding key of FXTO.# The server publishes messages to this queue. On the client side, the queues ...