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

Opster Team

Aug-23, Version: 7.5-7.1

Briefly, this error occurs when Elasticsearch fails to cancel a persistent task due to issues like incorrect task ID, insufficient permissions, or network connectivity problems. To resolve this, you can verify the task ID and ensure it’s correct. Also, check the user permissions to ensure they have the right to cancel tasks. Lastly, ensure there’s stable network connectivity between the nodes.

This guide will help you check for common problems that cause the log ” [” + persistentTask.getParams().getId() + “] 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: plugin, persistent, task.

Log Context

Log “[” + persistentTask.getParams().getId() + “] Failed to cancel persistent task that could ” classname is TransportStartDataFrameAnalyticsAction.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().getId() + "] 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?