弹性搜索聚合不返回数据

时间:2017-03-10 09:51:34

标签: php elasticsearch elastica

聚合函数可能返回数据而不是count?

现在我得到:

array (size=3)
'doc_count_error_upper_bound' => int 0
'sum_other_doc_count' => int 0
'buckets' => 
array (size=2)
  0 => 
    array (size=2)
      'key' => int 15
      'doc_count' => int 2
  1 => 
    array (size=2)
      'key' => int 14
      'doc_count' => int 1

但这没用,因为我需要表示此doc_count为2且doc_count为1的实际数据

我正在使用elastica.io

1 个答案:

答案 0 :(得分:0)

您可以进行如下搜索,并使用top_hits聚合来获取文档来源。

{
    "aggs": {
        "terms_aggregation": {
            "terms": {
                "field": "anyfield",
                "size": 10
            },
            "aggs": {
                "gruped_result": {
                    "top_hits": {
                        "size": 100
                    }
                }
            }
        }
    }
}

我想在你的php客户端中可能是这样的东西

$termsAgg = new Terms("anyfields");
$termsAgg->setField("anyfield");

$statsAgg = new TopHits();
$statsAgg->setSize(100);

$termsAgg->addAggregation($statsAgg);
$index = $elasticaClient->getIndex('someindex');
$buckets = $index->search($query)->getAggregation("anyfields");

我在官方网页上提到了this example子聚合