Not rescheduling request for cluster coordination info because this node is being shutdown – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 8.4-8.9

Briefly, this error occurs when an Elasticsearch node is in the process of shutting down and it cannot reschedule a request for cluster coordination information. This is a normal behavior during a node shutdown and usually doesn’t indicate a problem. However, if this error is causing issues, you can try to resolve it by ensuring that the node is properly shut down before making any requests. Alternatively, you can also try to redirect your requests to another node in the cluster that is not being shut down.

This guide will help you check for common problems that cause the log ” Not rescheduling request for cluster coordination info because this node is being shutdown ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: cluster, node, request.

Log Context

Log “Not rescheduling request for cluster coordination info because this node is being shutdown” classname is CoordinationDiagnosticsService.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

                        )
                    )
                );
            } catch (EsRejectedExecutionException e) {
                if (e.isExecutorShutdown()) {
                    logger.trace("Not rescheduling request for cluster coordination info because this node is being shutdown"; e);
                } else {
                    throw e;
                }
            }
        });

 

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?