davidradl commented on code in PR #27395:
URL: https://github.com/apache/flink/pull/27395#discussion_r2681467295


##########
flink-python/pyflink/proto/flink-fn-execution.proto:
##########
@@ -71,6 +71,13 @@ message UserDefinedFunctions {
   repeated OverWindow windows = 3;
   bool profile_enabled = 4;
   repeated JobParameter job_parameters = 5;
+  // Async execution configuration for async scalar functions
+  int32 async_buffer_capacity = 6;  // Max number of concurrent async 
operations
+  int64 async_timeout_ms = 7;  // Timeout in milliseconds for async operations
+  // Async retry strategy configuration
+  bool async_retry_enabled = 8;  // Whether retry is enabled
+  int32 async_max_attempts = 9;  // Maximum number of retry attempts

Review Comment:
   I suggest including retry in the name to be consistent with the other 
variables. `async_max_retry_attempts`



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