Ignoring unknown 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 unrecognized index setting. The setting is ignored and archived for record-keeping. This could be due to a typo in the setting name, using a deprecated setting, or a setting that is not applicable to the current version of OpenSearch. To resolve this, verify the setting name and its applicability to your OpenSearch version. If it’s deprecated, find the new equivalent setting. If it’s a typo, correct it. Always ensure your settings are compatible with your OpenSearch version to avoid such errors.

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 unknown 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 unknown index setting: [{}] with value [{}]; archiving” classname is MetadataIndexUpgradeService.java.
We extracted the following from OpenSearch source code for those seeking an in-depth context :

    IndexMetadata archiveBrokenIndexSettings(IndexMetadata indexMetadata) {
        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();

 

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