-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Description
When creating a new issue, please make sure the following information is part of your issue description. (if applicable). Thank You!
- Which Akka.Net version you are using
1.3.4 - On which platform you are using Akka.Net
Windows 7 & Visual Studio 2017 - A list of steps to reproduce the issue. Or an gist or github repo which can be easily used to reproduce your case.
Is there other ways to send/receive/ask messages to a cluster apart from ClusterClientReceptionist from outside the cluster?
We are currently registering actors with ClusterClientReceptionist and use ClusterClient to "ask" messages to cluster from outside. However, when we test with 10,000 (small) messages after a few thousand even though the server node processes those messages, the client does not receive a reply for them through Ask. Is there a way to flush the messages back to cluster after Client.Tell?
ClusterClientReceptionist with 2 seed and 2 worker (non-seed) nodes seem to evenly distribute the load between both the worker nodes. I am curious if ClusterClientReceptionist is the recommended way to distribute load across nodes or if there is a better way to handle it (including the ability to send/ask messages from outside of cluster).