sanpwc commented on code in PR #1968:
URL: https://github.com/apache/ignite-3/pull/1968#discussion_r1180065996
##########
modules/distribution-zones/src/main/java/org/apache/ignite/internal/distributionzones/configuration/DistributionZoneConfigurationSchema.java:
##########
@@ -68,12 +69,12 @@ public class DistributionZoneConfigurationSchema {
/** Timeout in seconds between node added topology event itself and data
nodes switch. */
@Range(min = 0)
@Value(hasDefault = true)
- public int dataNodesAutoAdjustScaleUp = INFINITE_TIMER_VALUE;
+ public int dataNodesAutoAdjustScaleUp = IMMEDIATE_TIMER_VALUE;
/** Timeout in seconds between node left topology event itself and data
nodes switch. */
@Range(min = 0)
@Value(hasDefault = true)
- public int dataNodesAutoAdjustScaleDown = INFINITE_TIMER_VALUE;
+ public int dataNodesAutoAdjustScaleDown = IMMEDIATE_TIMER_VALUE;
Review Comment:
Scale down should still be infinite by default. And we should adjust this
value in test where needed.
--
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]