Skip to content

Instantly share code, notes, and snippets.

@whoo
Created April 8, 2017 01:10
Show Gist options
  • Save whoo/235421475ce79d9e4e98b9b198c66b23 to your computer and use it in GitHub Desktop.
Save whoo/235421475ce79d9e4e98b9b198c66b23 to your computer and use it in GitHub Desktop.
Clean Elastic Search
GET /_cat/indices?v
POST /_reindex?refresh&wait_for_completion=false
{
"source": {
"index": "logstash-2017.03.*"
},
"dest": {
"index": "logstash-2017-q1"
}
}
DELETE logstash-2017.03*
GET _tasks?detailed=true&actions=*reindex
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment