Patroni
Version v3.3 of the documentation is no longer actively maintained. The page that you are viewing is the last archived version. For the latest stable documentation, see v3.5.
Glossary
This document defines the various terms used in etcd documentation, command line and source code.
Alarm
The etcd server raises an alarm whenever the cluster needs operator intervention to remain reliable.
Client
A client connects to the etcd cluster to issue service requests such as fetching key-value pairs, writing data, or watching for updates.
Cluster
Cluster consists of several members.
The node in each member follows raft consensus protocol to replicate logs. Cluster receives proposals from members, commits them and apply to local store.
Compaction
Compaction discards all etcd event history and superseded keys prior to a given revision. It is used to reclaim storage space in the etcd backend database.
Election
The etcd cluster holds elections among its members to choose a leader as part of the raft consensus protocol.
Key range
A set of keys containing either an individual key, a lexical interval for all x such that a < x ⇐ b, or all keys greater than a given key.
Proposal
A proposal is a request (for example a write request, a configuration change request) that needs to go through raft protocol.
Quorum
The number of active members needed for consensus to modify the cluster state. etcd requires a member majority to reach quorum.
Role
A unit of permissions over a set of key ranges which may be granted to a set of users for access control.
Transaction
An atomically executed set of operations. All modified keys in a transaction share the same modification revision.
Key Version
The number of writes to a key since it was created, starting at 1. The version of a nonexistent or deleted key is 0.
Watcher
A client opens a watcher to observe updates on a given key range.
Last modified April 26, 2021: Docsy theme (#244) (86b070b)