Failed to ensure SLM history index exists not indexing history item – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 7.4-7.1

Briefly, this error occurs when Elasticsearch’s Snapshot Lifecycle Management (SLM) fails to create or access the history index. This index is used to store the history of snapshot lifecycle actions. The issue could be due to insufficient permissions, disk space, or a configuration error. To resolve this, ensure that the Elasticsearch cluster has enough disk space and the necessary permissions to create and write to indices. Also, check the SLM settings and correct any configuration errors. If the problem persists, consider disabling SLM history indexing as a last resort.

This guide will help you check for common problems that cause the log ” failed to ensure SLM history index exists; not indexing history item [{}] ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: index, indexing, plugin.

Log Context

Log “failed to ensure SLM history index exists; not indexing history item [{}]” classname is SnapshotHistoryStore.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

                }));
            } catch (IOException exception) {
                logger.error(new ParameterizedMessage("failed to index snapshot history item in index [{}]: [{}]";
                    SLM_HISTORY_ALIAS; item); exception);
            }
        }; ex -> logger.error(new ParameterizedMessage("failed to ensure SLM history index exists; not indexing history item [{}]";
            item); ex)));
    }

    /**
     * Checks if the SLM history index exists; and if not; creates it.

 

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?