Elasticsearch将数据从本地设备移动到云
有什么方法可以将Elasticsearch的所有索引数据从我的计算机复制到云弹性? 我正在研究Local主机,现在我想将其迁移到cloud.elastic.co 干杯!
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!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 snapshot 您的本地群集进入S3,然后在弹性云上。
you can do this with a snapshot of your local cluster into s3, then a restore of that on Elastic Cloud.
您正在使用哪个云提供商?如果是AWS OpenSearch,则不允许本地Elasticsearch的远程索引操作。如果是AWS Cloud和HTTPS正在广播中的Elasticsearch,则允许。
如果数据至关重要,则可以提取数据并将批量请求发送到云中的Elasticsearch。我必须这样做。
您可以编写自己的应用程序,也可以使用Jmeter等工具发送请求多线程。
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.