]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commit
mgr: avoid false alarm of MGR_MODULE_ERROR 35760/head
authorKefu Chai <kchai@redhat.com>
Thu, 25 Jun 2020 02:41:30 +0000 (10:41 +0800)
committerKefu Chai <kchai@redhat.com>
Thu, 25 Jun 2020 04:02:47 +0000 (12:02 +0800)
commit2d9b3abd1fc50e5fcd9ce2c05e8fac41d389b052
tree904c56db45cccaa95ff524f51339b4c89b576fa3
parent410f06dd0c69cf1e68c871ccf69cbab844e3a0f9
mgr: avoid false alarm of MGR_MODULE_ERROR

mgr sends healthy report periodically, the report includes the
information whether the always-on modules are loaded or not. but the
modules are loaded with two steps:

1. load the options and command exposed by modules. the options and
   commands are registered using static methods of the subclasss of
   MgrModule.
2. create an instance of the subclass of MgrModule. this is performed
   in background by a Finisher thread. upon finishing of the construction
   of the instance, ActivePyModules::start_one() adds the module which
   successfully creates the class to `modules`.

but there is chance that when mgr sends healthy report, the always-on
module is still creating its instance of MgrModule subclass, or that
task is still pending in the finisher thread. in that case, mgr would
add a false error message like
```
4 mgr modules have failed (MGR_MODULE_ERROR)
```
in the healthy report

in this change, the number of modules in pending state is tracked,
and mgr will not take the missing always-on modules into account unless
the number of pending modules is 0.

Signed-off-by: Kefu Chai <kchai@redhat.com>
src/mgr/ActivePyModules.cc
src/mgr/ActivePyModules.h
src/mgr/PyModuleRegistry.cc