Advertisement
Guest User

Elasticsearch Config

a guest
Oct 15th, 2015
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.23 KB | None | 0 0
  1. ##### Non-Data Node
  2. node.master: false
  3. node.data: false
  4. index.number_of_shards: 9
  5. index.number_of_replicas: 1
  6. index.merge.scheduler.max_thread_count: 1
  7. indices.store.throttle.max_bytes_per_sec: 50mb
  8. index.refresh_interval: 10s
  9. path.logs: /logs
  10. bootstrap.mlockall: true
  11. discovery.zen.ping.unicast.hosts: ["host001"]
  12. monitor.jvm.gc.young.warn: 1000ms
  13. monitor.jvm.gc.old.warn: 10s
  14. http.cors.enabled: true
  15. http.cors.allow-origin: http://localhost:8080
  16.  
  17.  
  18. ##### Data Node
  19. node.master: false
  20. node.data: true
  21. index.number_of_shards: 9
  22. index.number_of_replicas: 1
  23. index.merge.scheduler.max_thread_count: 2
  24. indices.store.throttle.max_bytes_per_sec: 150mb
  25. index.refresh_interval: 30s
  26. path.data: /STORE01/ES,/STORE02/ES,/STORE03/ES
  27. path.logs: /logs
  28. bootstrap.mlockall: true
  29. indices.recovery.max_bytes_per_sec: 50mb
  30. discovery.zen.ping.unicast.hosts: ["host001"]
  31. monitor.jvm.gc.young.warn: 1000ms
  32. monitor.jvm.gc.old.warn: 10s
  33. http.cors.enabled: true
  34. http.cors.allow-origin: http://localhost:8080
  35. indices.fielddata.cache.size: 50%
  36. cluster.routing.allocation.node_concurrent_recoveries: 4
  37. cluster.routing.allocation.node_initial_primaries_recoveries: 18
  38. indices.recovery.concurrent_streams: 4
  39. indices.recovery.max_bytes_per_sec: 100mb
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement