> For the complete documentation index, see [llms.txt](https://haleyryu.gitbook.io/engineer/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://haleyryu.gitbook.io/engineer/paper/dynamo-amazons-highly-available-key-value-store/4.-system-architecture/4.3-replication.md).

# 4.3 Replication

### Replication 이 필요한 이유 &#x20;

* 고가용성 및 내구성을 달성하기 위해, Dynamo 는 여러 호스트에서 데이터를 복제합니다.

### Replication 방식&#x20;

* 각 데이터 항목은 N개의 호스트에서 복제됩니다.\
  여기서 N 은 인스턴스별로 구성된 매개변수입니다.
* 각 Key 는 coordinator 노드에 할당됩니다.

&#x20;The coordinator is in charge of the replication of the data items that fall within its range. In addition to locally storing each key within its range, the coordinator replicates these keys at the N-1 clockwise successor nodes in the ring. This results in a system where each node is responsible for the region of the ring between it and its Nth predecessor. In Figure 2, node B replicates the key k at nodes C and D in addition to storing it locally. Node D will store the keys that fall in the ranges (A, B], (B, C], and (C, D].

&#x20;


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://haleyryu.gitbook.io/engineer/paper/dynamo-amazons-highly-available-key-value-store/4.-system-architecture/4.3-replication.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.
