SearchInnerHit数据类型定义,表示嵌套类型字段的高亮分片信息。
数据结构
message SearchInnerHit {
optional string path = 1;
repeated SearchHit search_hits = 2;
}名称 | 类型 | 是否必选 | 描述 |
path | string | 否 | 嵌套类型字段的路径。 |
search_hits | SearchHit | 否 | 嵌套类型字段下所有数据子行的内容。 |
SearchInnerHit数据类型定义,表示嵌套类型字段的高亮分片信息。
message SearchInnerHit {
optional string path = 1;
repeated SearchHit search_hits = 2;
}名称 | 类型 | 是否必选 | 描述 |
path | string | 否 | 嵌套类型字段的路径。 |
search_hits | SearchHit | 否 | 嵌套类型字段下所有数据子行的内容。 |
在GetStreamRecord的响应消息中表示操作类型。 枚举取值列表
表示单个统计聚合配置。 数据结构 message Aggregation { optional string name = 1; optional AggregationType type = 2;
表示单个统计聚合Aggregation的返回信息。 数据结构 message AggregationResult { optional string name = 1; optional Aggregatio
表示统计聚合配置。 数据结构 message Aggregations { repeated Aggregation aggs = 1; }
表示统计聚合中Aggregation的返回信息。 数据结构 message AggregationsResult { repeated AggregationResult agg_results = 1; }
表示统计聚合类型。 枚举取值列表 AGG_AVG表示求平均值。 AGG_DISTINCT_COUNT表示去重统计行数,