"Cluster group is empty" exception thrown after client reconnect

2016-11-18 Thread hartst
Hi, I have a 3 node cluster and connect to it with a client. All works well until I kill one of the nodes on the cluster. I can catch the fact that the client has been disconnected/reconnected by listening to the events: internal class LocalEventListener : IEventListener {

Re: Failed to send message to remote node error when remote node has been terminated

2016-11-18 Thread hartst
Hi Val, Thanks for clearing that up. I am catching the exception by checking the exception message with: if (ex.Message.Contains("Failed to send message to remote node:")) { ... } as I only have the "catch all" ApacheIgniteException class - there seems to be no specific exception I can trap.

Failed to send message to remote node error when remote node has been terminated

2016-11-16 Thread hartst
Hi, We are using remote messaging to implement a pub/sub mechanism between clients in c# // done in class constructor _ignite.SetClientMode(true); var _remoteMessaging = _ignite.GetCluster().ForRemotes().GetMessaging(); ... // done when we publish to topic so interested clients can pick up