Failed to get data frame analytics configs 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 is unable to retrieve the data frame analytics configurations for Machine Learning usage. This could be due to issues with the ML settings, insufficient permissions, or network connectivity problems. To resolve this, ensure that the ML settings are correctly configured, the user has the necessary permissions to access the data frame analytics configurations, and the network connection to the Elasticsearch cluster is stable. Also, check if the Elasticsearch cluster is running and accessible.

This guide will help you check for common problems that cause the log ” Failed to get data frame analytics configs 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 data frame analytics configs to include in ML usage” classname is MachineLearningUsageTransportAction.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

        // Step 4. Extract usage from data frame analytics configs and then get inference usage
        ActionListener dataframeAnalyticsListener = ActionListener.wrap(response -> {
            addDataFrameAnalyticsUsage(response; analyticsUsage);
            addInferenceUsage(inferenceUsageListener);
        }; e -> {
            logger.warn("Failed to get data frame analytics configs to include in ML usage"; e);
            addInferenceUsage(inferenceUsageListener);
        });

        // Step 3. Extract usage from data frame analytics stats and then request data frame analytics configs
        GetDataFrameAnalyticsAction.Request getDfaRequest = new GetDataFrameAnalyticsAction.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?