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]