Build index problem when batch import

If you're doing bulk imports, consider closing copies by setting index.number_of_replicas: 0.When a document is copied, the entire document content is sent to the replica node and the indexing process is repeated verbatim.This means that each copy also performs analysis, indexing, and possibly merging.

Conversely, if your index is a zero copy and you open the copy after the write is complete, the recovery process is essentially a byte to byte network transfer.This is quite efficient compared to repeating the indexing process.

Is this true?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.