ElasticSearch 查询/分组/聚合影响性能提升的参数

红色属性调大会提升性能,消耗内存,最大值40000

{
  "size" : 1,
  "query" : {
    "bool" : {
      "must" : [
        {
          "bool" : {
            "disable_coord" : false,
            "adjust_pure_negative" : true,
            "boost" : 1.0
          }
        }
      ],
      "disable_coord" : false,
      "adjust_pure_negative" : true,

      "boost" : 1.0
    }
  },
  "aggregations" : {
    "count" : {
      "cardinality" : {
        "field" : "host",

        "precision_threshold" : 40000
      }
    }
  }
}

猜你喜欢

转载自blog.csdn.net/airyearth/article/details/110196449