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

Opster Team

Aug-23, Version: 6.8-7.1

Briefly, this error occurs when Elasticsearch fails to cancel a persistent task due to an issue with the task parameters, specifically the job ID. This could be due to a non-existent job ID, a network issue, or a problem with the task management system. To resolve this, you can try to manually cancel the task using the task management API, ensure the job ID is correct, or check the network connectivity. If the problem persists, consider restarting the Elasticsearch node or cluster to refresh the task management system.

This guide will help you check for common problems that cause the log ” [” + persistentTask.getParams().getJobId() + “] 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().getJobId() + “] Failed to cancel persistent task that could ” classname is TransportOpenJobAction.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().getJobId() + "] 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?