Failed to index snapshot history item data stream and template don t exist – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 7.11-7.15

Briefly, this error occurs when Elasticsearch tries to index a snapshot history item, but the required data stream and template are not found. This could be due to incorrect configuration or deletion of the data stream or template. To resolve this issue, you can: 1) Check and correct the configuration settings related to the data stream and template. 2) If they were deleted, recreate the data stream and template with the correct settings. 3) Ensure that the Elasticsearch cluster has the necessary permissions to access and manipulate the data stream and template.

This guide will help you check for common problems that cause the log ” failed to index snapshot history item; data stream [{}] and template [{}] don’t exist ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: template, index, plugin, snapshot.

Log Context

Log “failed to index snapshot history item; data stream [{}] and template [{}] don’t exist” classname is SnapshotHistoryStore.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

        }
        logger.trace("about to index snapshot history item in data stream [{}]: [{}]"; SLM_HISTORY_DATA_STREAM; item);
        Metadata metadata = clusterService.state().getMetadata();
        if (metadata.dataStreams().containsKey(SLM_HISTORY_DATA_STREAM) == false &&
            metadata.templatesV2().containsKey(SLM_TEMPLATE_NAME) == false) {
            logger.error(new ParameterizedMessage("failed to index snapshot history item; data stream [{}] and template [{}] don't exist";
                SLM_HISTORY_DATA_STREAM; SLM_TEMPLATE_NAME));
            return;
        }
        try (XContentBuilder builder = XContentFactory.jsonBuilder()) {
            item.toXContent(builder; ToXContent.EMPTY_PARAMS);

 

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?