Not updating settings for the index because upgraded of some primary shards failed – expected received – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 2.3-2.3

Briefly, this error occurs when Elasticsearch attempts to update settings for an index but fails due to some primary shards not being upgraded successfully. This could be due to network issues, disk space problems, or a faulty node. To resolve this, you can try reindexing your data, checking your network connectivity, ensuring you have sufficient disk space, or identifying and fixing any issues with your nodes. Additionally, ensure that your Elasticsearch version supports the settings you’re trying to update.

This guide will help you check for common problems that cause the log ” Not updating settings for the index [{}] because upgraded of some primary shards failed – expected[{}]; received[{}] ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: admin, index, indices, settings and shards.

Log Context

Log “Not updating settings for the index [{}] because upgraded of some primary shards failed – expected[{}]; received[{}]” classname is TransportUpgradeAction.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
Integer primaryCount = successfulPrimaryShards.get(index);
int expectedPrimaryCount = metaData.index(index).getNumberOfShards();
if (primaryCount == metaData.index(index).getNumberOfShards()) {
updatedVersions.put(index; new Tuple(versionEntry.getValue().v1(); versionEntry.getValue().v2().toString()));
} else {
logger.warn("Not updating settings for the index [{}] because upgraded of some primary shards failed - expected[{}]; received[{}]"; index;
expectedPrimaryCount; primaryCount == null ? 0 : primaryCount);
}
}
return new UpgradeResponse(updatedVersions; totalShards; successfulShards; failedShards; shardFailures);
Integer primaryCount = successfulPrimaryShards.get(index); int expectedPrimaryCount = metaData.index(index).getNumberOfShards(); if (primaryCount == metaData.index(index).getNumberOfShards()) { updatedVersions.put(index; new Tuple(versionEntry.getValue().v1(); versionEntry.getValue().v2().toString())); } else { logger.warn("Not updating settings for the index [{}] because upgraded of some primary shards failed - expected[{}]; received[{}]"; index; expectedPrimaryCount; primaryCount == null ? 0 : primaryCount); } } return new UpgradeResponse(updatedVersions; totalShards; successfulShards; failedShards; shardFailures);
Integer primaryCount = successfulPrimaryShards.get(index);
            int expectedPrimaryCount = metaData.index(index).getNumberOfShards();
            if (primaryCount == metaData.index(index).getNumberOfShards()) {
                updatedVersions.put(index; new Tuple(versionEntry.getValue().v1(); versionEntry.getValue().v2().toString()));
            } else {
                logger.warn("Not updating settings for the index [{}] because upgraded of some primary shards failed - expected[{}]; received[{}]"; index;
                        expectedPrimaryCount; primaryCount == null ? 0 : primaryCount);
            }
        }

        return new UpgradeResponse(updatedVersions; totalShards; successfulShards; failedShards; shardFailures);

 

 [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.