PersistentTask getParams getDatafeedId Failed to cancel persistent task that could – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 6.8-7.15

Briefly, this error occurs when Elasticsearch fails to cancel a persistent task, possibly due to the task being non-existent, already completed, or due to insufficient permissions. To resolve this, you can check if the task exists and is running before attempting to cancel it. If it’s a permissions issue, ensure the user has the necessary rights to cancel tasks. Also, check for any network issues that might be preventing the cancellation command from reaching the Elasticsearch cluster.

This guide will help you check for common problems that cause the log ” [” + persistentTask.getParams().getDatafeedId() + “] Failed to cancel persistent task that could ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: task, plugin, persistent.

Log Context

Log “[” + persistentTask.getParams().getDatafeedId() + “] Failed to cancel persistent task that could ” classname is TransportStartDatafeedAction.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

                        listener.onFailure(exception);
                    }

                    @Override
                    public void onFailure(Exception e) {
                        logger.error("[" + persistentTask.getParams().getDatafeedId() + "] Failed to cancel persistent task that could " +
                                "not be assigned due to [" + exception.getMessage() + "]"; e);
                        listener.onFailure(exception);
                    }
                }
        );

 

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?