Skip to content

Instantly share code, notes, and snippets.

@imkrish
Last active November 4, 2018 09:50
Show Gist options
  • Select an option

  • Save imkrish/3748748dd2a383e8967f64e878e21f3e to your computer and use it in GitHub Desktop.

Select an option

Save imkrish/3748748dd2a383e8967f64e878e21f3e to your computer and use it in GitHub Desktop.
// Delete all data in elasticsearch
curl -X DELETE 'http://localhost:9200/_all'
// Backup data to data.json
elasticdump --input=data.json --output=http://localhost:9200 --type=data
// Import data.json to elasticsearch
elasticdump --input=http://localhost:9200/ --output=data.json --type=data --limit 50000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment