1.3 KiB
1.3 KiB
SwarmSpecRaft
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| snapshot_interval | Option<i32> | The number of log entries between snapshots. | [optional] |
| keep_old_snapshots | Option<i32> | The number of snapshots to keep beyond the current snapshot. | [optional] |
| log_entries_for_slow_followers | Option<i32> | The number of log entries to keep around to sync up slow followers after a snapshot is created. | [optional] |
| election_tick | Option<i32> | The number of ticks that a follower will wait for a message from the leader before becoming a candidate and starting an election. ElectionTick must be greater than HeartbeatTick. A tick currently defaults to one second, so these translate directly to seconds currently, but this is NOT guaranteed. |
[optional] |
| heartbeat_tick | Option<i32> | The number of ticks between heartbeats. Every HeartbeatTick ticks, the leader will send a heartbeat to the followers. A tick currently defaults to one second, so these translate directly to seconds currently, but this is NOT guaranteed. | [optional] |