dianfu commented on code in PR #27395:
URL: https://github.com/apache/flink/pull/27395#discussion_r2703147258
##########
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_max_concurrent_operations = 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_retry_max_attempts = 9; // Maximum number of retry attempts
+ int64 async_retry_delay_ms = 10; // Delay between retries in milliseconds
Review Comment:
Sounds a good idea. 👍
--
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]