Cannot start task for transform because state was – How to solve this Elasticsearch exception

Opster Team

August-23, Version: 7.5-8.9

Briefly, this error occurs when you try to start a data transformation task in Elasticsearch, but the task is in an incompatible state. This could be due to the task already running, failed, or stopped. To resolve this issue, you can check the task’s current state using the Get Transform API. If it’s running, wait for it to finish. If it’s failed, investigate the cause of the failure. If it’s stopped, you may need to restart it using the Start Transform API. Always ensure that the task is in a state that allows it to be started.

This guide will help you check for common problems that cause the log ” Cannot start task for transform [{}]; because state was [{}] ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: plugin, task.

Log Context

Log “Cannot start task for transform [{}]; because state was [{}]” class name is TransformTask.java. We extracted the following from Elasticsearch source code for those seeking an in-depth context :

 return;
 }
 final IndexerState newState = getIndexer().start();
 if (Arrays.stream(RUNNING_STATES).noneMatch(newState::equals)) {
 listener.onFailure(
 new ElasticsearchException("Cannot start task for transform [{}]; because state was [{}]"; transform.getId(); newState)
 );
 return;
 }
 context.resetTaskState();

 

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?