mxm commented on code in PR #875:
URL: 
https://github.com/apache/flink-kubernetes-operator/pull/875#discussion_r1748198301


##########
flink-autoscaler/src/main/java/org/apache/flink/autoscaler/config/AutoScalerOptions.java:
##########
@@ -102,13 +102,20 @@ private static ConfigOptions.OptionBuilder 
autoScalerConfig(String key) {
                     
.withFallbackKeys(oldOperatorConfigKey("target.utilization.boundary"))
                     .withDescription(
                             "Target vertex utilization boundary. Scaling won't 
be performed if the processing capacity is within [target_rate / 
(target_utilization - boundary), (target_rate / (target_utilization + 
boundary)]");
-    public static final ConfigOption<Duration> SCALE_UP_GRACE_PERIOD =
-            autoScalerConfig("scale-up.grace-period")
+
+    public static final ConfigOption<Duration> SCALE_DOWN_INTERVAL =
+            autoScalerConfig("scale-down.interval")
                     .durationType()
                     .defaultValue(Duration.ofHours(1))
-                    
.withFallbackKeys(oldOperatorConfigKey("scale-up.grace-period"))
+                    
.withDeprecatedKeys(autoScalerConfigKey("scale-up.grace-period"))

Review Comment:
   Thanks for adding this as a deprecated key for existing users!



-- 
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: issues-unsubscr...@flink.apache.org

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

Reply via email to