• CentOS7配置crate集群


    一:编辑配置文件:

      1.1配置文件:

        vim /etc/crate/crate.yml

      1.2编辑crate.yml 的集群名称在166行附近:

        cluster.name: crate-xxx

      1.3编辑node节点名称202行附近:

        node.name: node-01

      1.4主节点设置209行附近与1.9master高可用互相匹配:

        node.master: true

      1.5集群接口400行附近:

        transport.tcp.port: 4300

      1.6后备恢复点425行附近:

        #值要大于discovery.zen.minimum_master_nodes且小于等于gateway.expected_nodes

        gateway.recover_after_nodes: 2

      1.7集群总节点数434行附近:

        gateway.expected_nodes: 3

      1.8Discovery集群发现510行附近:

        discovery.zen.ping.unicast.hosts:

        - 192.168.x.x:4300
        - 192.168.x.y:4300
        - 192.168.x.z:4300

      1.9master高可用526行附近:

        # We highly recommend to set the minimum master nodes as follows:

        # minimum_master_nodes: (N / 2) + 1 where N is the cluster size

        # That will ensure a full recovery of the cluster state.

        discovery.zen.minimum_master_nodes: 2

        要配置218行附近的

          node.master: true

  • 相关阅读:
    base64和Blob的相互转换
    限制文件上传的大小和尺寸
    git将本地项目提交到github
    vue-cli3创建项目时报错
    运行项目是node-sass报错的解决方法
    classList的使用
    将数组扁平化并去除其中重复数据,最终得到一个升序且不重复的数组
    移动端的图片放大
    js获取url中的参数
    HTML5-canvas
  • 原文地址:https://www.cnblogs.com/jackyzm/p/10298744.html
Copyright © 2020-2023  润新知