Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. # Elasticsearch Ansible Variables
  2.  
  3. elasticsearch_data_dir: '/mnt/ebs/elasticsearch/'
  4. elasticsearch_max_open_files: '65535'
  5. elasticsearch_memlock: 'unlimited'
  6. elasticsearch_heap_size: '5g'
  7. bootstrap_mlockall: 'true'
  8. fielddata_cache_size: '20%'
  9. index_buffer_size: '30%'
  10. index_codec: 'best_compression'
  11. http_compression: 'true'
  12. number_of_shards: 1
  13. number_of_replicas: "{{ 1 if env == 'prod' else 0 }}"
  14. max_bytes_per_sec: '200mb'
  15. flush_threshold_size: '1gb'
  16. discovery.zen.ping.unicast.hosts: [elastic1, elastic2]
  17. network.host: [_tun0_, _local_]
  18. node.name: ${HOSTNAME}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement