Skip to content

Instantly share code, notes, and snippets.

@apple-corps
Created August 28, 2015 14:23
Show Gist options
  • Select an option

  • Save apple-corps/04fe63f4bb7a5c5a24bf to your computer and use it in GitHub Desktop.

Select an option

Save apple-corps/04fe63f4bb7a5c5a24bf to your computer and use it in GitHub Desktop.
elasticsearch.yml
{
"persistent": {
"action": {
"destructive_requires_name": "true"
},
"indices": {
"store": {
"throttle": {
"max_bytes_per_sec": "60mb"
}
},
"recovery": {
"concurrent_streams": "8",
"max_bytes_per_sec": "160mb"
}
},
"cluster": {
"routing": {
"allocation": {
"enable": "all",
"disable_replica_allocation": "false",
"node_initial_primaries_recoveries": "4",
"node_concurrent_recoveries": "8",
"disable_allocation": "false"
}
}
}
},
"transient": {
"cluster": {
"routing": {
"allocation": {
"enable": "all",
"disable_replica_allocation": "false"
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment