0
下面的查詢給出elasticsearch我的文檔的詞彙量的大小:在如何在python中打印elasticsearch的查詢結果?
{
"took": 0,
"timed_out": false,
"_shards": {
"total": 1,
"successful": 1,
"failed": 0
},
"hits": {
"total": 84678,
"max_score": 0,
"hits": []
},
"aggregations": {
"vocab": {
"value": 178050**
}
}
}
現在我想打印領域的「值」的值(= 178050):
GET my_index/my_type/_search
{
"size": 0,
"aggs": {
"vocab": {
"cardinality": {
"field": "text"}}}}
輸出是蟒蛇。
我寫在Python以下幾點:
query_body={
"size": 0,
"aggs": {
"vocab": {
"cardinality": {
"field": "text"}}}}
res = es.search(index = INDEX_NAME, body=query_body)
我怎麼能打印的價值?謝謝。
非常感謝!這工作。 – farha
如果答案有幫助,請回覆/標記爲已回答。 – 2ps