timoninmaxim commented on code in PR #11248:
URL: https://github.com/apache/ignite/pull/11248#discussion_r1506070300
##########
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/wal/reader/StandaloneGridKernalContext.java:
##########
@@ -201,6 +204,7 @@ public StandaloneGridKernalContext(
rsrcProc = new GridResourceProcessor(this);
metricMgr = new GridMetricManager(this);
sysViewMgr = new GridSystemViewManager(this);
+ timeoutProc = new GridTimeoutProcessor(this);
Review Comment:
It looks like it doesn't start and stop. It leads that some metrics aren't
updating. See GridMetricManager#MetricsUpdater. Please add this component to
the `comps` collection.
##########
modules/core/src/main/java/org/apache/ignite/internal/cdc/CdcMain.java:
##########
@@ -416,6 +419,8 @@ private StandaloneGridKernalContext startStandaloneKernal()
throws IgniteChecked
startAllComponents(kctx);
+ kctx.metric().onKernalStart(true);
Review Comment:
Let's move it inside the `startAllComponents()`.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]