美文网首页
es dsl使用更改默认设置

es dsl使用更改默认设置

作者: 盗生一 | 来源:发表于2020-09-23 15:00 被阅读0次
    • 修改serarch.max_buckets 限制
    
    PUT _cluster/settings
    {
      "transient": {
        "search.max_buckets": "2147483647"
      }
    }
    
    • 修改request data to longer
    PUT /_cluster/_settings 
    {
      "persistent" : {
        "indices.breaker.request.limit" : "40%" 
    
      }
    }
    
    • ES集群API请求设置与配置文件设置优先级说明:
             a.临时设置(集群节点全部重启失效):
    
                {
                    "transient" : {
                        "xxx" : "yyy"
                    }
                }
    
            b.永久设置(集群节点全部重启依然生效):
    
                PUT /_cluster/settings
                {
                    "persistent" : {
                        "xxx" : "yyy"
                    }
                }
    
        (2)配置文件设置(集群节点全部重启依然生效):elasticsearch.yml
    
    优先级:
    
        transient cluster settings > persistent cluster settings >  settings in the elasticsearch.yml configuration file.
    
    

    相关文章

      网友评论

          本文标题:es dsl使用更改默认设置

          本文链接:https://www.haomeiwen.com/subject/bxxoyktx.html