]> git.apps.os.sepia.ceph.com Git - ceph.git/commit
mgr: avoid false alarm of MGR_MODULE_ERROR 38069/head
authorKefu Chai <kchai@redhat.com>
Thu, 25 Jun 2020 02:41:30 +0000 (10:41 +0800)
committerNathan Cutler <ncutler@suse.com>
Fri, 13 Nov 2020 21:48:16 +0000 (22:48 +0100)
commit42fbaf6543a20874e70127a619002fec545099d5
tree1bf8c8f57f09f1cbb34c9fc2bf8b3c35882b0416
parenta36cefadb002779ef0a43f9f331c1b5cc4c193df
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>
(cherry picked from commit 2d9b3abd1fc50e5fcd9ce2c05e8fac41d389b052)
src/mgr/ActivePyModules.cc
src/mgr/ActivePyModules.h
src/mgr/PyModuleRegistry.cc