I am designing a system with a client and a server, the client needs to send heartbeat to server to let the server know it's alive. The client is written in java, the communication between client and server is using apache thrift, and the heartbeat needs to be sent by the working thread because if the we use a backgound timer to send heartbeat and the working thread is deadlocked, the server would never know. How should I implement this heartbeat mechanism?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Can you check if this implementation is fine for you. |
|||
|
|
|
You can implement a simple line-enquire/line-response mechanism by having the server send an enquire packet every few seconds (e.g. 4) and the client reply back with a response when they get the enquire packet. If the server doesn't hear back from the client after a certain number of seconds (e.g. 15) or a number of enquire packets have gone unanswered (e.g. 3), you can mark the client as down and restart the socket connection. |
|||
|
|
