heartbeat
RU: heartbeat
A periodic message a node sends to signal that it is still alive. In Raft the leader broadcasts empty AppendEntries RPCs to all followers at a fixed interval (the heartbeat interval, typically shorter than the election timeout) to reset their timers and prevent unnecessary elections. In other systems heartbeats drive failure detection: a node that misses a configurable number of consecutive heartbeats is declared failed.