mxm commented on code in PR #547:
URL:
https://github.com/apache/flink-kubernetes-operator/pull/547#discussion_r1127753735
##########
flink-kubernetes-operator-autoscaler/src/main/java/org/apache/flink/kubernetes/operator/autoscaler/AutoScalerInfo.java:
##########
@@ -119,7 +127,7 @@ public Map<JobVertexID, SortedMap<Instant, ScalingSummary>>
getScalingHistory()
if (scalingHistory != null) {
return scalingHistory;
}
- var yaml = configMap.getData().get(SCALING_HISTORY_KEY);
+ var yaml = decompress(configMap.getData().get(SCALING_HISTORY_KEY));
Review Comment:
Does that mean all existing ConfigMaps have to be deleted? Could we somehow
achieve a graceful migration?
--
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]