使用 _size 字段编辑

要启用 _size 字段,请按如下方式设置映射

PUT my-index-000001
{
  "mappings": {
    "_size": {
      "enabled": true
    }
  }
}

_size 字段的值可在查询、聚合、脚本和排序时访问。可以使用 字段参数 检索它

# Example documents
PUT my-index-000001/_doc/1
{
  "text": "This is a document"
}

PUT my-index-000001/_doc/2
{
  "text": "This is another document"
}

GET my-index-000001/_search
{
  "query": {
    "range": {
      "_size": {                      
        "gt": 10
      }
    }
  },
  "aggs": {
    "sizes": {
      "terms": {
        "field": "_size",             
        "size": 10
      }
    }
  },
  "sort": [
    {
      "_size": {                      
        "order": "desc"
      }
    }
  ],
  "fields": ["_size"],                
  "script_fields": {
    "size": {
      "script": "doc['_size']"        
    }
  }
}

查询 _size 字段

聚合 _size 字段

_size 字段排序

使用 fields 参数在搜索响应中返回 _size

使用 脚本字段 在搜索响应中返回 _size 字段。

在 Kibana 中使用 _size

要在 Kibana 中使用 _size 字段,请更新 metaFields 设置并将 _size 添加到元字段列表中。可以通过管理中的“高级设置”页面在 Kibana 中配置 metaFields