opensearch-project/OpenSearch

[BUG] optional plugin dependency still leads to warning if dependent plugin is not present

Fechada

#21.322 aberto em 22 de abr. de 2026

 (6 comentários) (0 reação) (1 responsável)Java (1.505 forks)batch import
Pluginsbuggood first issue

Métricas do repositório

Stars
 (8.123 estrelas)
Métricas de merge de PR
 (Mesclagem média 5d 9h) (266 fundiu PRs em 30d)

Description

Describe the bug

if a plugin is installed which has an optional dependency on another plugin the following warning is nevertheless printed on startup:

{"type": "server", "timestamp": "2026-04-22T13:53:24,973+0000", "level": "WARN", "component": "o.o.p.PluginsService", "cluster.name": "test-opensearch", "node.name": "test-opensearch-0", "message": "Missing plugin [workload-management], dependency of [opensearch-security]" }
{"type": "server", "timestamp": "2026-04-22T13:53:24,973+0000", "level": "WARN", "component": "o.o.p.PluginsService", "cluster.name": "test-opensearch", "node.name": "test-opensearch-0", "message": "Some features of this plugin may not function without the dependencies being installed.\n" }

Related component

Plugins

To Reproduce

  1. use the minimal distribution of OpenSearch
  2. install the security plugin
  3. install the demo configuration for the security plugin (or provide your own configuration)
  4. start the cluster

Expected behavior

since it is only an optional dependency it mustn't lead to a warning: the plugin authors (in this case of security) explicitly flagged it as optional, i.e. they deliberately wrote their code so that it can run without it. there is nothing wrong with this setup.

Additional Details

Plugins security

Screenshots n/a

Host/Environment (please complete the following information):

  • OS: linux
  • Version OpenSearch 3.6.0

Additional context the security plugin defines their dependency here: https://github.com/opensearch-project/security/blob/48934186b6dcf3705b58a0d217745d298b484821/build.gradle#L398

Guia do colaborador