使用 _size 字段
编辑使用 _size
字段
编辑要启用 _size
字段,请按如下方式设置映射:
PUT my-index-000001 { "mappings": { "_size": { "enabled": true } } }
可以通过查询、聚合、脚本和排序访问 _size
字段的值。可以使用 fields 参数检索。
# 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']" } } }
在 |
|
在 |
|
在 |
|
使用 |
|
使用脚本字段在搜索响应中返回 |
在 Kibana 中使用 _size
要在 Kibana 中使用 _size
字段,请更新 metaFields
设置并将 _size
添加到元字段列表中。metaFields
可以在 Kibana 的管理中的高级设置页面进行配置。