Advertisement
Guest User

Untitled

a guest
Apr 4th, 2014
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.53 KB | None | 0 0
  1. [ec2-user@amefurikozo elasticsearch]$ cat /usr/local/etc/elasticsearch/elasticsearch.yml
  2. ######################### ElasticSearch Configuration  ########################
  3.  
  4. # This file is managed by Chef, do not edit manually, your changes *will* be overwritten!
  5. #
  6. # Please see the source file for context and more information:
  7. #
  8. # https://github.com/elasticsearch/elasticsearch/blob/master/config/elasticsearch.yml
  9. #
  10. # To set configurations not exposed by this template, set the
  11. # `node.elasticsearch[:custom_config]` attribute in your node configuration,
  12. # `elasticsearch/settings` data bag, role/environment definition, etc:
  13. #
  14. #     // ...
  15. #     'threadpool.index.type' => 'fixed',
  16. #     'threadpool.index.size' => '2'
  17. #     // ...
  18.  
  19. ################################### Cluster ###################################
  20.  
  21. cluster.name: elasticsearch-test-dsi
  22.  
  23. #################################### Node #####################################
  24.  
  25. node.name: amefurikozo.localdomain
  26. node.master: true
  27. node.max_local_storage_nodes: 1
  28.  
  29. #################################### Index ####################################
  30.  
  31. index.mapper.dynamic: true
  32. action.auto_create_index: true
  33. action.disable_delete_all_indices: true
  34.  
  35. #################################### Paths ####################################
  36.  
  37. path.conf: /usr/local/etc/elasticsearch
  38. path.data: /usr/local/var/data/elasticsearch
  39. path.logs: /usr/local/var/log/elasticsearch
  40.  
  41. #################################### Plugin ###################################
  42.  
  43. plugin.mandatory: cloud-aws
  44.  
  45. ################################### Memory ####################################
  46.  
  47. bootstrap.mlockall: false
  48.  
  49. ############################## Network And HTTP ###############################
  50.  
  51. http.port: 9200
  52.  
  53. ################################### Gateway ###################################
  54.  
  55. gateway.expected_nodes: 2
  56.  
  57. ############################# Recovery Throttling #############################
  58.  
  59.  
  60. ################################## Discovery ##################################
  61.  
  62. discovery.type: ec2
  63.  
  64. discovery.zen.minimum_master_nodes: 2
  65. discovery.zen.ping.multicast.enabled: false
  66.  
  67. cloud.node.auto_attributes: true
  68. discovery.ec2.tag.opsworks::stack: elasticsearch-test
  69.  
  70. ################################## Slow Log ###################################
  71.  
  72.  
  73. ################################## GC Logging #################################
  74.  
  75.  
  76. ################################## JMX ########################################
  77.  
  78.  
  79. ################################## Custom #####################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement