Elasticserach 配置文件詳解

################################### Cluster ###################################
#定義集羣名稱,默認是elasticsearch
cluster.name: elasticsearch
#################################### Node #####################################
#定義此節點名稱
node.name: "elk001"
#此節點是否爲master,master做用就是作協調,協調集羣的狀態,數據的讀取時由集羣的各個節點共同完成的,可是數據的修改只能master完成
#node.master: true
#此節點是否爲子節點,功能就是存儲數據,存儲索引之類的
#node.data: true
#node.rack: rack314
# 設置一臺服務器能運行的節點數,通常爲1就好,由於通常狀況下一臺機器只跑一個節點
#node.max_local_storage_nodes: 1
#################################### Index ####################################
#定義索引分片的數量
#index.number_of_shards: 5
#定義副本的數量
#index.number_of_replicas: 1
#################################### Paths ####################################
#定義配置文件的設置
#path.conf: /path/to/conf
#定義索引數據存儲的位置
#path.data: /path/to/data
#path.data: /path/to/data1,/path/to/data2

#定義臨時文件的位置
#path.work: /path/to/work

# Path to log files:
#定義日誌文件的路徑
#path.logs: /path/to/logs

#定義插件的位置
#path.plugins: /path/to/plugins

#################################### Plugin ###################################
#這個屬性值爲各個插件的名稱,若是該值裏的所列的插件沒安裝,則該節點不能啓動,默認是沒有插件
#plugin.mandatory: mapper-attachments,lang-groovy
################################### Memory ####################################
#es在內存不夠jvm開啓swapping的時候,表現的會不好,因此爲了不這個問題,將概述性設置爲true,表示鎖定es所使用的內存
############################## Network And HTTP ###############################
#elasticsearch節點綁定的地址
#network.bind_host: 192.168.0.1
#elasticsearch和其餘節點通訊的地址,若是不設置的話 會自動獲取
#network.publish_host: 192.168.0.1

# Set both 'bind_host' and 'publish_host':
#
#network.host: 192.168.0.1
#設置節點之間通訊的端口
#transport.tcp.port: 9300
#定義是否壓縮tcp傳輸時的數據
#transport.tcp.compress: true
#定義http傳輸監聽的端口
#http.port: 9200
#設置http交互中傳輸內容的最大長度
#http.max_content_length: 100mb
#是否啓用http協議,若是不想讓elasticsearch走http協議就設置爲FALSE
#http.enabled: false

################################### Gateway ###################################
#elasticsearch底層持久化,默認是走的本地,也能夠設置爲aws的s3
#gateway.type: local
#控制集羣在達到多少個節點以後纔會開始數據恢復,經過這個設置能夠避免集羣自動相互發現的初期,shard分片不全的問題,假如es集羣內一共有5個節點,就能夠設置爲5,那麼這個集羣必須有5個節點啓動後纔會開始數據分片,若是設置爲3,就有可能另外兩個節點沒存儲數據分片
#gateway.recover_after_nodes: 1
#初始化數據恢復的超時時間,假如gateway.recover_after_nodes參數設置爲5,就是5個節點所有啓動後,再過5分鐘開始數據恢復
#gateway.recover_after_time: 5m

# Set how many nodes are expected in this cluster. Once these N nodes
# are up (and recover_after_nodes is met), begin recovery process immediately
# (without waiting for recover_after_time to expire):
#啓動幾個節點後開始數據恢復,假如gateway.recover_after_nodes這個參數設置爲5,那麼等到這5個節點所有啓動後直接能夠數據恢復,不用等待gateway.recover_after_time設置的時間
#gateway.expected_nodes: 2
############################# Recovery Throttling #############################
#設置一個節點的併發數量,
#cluster.routing.allocation.node_initial_primaries_recoveries: 4
#cluster.routing.allocation.node_concurrent_recoveries: 2
# Set to throttle throughput when recovering (eg. 100mb, by default 20mb):
#恢復數據時,限制的寬帶流量,若是是0就是無限制
#indices.recovery.max_bytes_per_sec: 20mb

#從其餘分片恢復數據時,最大打開併發的值
#indices.recovery.concurrent_streams: 5

################################## Discovery ##################################
#設置這個集羣,有多少個節點有master候選資格,若是集羣較大官方建議爲2-4個
#discovery.zen.minimum_master_nodes: 1
#es集羣中自動發現其餘節點的超時時間,若是網絡延遲較大,建議設置長一點,防止誤判
#discovery.zen.ping.timeout: 3s

#是否打開多播協議
#discovery.zen.ping.multicast.enabled: false
#設置集羣中master集羣初始化列表,這個數組裏的機器將被自動發現加入集羣
#discovery.zen.ping.unicast.hosts: ["host1", "host2:port"]

################################## Slow Log ##################################

# Shard level query and fetch threshold logging.

#index.search.slowlog.threshold.query.warn: 10s
#index.search.slowlog.threshold.query.info: 5s
#index.search.slowlog.threshold.query.debug: 2s
#index.search.slowlog.threshold.query.trace: 500ms

#index.search.slowlog.threshold.fetch.warn: 1s
#index.search.slowlog.threshold.fetch.info: 800ms
#index.search.slowlog.threshold.fetch.debug: 500ms
#index.search.slowlog.threshold.fetch.trace: 200ms

#index.indexing.slowlog.threshold.index.warn: 10s
#index.indexing.slowlog.threshold.index.info: 5s
#index.indexing.slowlog.threshold.index.debug: 2s
#index.indexing.slowlog.threshold.index.trace: 500ms

################################## GC Logging ################################

#monitor.jvm.gc.young.warn: 1000ms
#monitor.jvm.gc.young.info: 700ms
#monitor.jvm.gc.young.debug: 400ms

#monitor.jvm.gc.old.warn: 10s
#monitor.jvm.gc.old.info: 5s
#monitor.jvm.gc.old.debug: 2s

################################## Security ################################

# Uncomment if you want to enable JSONP as a valid return transport on the
# http server. With this enabled, it may pose a security risk, so disabling
# it unless you need it is recommended (it is disabled by default).
#
#http.jsonp.enable: true
相關文章
相關標籤/搜索