Failed to get datafeed stats to include in ML usage – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 7.17-8.9

Briefly, this error occurs when Elasticsearch Machine Learning (ML) fails to retrieve datafeed statistics for inclusion in ML usage. This could be due to issues with the ML datafeed, such as incorrect configuration, or problems with the underlying data. To resolve this, you could check the configuration of your ML datafeed, ensure that the data it’s supposed to fetch is available and correctly formatted, and verify that your Elasticsearch cluster has sufficient resources to handle the datafeed. Additionally, checking the Elasticsearch logs may provide more detailed information about the cause of the error.

This guide will help you check for common problems that cause the log ” Failed to get datafeed stats to include in ML usage ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: plugin.

Log Context

Log “Failed to get datafeed stats to include in ML usage” classname is MachineLearningUsageTransportAction.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

        dataframeAnalyticsStatsRequest.setPageParams(new PageParams(0; 10_000));
        ActionListener datafeedStatsListener = ActionListener.wrap(response -> {
            addDatafeedsUsage(response; datafeedsUsage);
            client.execute(GetDataFrameAnalyticsStatsAction.INSTANCE; dataframeAnalyticsStatsRequest; dataframeAnalyticsStatsListener);
        }; e -> {
            logger.warn("Failed to get datafeed stats to include in ML usage"; e);
            client.execute(GetDataFrameAnalyticsStatsAction.INSTANCE; dataframeAnalyticsStatsRequest; dataframeAnalyticsStatsListener);
        });

        // Step 1. Extract usage from jobs stats and then request stats for all datafeeds
        GetDatafeedsStatsAction.Request datafeedStatsRequest = new GetDatafeedsStatsAction.Request(Metadata.ALL);

 

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?