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


##########
flink-models/flink-model-triton/src/main/java/org/apache/flink/model/triton/TritonOptions.java:
##########
@@ -165,4 +165,89 @@ private TritonOptions() {
                                                     + "Example: %s",
                                             
code("'X-Custom-Header:value,X-Another:value2'"))
                                     .build());
+
+    // ========== Connection Pool Management Options ==========
+
+    public static final ConfigOption<Integer> CONNECTION_POOL_MAX_IDLE =
+            ConfigOptions.key("connection-pool-max-idle")
+                    .intType()
+                    .defaultValue(20)
+                    .withDescription(
+                            Description.builder()
+                                    .text(
+                                            "Maximum number of idle 
connections to keep in the pool. "
+                                                    + "Higher values reduce 
connection setup overhead but consume more memory. "
+                                                    + "Recommended: 10-50 
depending on parallelism and QPS. "

Review Comment:
   what is QPS?



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