There are no repositories to fetch SLM retention snapshot cleanup task complete – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 7.7-8.9

Briefly, this error occurs when Elasticsearch’s Snapshot Lifecycle Management (SLM) tries to clean up old snapshots but doesn’t find any repositories to fetch. This could be due to misconfiguration or deletion of repositories. To resolve this issue, you can either create a new repository or reconfigure the existing one. Also, ensure that the SLM policy is correctly set to point to the existing repository. Lastly, check the Elasticsearch logs for any related errors that might help in troubleshooting.

This guide will help you check for common problems that cause the log ” there are no repositories to fetch; SLM retention snapshot cleanup task complete ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: plugin, task, repositories, snapshot.

Log Context

Log “there are no repositories to fetch; SLM retention snapshot cleanup task complete” classname is SnapshotRetentionTask.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

                .map(SnapshotLifecyclePolicy::getRepository)
                .collect(Collectors.toSet());
            logger.trace("fetching snapshots from repositories: {}"; repositioriesToFetch);

            if (repositioriesToFetch.isEmpty()) {
                logger.info("there are no repositories to fetch; SLM retention snapshot cleanup task complete");
                return;
            }
            // Finally; asynchronously retrieve all the snapshots; deleting them serially;
            // before updating the cluster state with the new metrics and setting 'running'
            // back to false

 

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?