Rollup index not found during rollup search. – How to solve related issues

Opster Team

Jan-20, Version: 1.7-8.0

Before you begin reading this guide, we recommend you run Elasticsearch Error Check-Up which analyzes 2 JSON files to detect many errors.

Briefly, this error message indicates that Elasticsearch is unable to find a rollup index during a rollup search operation. This could be due to various reasons such as the rollup index being deleted, or due to a problem with the Elasticsearch cluster. To resolve this issue, you can try checking the Elasticsearch logs for more information on the root cause of the error and then take the necessary steps to address the issue. If the rollup index has been deleted, you can try restoring it from a backup.

To easily locate the root cause and resolve this issue try AutoOps for Elasticsearch & OpenSearch. It diagnoses problems by analyzing hundreds of metrics collected by a lightweight agent and offers guidance for resolving them. Take a self-guided product tour to see for yourself (no registration required).

This guide will help you check for common problems that cause the log ” Rollup index not found during rollup search. ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: index, plugin, response and search.

Log Context

Log “Rollup index not found during rollup search.” classname is RollupResponseTranslator.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

                     if (item.isFailure()) {
                        Exception e = item.getFailure();
                        // If we have a normal response we can tolerate a missing rollup response; although it theoretically
                        // should be handled by a different code path (verifyResponse)
                        if (e instanceof IndexNotFoundException) {
                            logger.warn("Rollup index not found during rollup search."; e);
                        } else {
                            throw new RuntimeException(item.getFailureMessage(); item.getFailure());
                        }
                        return null;
                    } else {




 

Watch product tour

Try AutoOps to find & fix Elasticsearch problems

Analyze Your Cluster
Skip to content