Advertisement
Guest User

Untitled

a guest
Jan 8th, 2020
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.82 KB | None | 0 0
  1. cluster:
  2.   name: ${CLUSTER_NAME}
  3.  
  4. node:
  5.   master: ${NODE_MASTER} # false
  6.   data: ${NODE_DATA} # true
  7.   name: ${NODE_NAME} # es-data-0
  8.   ingest: ${NODE_INGEST} # false
  9.   max_local_storage_nodes: 2
  10.  
  11. processors: ${PROCESSORS:1} # 2
  12.  
  13. network.host: ${NETWORK_HOST} # _eth0_
  14.  
  15. #path:
  16. #  data: /data/data
  17. #  logs: /data/log
  18.  
  19. #bootstrap:
  20. #  memory_lock: true
  21.  
  22. http:
  23.   enabled: true
  24.   compression: true
  25.  
  26. discovery:
  27.   zen:
  28.     ping.unicast.hosts: elasticsearch-discovery
  29.     minimum_master_nodes: 2
  30.  
  31. #xpack.license.self_generated.type: basic
  32. #xpack.security.enabled: false
  33. #xpack.monitoring.enabled: true
  34. xpack.monitoring.collection.enabled: true
  35. #xpack.ml.enabled: false
  36.  
  37. cluster.routing.allocation.enable: all
  38. cluster.routing.rebalance.enable: all
  39. cluster.routing.allocation.allow_rebalance: indices_all_active
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement