Can t round an AggregateDoubleMetricFieldMapper CONTENT TYPE – How to solve this Elasticsearch exception

Opster Team

August-23, Version: 7.11-8.9

Briefly, this error occurs when there’s an attempt to round a field of type “aggregate_double_metric” in Elasticsearch. This field type stores pre-aggregated data and doesn’t support rounding. To resolve this issue, you can either change the field type to one that supports rounding, or pre-process your data to round it before storing it in Elasticsearch. Alternatively, you can handle the rounding in your application logic after retrieving the data from Elasticsearch.

This guide will help you check for common problems that cause the log ” Can’t round an [” + AggregateDoubleMetricFieldMapper.CONTENT_TYPE + “] ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: plugin, aggregations.

Log Context

Log “Can’t round an [” + AggregateDoubleMetricFieldMapper.CONTENT_TYPE + “]” class name is AggregateMetricsValuesSource.java. We extracted the following from Elasticsearch source code for those seeking an in-depth context :

 };
 }  @Override
 protected Function roundingPreparer(AggregationContext context) throws IOException {
 throw new AggregationExecutionException("Can't round an [" + AggregateDoubleMetricFieldMapper.CONTENT_TYPE + "]");
 }  public SortedNumericDoubleValues getAggregateMetricValues(LeafReaderContext context; Metric metric) throws IOException {
 return indexFieldData.load(context).getAggregateMetricValues(metric);
 }

 

How helpful was this guide?

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?