Reputation: 1
I have a use case wherein I need to replicate one of ES Domain index(main) to another ES Domain index. I am aware of the Cross Cluster Replication feature in elastic search but I don't think it is applicable for AWS Elasticsearch. I need the solution for AWS ElasticSearch.
Upvotes: 0
Views: 484
Reputation: 281
You can follow following steps to migrate elasticsearch data from one cluster to another :
If the source and destination cluster belongs to different aws accounts, then you need to setup access permissions which is nicely described in blog : https://aws.amazon.com/premiumsupport/knowledge-center/migrate-amazon-es-domain/
Upvotes: 0
Reputation: 46
You can copy indexes from one es domain to another via connecting both to the same S3 bucket. Then you can store one's snapshot and restore to another. You can follow this doc: https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/migration.html
Upvotes: 1