# 术语

这份文档定义etcd文档，命令行和源代码中使用的多个术语。

## Node / 节点

Node/节点 是 raft 状态机的一个实例。

它有唯一标识，并内部记录其他节点的发展，如果它是leader。

## Member / 成员

Member/成员是 etcd 的一个实例。它承载一个 node/节点，并为client/客户端提供服务。

## Cluster / 集群

Cluster/集群由多个 member/成员组成。

每个成员的节点遵循 raft 一致性协议来复制日志。集群从成员中接收提案，提交他们并应用到本地存储。

## Peer / 同伴

Peer/同伴是同一个集群中的其他成员。

## Proposal / 提议

提议是一个需要完成 raft 协议的请求(例如写请求，配置修改请求)。

## Client / 客户端

Client/客户端是集群 HTTP API的调用者。

> 注： 对于V3,应该包括 gRPC API。

## Machine / 机器 (弃用)

在 2.0 版本之前，在 etcd 中的成员备选。


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://doczhcn.gitbook.io/etcd/index/index-2/glossary.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
