Guillaume Besse
Guillaume Besse

Reputation: 459

Duplicate an elasticsearch index from local network to production server

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

Answers (1)

Vineeth Mohan
Vineeth Mohan

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

Related Questions