Solr Data Stacks Enterprise Search 按列分组?

Solr Data Stacks Enterprise Search Group by column?

当我提交 'sum total income for males group by cat' 等查询时,我很难找到正确的语法 我正在使用 DSE v 4.8。

我有数据源设置,我可以通过以下 the tutorial

成功查询它

我尝试了 here

中的以下内容
curl http://localhost:8983/solr/nhanes_ks.nhanes/select -d 'q=gender:Male&wt=json&json.facet=    
{
    categories: {
        type: terms,
        field: cat,
        facet: {
            quality: "sum(monthly_income_total)"
        }
    }
}'

以及以下来自 here

curl http://localhost:8983/solr/nhanes_ks.nhanes/select -d 'q=gender:Male&wt=json&json.facet= 
{
    categories: {
        terms:{
            field: cat,
            facet: {
                quality: "sum(monthly_income_total)"
            }
        }
    }
}'

Solr 报告为版本 4.1 这是仅 Solr 5x 支持的功能吗? 如果没有,DSE 是否会升级 Solr 以支持 DSE 5x 中的此功能?

正如您正确地发现的那样,这些是 Solr 5.x 的特定功能,DSE 4.8 随 Solr 4.10.x 一起提供。 DSE 更新后,您将能够使用这些新的 Solr 5.x 功能。