Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is jeromq production ready?

Tags:

zeromq

jeromq

I've used ZeroMQ in the past with with JVM applications via the jzmq library. I am planning on using zeromq on a new project where some of the services are implemented on the JVM. I just discovered jeromq, a pure java implementation of zeromq, and I would like to use it mostly since it is tracking zeromq 3.x and it removes the headache of dealing with jzmq. However, I can't tell from the repo page if it is production ready. Does anyone have experience with jeromq in production?

like image 598
Ben Mabey Avatar asked Jan 23 '13 23:01

Ben Mabey


People also ask

Is ZeroMQ still relevant?

ZeroMQ still works great and the open source community is still maintaining it on GitHub [3]. I just think people are also looking at other technologies. A lot of interest popped up in things like Apache Kafka and Samsa. I still think ZeroMQ holds a unique place due to its lightweight and simple nature.

Why use ZeroMQ?

ZeroMQ provides a whole slew of language APIs which run on most operating systems and allows you to communicate seamlessly between all sorts of programs. It also provides a collection of patterns, such as request-reply and publish-subscribe which assist you in creating and structuring your network.

Is ZeroMQ a message broker?

ZeroMQ (also spelled ØMQ, 0MQ or ZMQ) is an asynchronous messaging library, aimed at use in distributed or concurrent applications. It provides a message queue, but unlike message-oriented middleware, a ZeroMQ system can run without a dedicated message broker; the zero in the name is for zero broker.


1 Answers

As the author of the project, I'm a little bit biased.

The reason I made jeromq was I also had some trouble with deploying jzmq having JNI.

The project has a short history but keep improving from feedbacks and contributions.

But it's not a replacement of jzmq. Both project are active and driven by a major community. You can get help from the community and contribute to the projects also.

From the 3.0-SNAPSHOT, it has a API level compatibility. You can switch between jeromq and jzmq easily without changing your code.

like image 57
Min Yu Avatar answered Nov 24 '22 00:11

Min Yu