You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ignite.apache.org by GitBox <gi...@apache.org> on 2021/09/28 15:35:55 UTC

[GitHub] [ignite] Berkof commented on a change in pull request #9318: IGNITE-15267 statistics obsolescence on server nodes only

Berkof commented on a change in pull request #9318:
URL: https://github.com/apache/ignite/pull/9318#discussion_r717704707



##########
File path: modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/stat/IgniteStatisticsConfigurationManager.java
##########
@@ -101,6 +102,9 @@
     /** Started flag (used to skip updates of the distributed metastorage on start). */
     private volatile boolean started;
 
+    /** Active flag (used to skip commands in inactive cluster.) */

Review comment:
       State check removed.

##########
File path: modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/stat/IgniteStatisticsConfigurationManager.java
##########
@@ -667,6 +716,12 @@ private void onChangeStatisticConfiguration(
         StatisticsObjectConfiguration oldCfg,
         StatisticsObjectConfiguration newCfg
     ) {
+        if (!active) {

Review comment:
       State check removed.




-- 
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: notifications-unsubscribe@ignite.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org