This is an automated email from the ASF dual-hosted git repository. fanrui pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git
from 66f7b42f [FLINK-36836][Autoscaler] Supports config the upper and lower limits of target utilization (#921) new 6c6c44e7 [hotfix] Refactor autoscaler related `setClock` to optimize testing new 6e16bac0 [FLINK-36863][autoscaler] Use the maximum parallelism in the past scale-down.interval window when scaling down new cd55bdc7 [FLINK-36863][autoscaler] Add the end-to-end test for delayed scale down The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../apache/flink/autoscaler/DelayedScaleDown.java | 104 ++- .../apache/flink/autoscaler/JobAutoScalerImpl.java | 2 + .../apache/flink/autoscaler/JobVertexScaler.java | 77 ++- .../apache/flink/autoscaler/ScalingExecutor.java | 57 +- .../flink/autoscaler/BacklogBasedScalingTest.java | 1 - .../autoscaler/DelayedScaleDownEndToEndTest.java | 724 +++++++++++++++++++++ .../flink/autoscaler/DelayedScaleDownTest.java | 173 ++++- .../flink/autoscaler/JobVertexScalerTest.java | 52 +- .../autoscaler/RecommendedParallelismTest.java | 1 - .../flink/autoscaler/ScalingExecutorTest.java | 319 +++++---- .../state/AbstractAutoScalerStateStoreTest.java | 5 +- 11 files changed, 1276 insertions(+), 239 deletions(-) create mode 100644 flink-autoscaler/src/test/java/org/apache/flink/autoscaler/DelayedScaleDownEndToEndTest.java