标签:div bubuko ted guide 技术 table htm cas range
此为搭建说明,实际上搭建过es 集群的都是可以的,和es 基本一样
配置文件 crate.yaml
cluster.name: my_cluster
如果省略会自动生产,必须唯一
node.name: node1
transport.tcp.port: 4350-4360
可以使用dns ,或者直接配置ip:port 模式
discovery.zen.ping.unicast.hosts:
- 10.0.1.101:4300
- 10.0.1.102:4300
- 10.0.1.103:4300
(N / 2) + 1
参考三个节点,需要两个master
discovery.zen.minimum_master_nodes: 2
同时需要设置 node.master: true|false
https://crate.io/docs/crate/reference/en/latest/config/node.html
https://crate.io/docs/crate/guide/en/latest/scaling/multi-node-setup.html
标签:div bubuko ted guide 技术 table htm cas range
原文地址:https://www.cnblogs.com/rongfengliang/p/9409422.html