1996fanrui commented on code in PR #741:
URL: 
https://github.com/apache/flink-kubernetes-operator/pull/741#discussion_r1448928730


##########
flink-autoscaler-standalone/src/main/java/org/apache/flink/autoscaler/standalone/config/AutoscalerStandaloneOptions.java:
##########
@@ -59,4 +64,47 @@ private static ConfigOptions.OptionBuilder 
autoscalerStandaloneConfig(String key
                     .withDeprecatedKeys("flinkClusterPort")
                     .withDescription(
                             "The port of flink cluster when the flink-cluster 
fetcher is used.");
+
+    public static final ConfigOption<StateStoreType> STATE_STORE_TYPE =
+            autoscalerStandaloneConfig("state-store.type")
+                    .enumType(StateStoreType.class)
+                    .defaultValue(StateStoreType.MEMORY)
+                    .withDescription("The autoscaler state store type.");

Review Comment:
   Emmm, I didn't list due to flink-kubernetes-operator doc will list 
automaticlly.
   
   You can take a look the generated html, it has all enums of 
`StateStoreType`. 
   
   And all old options have `Possible values:` as well.
   
   <img width="996" alt="图片" 
src="https://github.com/apache/flink-kubernetes-operator/assets/38427477/ba2fa8b5-dc0e-4bb1-8f8f-d493c61a9bab";>
   



-- 
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]

Reply via email to