This is an automated email from the ASF dual-hosted git repository.
gyfora pushed a change to branch release-1.16
in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git
from f4f45824 [FLINK-40402] Harden job artifact fetching against slow-host
reconcile-thread exhaustion (#1186)
new 8ad105d5 [FLINK-38290][operator] Keep terminal job state when job is
not found
new 1cd4f1d2 [FLINK-40465] Add version-independent classes to parse job
config (#1193)
new 17a29a75 [FLINK-40474] Autoscaler parallelism overrides serialized in
the operator's YAML dialect break job submission for Flink 1.x jobs (#1195)
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:
.../autoscaler-parallelism-pipeline.svg | 2 +-
.../jdbc/state/JdbcAutoScalerStateStore.java | 2 +-
.../flink/autoscaler/tuning/ConfigChanges.java | 3 +-
.../flink/autoscaler/tuning/ConfigChangesTest.java | 61 +++++
.../autoscaler/KubernetesScalingRealizer.java | 43 +++-
.../state/KubernetesAutoScalerStateStore.java | 2 +-
.../operator/observer/JobStatusObserver.java | 30 ++-
.../flink/runtime/rest/messages/JobConfigInfo.java | 260 +++++++++++++++++++++
.../autoscaler/KubernetesScalingRealizerTest.java | 56 +++++
.../state/KubernetesAutoScalerStateStoreTest.java | 19 ++
.../operator/observer/JobStatusObserverTest.java | 89 ++++++-
.../operator/service/AbstractFlinkServiceTest.java | 121 +++-------
.../runtime/rest/messages/JobConfigInfoTest.java | 136 +++++++++++
13 files changed, 710 insertions(+), 114 deletions(-)
create mode 100644
flink-autoscaler/src/test/java/org/apache/flink/autoscaler/tuning/ConfigChangesTest.java
create mode 100644
flink-kubernetes-operator/src/main/java/org/apache/flink/runtime/rest/messages/JobConfigInfo.java
create mode 100644
flink-kubernetes-operator/src/test/java/org/apache/flink/runtime/rest/messages/JobConfigInfoTest.java