I would like to copy/move indexA from ES cluster A to ES cluster B.
Is it possible to do that? I am using free version.
I would like to copy/move indexA from ES cluster A to ES cluster B.
Is it possible to do that? I am using free version.
Some ideas:
Hope this helps
As @dadoonet says, you canuse reindex from remote
Reindex supports reindexing from a remote Elasticsearch cluster
Example :
POST _reindex
{
"source": {
"remote": {
"host": "http://otherhost:9200",
"username": "user",
"password": "pass"
},
"index": "my-index-000001",
"query": {
"match": {
"test": "data"
}
}
},
"dest": {
"index": "my-new-index-000001"
}
}
make sure that the network flow is open between the two clusters
Big thx
© 2020. All Rights Reserved - Elasticsearch
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant logo are trademarks of the Apache Software Foundation in the United States and/or other countries.