Reputation: 11
Currently, I'm working with Elasticsearch, I'm interested in reindexing because it has no time down. I have a question if my index has very much data (1 million documents for example), when I call POST _reindex, all documents in old index are transferred immediately to new index? Or I have to wait until all documents is completed to query in new index?
Upvotes: 0
Views: 1454
Reputation: 30163
Reindex will take time since as the name suggests it re-indexes all the document from one index to another. No downtime means that your source index will be still available during the process. Two things to keep in mind during reindexing though:
Upvotes: 1