Most Efficient - Performance wise - for inter JVM communication

拟墨画扇 提交于 2019-11-28 23:20:24

问题


I have a Java application that require communication between different process. Process could run in same JVM or different JVM, but runs on the same machine.

My application need to submit "messages" to another process (same or different JVM) and forgot about it. similar to messaging queue like IBM "MQ", but simple, and only use memory, no IO to hard disk for performance gains.

I'm not sure what is the best approach from Performance prescriptive.

  • I wonder if RMI is efficient in terms of Performance, I think it require some overhead.
  • What about TCP/IP socket using local host?

any other thought?


回答1:


I wonder if RMI is efficient in terms of Performance, I think it require some overhead.

RMI is efficient for what it does. It does much more than most people need, but is usually more than faster enough. You should be able to get of the order of 1-3 K messages per second with a latency around 1 milli-second.

What about TCP/IP socket using local host?

That is always an option but with plain Java Serialization this will not be a lot faster than using RMI. How you do the serialization and deserialization is critical for high performance.


An important note is that much of the time is spent serializing and deserilizing the message, something most transports don't help you with, so if you want maximum performance you have to consider an efficient marshalling strategy. Most transport protocols only benchmark raw bytes.

Ironically if you are willing to use disk, it can be faster than TCP or UDP (like ZeroMQ) plus you get persistence for "free".

This library (I am the author) can perform millions of messages per second between processes with latency as low as 100 nano-second (350x lower than ZeroMQ) https://github.com/peter-lawrey/Java-Chronicle Advantages are

  • ultra fast serialization and deserialization, something most transport benchmarks avoid including this as it often takes much longer than the transport costs.
  • is that you can monitor what is happening between queues any time after the message was sent.
  • replay all messages.
  • the producer can be any amount of data ahead of your consumer to handle micro-burst gracefully up to the size of your disk space. e.g. the consumer can be TBs behind.
  • supports replication over TCP.
  • restart of either the consumer or producer is largely transparent.



回答2:


If you are developing server application try to consider ZeroMQ. It has great performance, allow to build interprocess communication easier, allow to build asynchronous API.

ZeroMQ declare fantastic performance with InterProcess communication. Even better than TCP sounds great. We are consider this solution for our clusterisation schema.

Pieter Hintjens give the great answer for performance comparison between different Message Broker.



来源:https://stackoverflow.com/questions/14580337/most-efficient-performance-wise-for-inter-jvm-communication

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!