We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We need to export data from our local elasticsearch and import at cloud elasticsearch.
For this we can use https://github.com/taskrabbit/elasticsearch-dump
The text was updated successfully, but these errors were encountered:
Using elasticsearch-dump, we could move data from our local elastic to the cloud elastic using or npm library or the docker image as follow:
docker run taskrabbit/elasticsearch-dump --input=http://LOCAL_ELASTIC --output=http://CLOUD_ELASTIC --type=data
Sorry, something went wrong.
Test import/export on local
docker run -d -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch:7.2.0
docker run -d --link f215ab1d5f26:elasticsearch -p 5601:5601 docker.elastic.co/kibana/kibana:7.2.0
docker run --link ELASTIC_CONTAINER_NAME:elasticsearch taskrabbit/elasticsearch-dump --input=http://elasticsearch:9200/INDEX --output=http://elasticsearch:9200/INDEX2 --type=data
danielmasegosa
No branches or pull requests
We need to export data from our local elasticsearch and import at cloud elasticsearch.
For this we can use https://github.com/taskrabbit/elasticsearch-dump
The text was updated successfully, but these errors were encountered: