私は各エクステンションの合計を探しています。 JSONファイルが含まれていElasticSearch各エクステンションのクエリは、その長さの合計を取得
出力が
キーたかっ
{"index":{"_id":"202"}}
"length":500000
"extension":".jpeg"
サンプルコード:Jpegか10000000 キー:DOCX 20000000
しようとしたコード
GET /crud_sample2/Customer_Info/_search?extension
{
"aggs": {
"sum": {
"terms": {
"field": "length"
}
}
}
}
出力
"キー":500000、 "doc_count":15
http://stackoverflow.com/questions/39354830/trying-to-upload-json-files-コマンドラインエラーメッセージのために - elasticsearchを使用して – Nicola