Skip to content

Commit

Permalink
Fix typo: node name
Browse files Browse the repository at this point in the history
  • Loading branch information
johtani authored and clintongormley committed Aug 26, 2014
1 parent 33011d5 commit b68ec6f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion 040_Distributed_CRUD/15_Create_index_delete.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Below we list the sequence of steps necessary to successfully create, index or
delete a document on both the primary and any replica shards, as depicted in
<<img-distrib-write>>:

1. The client sends a create, index or delete request to `Node_1`.
1. The client sends a create, index or delete request to `Node 1`.

2. The node uses the document's `_id` to determine that the document
belongs to shard `0`. It forwards the request to `Node 3`,
Expand Down
4 changes: 2 additions & 2 deletions 040_Distributed_CRUD/25_Partial_updates.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ image::images/04-04_update.png["Partial updates to a document"]
Below we list the sequence of steps used to perform a partial update on a
document, as depicted in <<img-distrib-update>>:

1. The client sends an update request to `Node_1`.
1. The client sends an update request to `Node 1`.
2. It forwards the request to `Node 3`, where the primary shard is allocated.
Expand Down Expand Up @@ -38,4 +38,4 @@ order that they were sent. If Elasticsearch forwarded just the change, it is
possible that changes would be applied in the wrong order, resulting in a
corrupt document.
****
****
4 changes: 2 additions & 2 deletions 040_Distributed_CRUD/30_Bulk_requests.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ image::images/04-05_mget.png["Retrieving multiple documents with mget"]
Below we list the sequence of steps necessary to retrieve multiple documents
with a single `mget` request, as depicted in <<img-distrib-mget>>:

1. The client sends an `mget` request to `Node_1`.
1. The client sends an `mget` request to `Node 1`.

2. `Node 1` builds a multi-get request per shard, and forwards these
requests in parallel to the nodes hosting each required primary or replica
Expand All @@ -34,7 +34,7 @@ Below we list the sequence of steps necessary to execute multiple
`create`, `index`, `delete` and `update` requests within a single
`bulk` request, as depicted in <<img-distrib-bulk>>:

1. The client sends a `bulk` request to `Node_1`.
1. The client sends a `bulk` request to `Node 1`.

2. `Node 1` builds a bulk request per shard, and forwards these requests in
parallel to the nodes hosting each involved primary shard.
Expand Down

0 comments on commit b68ec6f

Please sign in to comment.