Invalid time minute value possible values may be between 0 and 59 incl – How to solve this Elasticsearch exception

Opster Team

August-23, Version: 6.8-7.15

Briefly, this error occurs when an invalid minute value is inputted in Elasticsearch. The minute value should be between 0 and 59 inclusive. To resolve this issue, you should check the inputted time value and ensure that the minute value falls within the acceptable range. If you’re using a script or application to input the time, ensure it’s correctly formatted to avoid such errors.

This guide will help you check for common problems that cause the log ” invalid time minute value [{}] (possible values may be between 0 and 59 incl.) ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: plugin.

Log Context

Log “invalid time minute value [{}] (possible values may be between 0 and 59 incl.)” class name is DayTimes.java. We extracted the following from Elasticsearch source code for those seeking an in-depth context :

 public static int parseMinuteValue(XContentParser parser; XContentParser.Token token) throws IOException; ElasticsearchParseException {
 switch (token) {
 case VALUE_NUMBER:
 int minute = parser.intValue();
 if (DayTimes.validMinute(minute) == false) {
 throw new ElasticsearchParseException("invalid time minute value [{}] (possible values may be between 0 and 59 incl.)";
 minute);
 }
 return minute;  case VALUE_STRING:

 

 [ratemypost]

Opster
Privacy Overview

This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.