• es number_of_shards和number_of_replicas


    number_of_replicas 是数据备份数,如果只有一台机器,设置为0

    number_of_shards  是数据分片数,默认为5,有时候设置为3

    可以在线改所有配置的参数,number_of_shards不可以在线改

    curl -XPUT '10.0.120.39:9200/_settings' -d ' { "index" : { "number_of_replicas" : 0 } }'

    如果要所有的配置都生效,修改配置文件:

    index.number_of_shards: 3
    index.number_of_replicas: 0

    如果每次生成索引的时候没生效,就要注意是否有索引模板了,索引模板生成的时候已经制定了参数

    上面命令在elasticsearch 6.x 用不了了,修改如下:

    curl -X PUT "10.10.10.10:9200/filebeat*/_settings" -H 'Content-Type: application/json' -d'
    {
        "index" : {
            "number_of_replicas" : 0
        }
    }
    '

     要对后面新的index有效,要创建一个默认模板(模板很重要,模板可以为所欲为):

    curl -X PUT "10.10.10.10:9200/_template/template_log" -H 'Content-Type: application/json' -d'
    {
        "index_patterns" : ["filebeat*"],
        "order" : 0,
        "settings" : {
            "number_of_replicas" : 0
        }
    }
    '

  • 相关阅读:
    go入门4---数据
    hibernate之关联关系一对多
    hibernate的主键生成策略
    hibernate的入门
    struts--CRUD优化(图片上传)
    struts2--CRUD
    struts2--入
    Maven环境搭建
    EasyUI--增删改查
    easyui--权限管理
  • 原文地址:https://www.cnblogs.com/mikeluwen/p/8031813.html
Copyright © 2020-2023  润新知