Created
August 28, 2015 14:23
-
-
Save apple-corps/04fe63f4bb7a5c5a24bf to your computer and use it in GitHub Desktop.
elasticsearch.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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