elasticsearch 7.0.0 新版更新,填個坑
error1:
[cluster.initial master nodes] is empty on this nodeerror:2
the default discovery settings are unsuitable for production use; at least one of [discovery.seed_hosts, discovery.seed_providers, cluster.initial_master_nodes] must be configured正確配置
vi /usr/share/elasticsearch/config/elasticsearch.yml
cluster.name: "docker-cluster"
network.host: 0.0.0.0
# custom config
node.name: "node-1"
discovery.seed_hosts: ["127.0.0.1", "[::1]"]
cluster.initial_master_nodes: ["node-1"]
# 開啟跨域訪問支援,預設為false
# 跨域訪問允許的網域名稱位址,(允許所有網域名稱)以上使用正則
複製**
重點是node.name
和cluster.initial_master_nodes
elasticsearch 7 聚合統計 分組聚合
原文 get index type search 返回值表示,15,20 區間內的值有1個,20,25 區間內的值有0個,25,30 區間內的值有1個,30,35 區間內的值有1個。1 直方圖篩選規則 舉個例子,有乙個price欄位,這個字段描述了商品的 現在想每隔5就建立乙個桶,統計每隔區間都有多...
ElasticSearch 7 常見的字段型別
用於全文索引,該型別的字段將通過分詞器進行分詞 不分詞,只能搜尋該字段的完整的值 long,integer,short,byte,double,float,half float,scaled float 該型別的字段把值當做經過 base64 編碼的字串,預設不儲存,且不可搜尋 範圍型別表示值是乙個...
ELK之elasticsearch7版本集群設定
elk7版本搭建參考 node 1已經安裝配置好 配置檔案如下 新建主機node 2修改elasticsearch配置檔案 etc elasticsearch elasticsearch.yml 集群名需要和node 1一致 cluster.name my es node名 集群中兩個節點的ip 啟...