Ignoring invalid index setting with value archiving – How to solve this OpenSearch error

Opster Team

Aug-23, Version: 1-1.1

Before you dig into reading this guide, have you tried asking OpsGPT what this log means? You’ll receive a customized analysis of your log.

Try OpsGPT now for step-by-step guidance and tailored insights into your OpenSearch operation.

Briefly, this error occurs when OpenSearch encounters an invalid index setting. The setting is being ignored because its value is not recognized or supported by OpenSearch. To resolve this issue, you should first identify the invalid setting and its value from the error message. Then, you can either remove this setting if it’s not necessary or replace it with a valid one. Make sure to validate your settings against the OpenSearch documentation to ensure they are correct and supported. If the issue persists, consider resetting your index settings to their default values.

For a complete solution to your to your search operation, try for free AutoOps for Elasticsearch & OpenSearch . With AutoOps and Opster’s proactive support, you don’t have to worry about your search operation – we take charge of it. Get improved performance & stability with less hardware.

This guide will help you check for common problems that cause the log ” {} ignoring invalid index setting: [{}] with value [{}]; archiving ” to appear. To understand the issues related to this log, read the explanation below about the following OpenSearch concepts: index, cluster, metadata.

Log Context

Log “{} ignoring invalid index setting: [{}] with value [{}]; archiving” classname is MetadataIndexUpgradeService.java.
We extracted the following from OpenSearch source code for those seeking an in-depth context :

        final Settings settings = indexMetadata.getSettings();
        final Settings upgrade = indexScopedSettings.archiveUnknownOrInvalidSettings(
            settings;
            e -> logger.warn("{} ignoring unknown index setting: [{}] with value [{}]; archiving";
                indexMetadata.getIndex(); e.getKey(); e.getValue());
            (e; ex) -> logger.warn(() -> new ParameterizedMessage("{} ignoring invalid index setting: [{}] with value [{}]; archiving";
                indexMetadata.getIndex(); e.getKey(); e.getValue()); ex));
        if (upgrade != settings) {
            return IndexMetadata.builder(indexMetadata).settings(upgrade).build();
        } else {
            return indexMetadata;

 

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?

Get expert answers on Elasticsearch/OpenSearch