And must be valid double values – How to solve this Elasticsearch exception

Opster Team

August-23, Version: 6.8-7.15

Briefly, this error occurs when Elasticsearch encounters non-double values in fields that are expected to be double. This could be due to incorrect data types being used or invalid data being inputted. To resolve this issue, you can: 1) Check the data being inputted and ensure it is in the correct double format. 2) Validate your data before indexing to prevent invalid data from being inserted. 3) Modify your mapping to match the data type of the field. Remember, changing the mapping requires reindexing.

This guide will help you check for common problems that cause the log ” [{}] and [{}] must be valid double values ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: .

Log Context

Log “[{}] and [{}] must be valid double values” class name is GeoUtils.java. We extracted the following from Elasticsearch source code for those seeking an in-depth context :

 throw new ElasticsearchParseException("field must be either lat/lon or geohash");
 } else {
 return point.parseGeoHash(geohash; effectivePoint);
 }
 } else if (numberFormatException != null) {
 throw new ElasticsearchParseException("[{}] and [{}] must be valid double values"; numberFormatException; LATITUDE;
 LONGITUDE);
 } else if (Double.isNaN(lat)) {
 throw new ElasticsearchParseException("field [{}] missing"; LATITUDE);
 } else if (Double.isNaN(lon)) {
 throw new ElasticsearchParseException("field [{}] missing"; LONGITUDE);

 

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?