Reputation: 459
I index thousands of pdfs in an elasticsearch index inside my local network and I want to replicate it on a production server with a public IP.
I don't store pdfs inside elasticsearch index.
What is the best solution ?
Upvotes: 0
Views: 39
Reputation: 19283
My best bet would be snapshot restore. As both of them are incremental , it fits the bill.
Personally , i would go for a AWS repository , take snapshot on it on a periodic interval or whenever i am done indexing a bunch of documents and then restore it from the production side.
You can read more about it here.
Upvotes: 1