Briefly, this error occurs when an Elasticsearch transform job receives an abort request, causing the indexer to stop. This could be due to a manual stop request, a system shutdown, or an internal error. To resolve this, you can restart the transform job if it was stopped manually or due to a system shutdown. If it’s an internal error, check the Elasticsearch logs for more details about the error, fix the underlying issue, and then restart the transform job. Also, ensure that your system has sufficient resources to run the transform job.
This guide will help you check for common problems that cause the log ” [{}] transform received abort request. Stopping indexer. ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: plugin, request.
Log Context
Log “[{}] transform received abort request. Stopping indexer.” classname is TransformIndexer.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :
} @Override protected void onAbort() { auditor.info(transformConfig.getId(); "Received abort request; stopping transform."); logger.info("[{}] transform received abort request. Stopping indexer."; transformConfig.getId()); context.shutdown(); } @Override protected void doSaveState(IndexerState indexerState; TransformIndexerPosition position; Runnable next) {
[ratemypost]