我有一个索引,我想在此显示特定索引doc_types
下的所有(index1
。我已经尝试过此代码:
es.get(index='index1',doc_type='*',id='*')
但是它显示错误。知道如何显示吗?
答案 0 :(得分:0)
以这种方式尝试:
body ={"size":0,
"aggs": {
"doc_type_aggregations": {
"terms": {
"field": "_type"
}
}
}
}
es.get(index='index1',body=body)