版本: 7.8-7.8
简而言之,当您尝试对Elasticsearch不支持该特定聚合的字段类型执行聚合时,就会出现此错误。例如,尝试在未启用keyword的文本字段上执行terms聚合。要解决此问题,您可以更改字段类型以支持您尝试执行的聚合,或使用支持当前字段类型的不同聚合。或者,如果文本字段未启用keyword,则可以启用它。
日志上下文 #
日志“ValuesSource type ” + valuesSource.toString() + “is not supported for aggregation ”的类名是 ExtendedStatsAggregatorFactory.java。 我们从 Elasticsearch 源代码中提取了以下内容,供那些寻求深入理解的人参考:
SearchContext searchContext;
Aggregator parent;
boolean collectsFromSingleBucket;
Mapmetadata) throws IOException {
if (valuesSource instanceof Numeric == false) {
throw new AggregationExecutionException("ValuesSource type " + valuesSource.toString() + "is not supported for aggregation " +
this.name());
}
return new ExtendedStatsAggregator(name; (Numeric) valuesSource; config.format(); searchContext;
parent; sigma; metadata);
}





