Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been evaluating ActiveMQ as a candidate message broker. I've written some test code to try and get an understanding of ActiveMQ's performance limitations.

I can produce a failure state in the broker by sending messages as fast as possible like this:

try {
    while(true) {
        byte[] payload = new byte[(int) (Math.random() * 16384)];
        BytesMessage message = session.createBytesMessage();
        message.writeBytes(payload);
        producer.send(message);
} catch (JMSException ex) { ... }

I was surprised that the line

producer.send(message);

blocks when the broker enters a failed state. I was hoping that some exception would be thrown, so there would be some indication that the broker has failed.

I realize that my test code is spamming the broker, and I expect the broker to fail. However, I would prefer that the broker failed "loudly" as opposed to simply blocking.

Is this an unrealistic expectation?

Update:

Uri's answer references an ActiveMQ bug report that was filed in March. The bug description includes a proposal that sounds like what I'm looking for: "if the request on the transport had a timeout (this is to catch failure scenarios, so something that's not expected to reasonably happen), things would have errored out rather than building waiting threads."

However, after 8 months the bug is currently unassigned with a single vote. So I guess the question still stands, is this something ActiveMQ should (will?) implement?

share|improve this question

3 Answers

You are testing the 'slow consumer' and producer flowcontrol issue all message brokers have to deal with. Do you wanna fail producers, block them or spool to disk?

Basically the out of the box default in ActiveMQ is to block producers. But you can configure message cursors to spool to disk.

BTW you've not said if you are using queues/topics or persistent/non-persistent; if you are using non persistent topics there are other strategies you can use for discarding messages etc.

share|improve this answer
Thanks for the response, I'm using topics with non-persistent messages. I'm curious about configuring message cursors to spool to disk. If I were to run my "spamming" test program with this configuration, would the broker would just start filling up the hard drive? – bcash Dec 5 '08 at 17:41

Apprently there's a known issue, not sure if it's been fixed:

https://issues.apache.org/activemq/browse/AMQ-1625

share|improve this answer

Not sure about ActiveMQ config, but other JMS providers have various configuration options - so you maybe able to get ActiveMQ to do as you wish in that situation.

I know Fiorano has options to specify whether providers block or not in this situation.

share|improve this answer
Chris, thanks for your response. It looks like I could bump up memory, but the blocking is inevitable: activemq.apache.org/my-producer-blocks.html – bcash Dec 5 '08 at 15:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.