Skip to content

Commit acbce4b

Browse files
authored
Advise to use a single instance for writes
1 parent 89fd606 commit acbce4b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

learn/multi_search/implement_sharding.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,13 +138,13 @@ Keeping the settings and indexes in sync is important to avoid errors and unexpe
138138

139139
## Add documents
140140

141-
Send documents to any instance to have them replicated to the other instances.
141+
Pick a single instance to send all your documents to. Documents will be replicated to the other instances.
142142

143-
Each instance will index the documents they are responsible of and ignore the others.
143+
Each instance will index the documents they are responsible for and ignore the others.
144144

145145
You *may* send send the same document to multiple instances, the task will be replicated to all instances, and only the instance responsible for the document will index it.
146146

147-
Similarly, you may send any future versions of any document to any instance and only the correct instance will process that document.
147+
Similarly, you may send any future versions of any document to the instance you picked, and only the correct instance will process that document.
148148

149149
### Updating index settings
150150

0 commit comments

Comments
 (0)