High performance distributed asynchronous RPC in java
Posted
by
unludo
on Stack Overflow
See other posts from Stack Overflow
or by unludo
Published on 2013-05-06T12:52:19Z
Indexed on
2014/06/12
3:26 UTC
Read the original article
Hit count: 166
I would like to do RPC to a list of clients with the following requirements:
- the server does not know the clients (implies a kind of broker?) and the cleints do not know the server
- there may be several clients - they share the load to treat the RPC
- The RPC is asynchronous
- very fast (round-trip < 1ms)
- optional : offers a fail-over mechanism.
It can be done with underlying tools which are not really intended for that (Hazelcast is an example).
What would you use for such requirements?
Thanks!
© Stack Overflow or respective owner