在多元索引统计聚合中表示去重统计行数,用于返回指定字段不同值的数量,类似于SQL中的count(distinct)
。
请求数据结构
message DistinctCountAggregation {
optional string field_name = 1;
optional bytes missing = 2;
}
名称 | 类型 | 是否必选 | 描述 |
field_name | string | 是 | 用于统计聚合的字段。 |
missing | bytes | 否 | 当某行数据中的字段为空时字段值的默认值,由Plainbuffer编码,详见Plainbuffer编码。
|
响应数据结构
message DistinctCountAggregationResult {
optional int64 value = 1;
}
名称 | 类型 | 是否必选 | 描述 |
value | int64 | 是 | 返回值。 |
文档内容是否对您有帮助?