Loaded sites – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 1.7-1.7

Briefly, this error occurs when Elasticsearch tries to load a plugin but fails due to issues like incorrect plugin configuration, incompatible plugin version, or missing plugin files. To resolve this, ensure the plugin is compatible with your Elasticsearch version, check the plugin’s configuration settings, and verify that all necessary plugin files are present and correctly located. If the issue persists, consider reinstalling the plugin or contacting the plugin’s developer for further assistance.

This guide will help you check for common problems that cause the log ” loaded {}; sites {} ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: plugins.

Log Context

Log “loaded {}; sites {}” classname is PluginsService.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

             if (!missingPlugins.isEmpty()) {
                throw new ElasticsearchException("Missing mandatory plugins [" + Strings.collectionToDelimitedString(missingPlugins; "; ") + "]");
            }
        }

        logger.info("loaded {}; sites {}"; jvmPlugins.keySet(); sitePlugins);

        MapBuilder> onModuleReferences = MapBuilder.newMapBuilder();
        for (Plugin plugin : jvmPlugins.values()) {
            List list = Lists.newArrayList();
            for (Method method : plugin.getClass().getDeclaredMethods()) {




 

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?