Skip to content

Instantly share code, notes, and snippets.

@mowings
Created August 17, 2015 20:32
Show Gist options
  • Save mowings/f2d93596efb85745ff08 to your computer and use it in GitHub Desktop.
Save mowings/f2d93596efb85745ff08 to your computer and use it in GitHub Desktop.
Change elastic search index replica count (would also work for shards, etc)
curl -XPUT 'localhost:9200/_settings' -d '
{
"index" : {
"number_of_replicas" : 0
} }
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment