etcd/Documentation/glossary.md

36 lines
886 B
Markdown
Raw Normal View History

# Glossary
2014-10-18 02:04:04 +04:00
This document defines the various terms used in etcd documentation, command line and source code.
## Node
2014-10-18 02:04:04 +04:00
Node is an instance of raft state machine.
It has a unique identification, and records other nodes' progress internally when it is the leader.
## Member
2014-10-18 02:04:04 +04:00
Member is an instance of etcd. It hosts a node, and provides service to clients.
## Cluster
2014-10-18 02:04:04 +04:00
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.
## Peer
2014-10-18 02:04:04 +04:00
Peer is another member of the same cluster.
## Proposal
2015-06-16 23:51:20 +03:00
A proposal is a request (for example a write request, a configuration change request) that needs to go through raft protocol.
## Client
2014-10-18 02:04:04 +04:00
Client is a caller of the cluster's HTTP API.
## Machine (deprecated)
2014-10-18 02:04:04 +04:00
The alternative of Member in etcd before 2.0