一、目标:统计各类型资源的个数,输出详细报表
http://10.10.6.225:9200/dsideal_db/t_resource_info/
_mapping
{
"properties": {
"RESOURCE_FORMAT": {
"type": "text",
"fielddata": true
}
}
}
返回结果:
{
"acknowledged": true
}
http://10.10.6.225:9200/dsideal_db/t_resource_info/
_search
{
"size": 0,
"aggs": {
"group_by_RESOURCE_FORMAT": {
"terms": {
"field": "RESOURCE_FORMAT"
}
}
}
}
返回结果:
原文地址:https://www.cnblogs.com/littlehb/p/8441103.html
时间: 2024-10-08 23:59:16