Replies: 2 comments 1 reply
-
|
IClusterMember.Status. However, it is not practical for the purpose you mentioned. Due to async nature, the member may become unresponsive immediately after status check but before message send: if (member.IsAvailable) // true
// member becomes unavailable
member.SendAsync(); // exception |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
I've tried checking RaftClusterMember.Status of each member in the raft cluster and the status is always 'unknown'. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
@sakno,
Is there a way to detect or check if a follower node is alive (or unresponsive) through DotNext Tcp library?
e.g. to check if Node is available before sending a message to the node.
Beta Was this translation helpful? Give feedback.
All reactions