I would appreciate some general pointers and opinions regarding which of the two messaging systems is
- easier to manage
- has less gotchas or magic stuff one needs to know and avoid
- has less overal dependencies
- is simple to work with.
|
hornetQ has a clear api for amanagement, and very easy to use.
hornetQ was made for the embedded case. It is very, very easy to integrate it in your code. As a matter of fact you can do it with less than 10 lines of code.
Everything on HornetQ is modular. The only required dependency on HornetQ is Netty which is the network provider.
HornetQ is very simple to use. Clear api, and mainly, the documentation is very, very complete. You don't need to buy any books to use HornetQ. All the docs are right there for free at the hornetq's website. |
|||||
|
|
Firstly, I'm biased. I'm the founder of the HornetQ project, although I don't work on it any more. Why HornetQ over ActiveMQ? Here are a few good reasons:
|
|||||
|
|
I use ActiveMq quite heavily in my day job, and rate it very highly for most of the points you raised. I especially rely in the JMX admin console, it's top class. I have also been keeping a close eye on HornetQ, and may one day add support for that too. From what I can see HornetQ is a bit lighter weight, and has some really nice NIO optimisations, which should make it fly. But lacks some of the enterprise integration features offered by ActiveMQ, and possibly some of the admin features. However, from what I can see the HornetQ team is working hard to fill in the gaps. I don't think you could do wrong with either choice in my opinion. Try them both out and see which feels better. |
|||||||
|
|
I did an extensive evaluation of both before deciding on ActiveMQ. It is proven and stable, something that you want in a messaging system. I have used ActiveMQ on two large scale systems with great success. There was some hype around HornetQ a while back when they claimed to be faster than ActiveMQ so I took a look. HornetQ has some serious flaws with it's clustering which can result in messages being lost and servers trying to indefinitely connect to a failed node. The lead developer on HornetQ refuses to recognize flaws in HornetQ and gets quite defensive on the user forums, something that should make you very wary of the product. |
|||||||
|