Stopping watch service reason shutdown initiated – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 6.8-8.9

Briefly, this error occurs when Elasticsearch is in the process of shutting down, and as part of this process, it stops the watch service. The watch service is responsible for alerting and monitoring in Elasticsearch. This is a normal part of the shutdown process and not necessarily an error. However, if this happens unexpectedly, it could be due to issues like insufficient resources, configuration errors, or unhandled exceptions. To resolve this, ensure that Elasticsearch has enough resources, check your configurations, and monitor your logs for any exceptions or errors that could cause an unexpected shutdown.

This guide will help you check for common problems that cause the log ” stopping watch service; reason [shutdown initiated] ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: plugin.

Log Context

Log “stopping watch service; reason [shutdown initiated]” classname is WatcherService.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
*
* @param stoppedListener The listener that will set Watcher state to: {@link WatcherState#STOPPED}; may not be {@code null}
*/
void shutDown(Runnable stoppedListener) {
assert stoppedListener != null;
logger.info("stopping watch service; reason [shutdown initiated]");
executionService.pause(stoppedListener);
triggerService.stop();
stopExecutor();
}
* * @param stoppedListener The listener that will set Watcher state to: {@link WatcherState#STOPPED}; may not be {@code null} */ void shutDown(Runnable stoppedListener) { assert stoppedListener != null; logger.info("stopping watch service; reason [shutdown initiated]"); executionService.pause(stoppedListener); triggerService.stop(); stopExecutor(); }
     *
     * @param stoppedListener The listener that will set Watcher state to: {@link WatcherState#STOPPED}; may not be {@code null}
     */
    void shutDown(Runnable stoppedListener) {
        assert stoppedListener != null;
        logger.info("stopping watch service; reason [shutdown initiated]");
        executionService.pause(stoppedListener);
        triggerService.stop();
        stopExecutor();
    }

 

 [ratemypost]

Opster
Privacy Overview

This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.