mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-17 21:40:37 +00:00
Fixes #8087 FrontendOptions, DatanodeOptions, and FlownodeOptions do not define a heartbeat field, so the [heartbeat] sections in their example TOML files were never parsed. Heartbeat intervals are actually negotiated from metasrv during the heartbeat handshake: - Datanode/Flownode: interval = metasrv.heartbeat_interval - Frontend: interval = metasrv.heartbeat_interval * 6 This mislead operators into thinking they could tune heartbeat timing locally. Remove the sections to eliminate confusion. Metasrv's heartbeat_interval remains documented and functional.