Time cluster setting with value is missing units assuming default units ms but in future versions this will be a hard error – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 2-2

Briefly, this error occurs when the time unit is not specified in the Elasticsearch cluster settings. Elasticsearch assumes milliseconds (ms) as the default unit, but future versions will require explicit unit specification. To resolve this, you should specify the time unit when setting the time value. For example, instead of “5”, use “5ms” for milliseconds, “5s” for seconds, “5m” for minutes, etc. This will ensure compatibility with future versions of Elasticsearch.

This guide will help you check for common problems that cause the log ” time cluster setting [{}] with value [{}] is missing units; assuming default units (ms) but in future versions this will be a hard error ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: cluster and metadata.

Log Context

Log “time cluster setting [{}] with value [{}] is missing units; assuming default units (ms) but in future versions this will be a hard error” classname is MetaData.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

                     Long.parseLong(settingValue);
                } catch (NumberFormatException nfe) {
                    continue;
                }
                // It's a naked number that previously would be interpreted as default unit (ms); now we add it:
                logger.warn("time cluster setting [{}] with value [{}] is missing units; assuming default units (ms) but in future versions this will be a hard error"; settingName; settingValue);
                if (newPersistentSettings == null) {
                    newPersistentSettings = Settings.builder();
                    newPersistentSettings.put(metaData.persistentSettings());
                }
                newPersistentSettings.put(settingName; settingValue + "ms");




 

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?