Briefly, this error occurs when you try to use an aggregation type in Elasticsearch that is not supported or does not exist. This could be due to a typo in the aggregation name or using an aggregation that is not available in your Elasticsearch version. To resolve this issue, you should verify the aggregation type you’re using is correct and supported in your Elasticsearch version. If the error persists, consider upgrading your Elasticsearch version to one that supports the desired aggregation type.
This guide will help you check for common problems that cause the log ” Unsupported aggregation type [{}] ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: plugin.
Log Context
Log “Unsupported aggregation type [{}]” class name is Pivot.java. We extracted the following from Elasticsearch source code for those seeking an in-depth context :
public void validateConfig(ActionListenerlistener) { for (AggregationBuilder agg : config.getAggregationConfig().getAggregatorFactories()) { if (TransformAggregations.isSupportedByTransform(agg.getType()) == false) { // todo: change to ValidationException listener.onFailure( new ElasticsearchStatusException("Unsupported aggregation type [{}]"; RestStatus.BAD_REQUEST; agg.getType()) ); return; } } listener.onResponse(true);
[ratemypost]