Home > Blockchain >  elasticsearch move data from local device to cloud ealstic
elasticsearch move data from local device to cloud ealstic

Time:05-23

Is there any way to copy all the data of an index from elasticsearch from my computer to cloud elastic ? i'm working on localhost and now i want to migrate it to cloud.elastic.co Cheers!

CodePudding user response:

you can do this with a snapshot of your local cluster into s3, then a restore of that on Elastic Cloud.

CodePudding user response:

Which cloud provider are you using? If it is AWS OpenSearch, it does not allow remote index operation from local ElasticSearch. Allows if it's an ElasticSearch in the AWS cloud and https is broadcasting.

If the data is critical, you can pull the data and send bulk requests to ElasticSearch in the cloud. I had to do so.

You can write your own application or you can send requests multi-threaded with a tool like Jmeter.

  • Related