Sleeping for after modifying repository because it contains snapshots older than version – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 7.6-7.15

Briefly, this error occurs when Elasticsearch detects that a repository contains snapshots that are older than the current version. This is a safety measure to prevent potential data loss or corruption. To resolve this issue, you can either delete the old snapshots or upgrade them to the current version. Alternatively, you can create a new repository for the newer version snapshots and keep the old repository for the older version snapshots.

This guide will help you check for common problems that cause the log ” Sleeping for [{}] after modifying repository [{}] because it contains snapshots older than version [{}] ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: plugins, repository, version, repository-s3, repositories.

Log Context

Log “Sleeping for [{}] after modifying repository [{}] because it contains snapshots older than version [{}]” classname is S3Repository.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

            }
        };
    }

    private void logCooldownInfo() {
        logger.info("Sleeping for [{}] after modifying repository [{}] because it contains snapshots older than version [{}]" +
                " and therefore is using a backwards compatible metadata format that requires this cooldown period to avoid " +
                "repository corruption. To get rid of this message and move to the new repository metadata format; either remove " +
                "all snapshots older than version [{}] from the repository or create a new repository at an empty location.";
            coolDown; metadata.name(); SnapshotsService.SHARD_GEN_IN_REPO_DATA_VERSION;
            SnapshotsService.SHARD_GEN_IN_REPO_DATA_VERSION);

 

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?