본문 바로가기

IT/Elasticsearch

[Elasticsearch] Elasticsearch In Action - 7

7.1.1 집계 요청의 구조


curl 'localhost:9200/get-together/group/_search?pretty' -d '{

"aggs" : {

"top_tags" : {

"terms" : {

"field" : "tags.verbatim"

}

}

}

}'


curl 'localhost:9200/get-together/group/_search?pretty' -d '{

"query" : {

"match" : {

"location_group" : "Denver"

}

},

"aggregations" : {

"top_tags" : {

"terms" : {

"field" : "tags.verbatim"

}

}

}

}'

'IT > Elasticsearch' 카테고리의 다른 글

[Elasticsearch] 성능 극대화  (0) 2016.12.15
[Elasticsearch] 스케일 아웃  (0) 2016.12.15
[Elasticsearch] Elasticsearch In Action - 6 유사도 검색  (0) 2016.12.02
[Elasticsearch] Analyzer  (0) 2016.12.02
[Elasticsearch] download url  (0) 2016.12.01