anishgirianish commented on code in PR #62343:
URL: https://github.com/apache/airflow/pull/62343#discussion_r3316033055


##########
airflow-core/src/airflow/config_templates/config.yml:
##########
@@ -2699,6 +2699,42 @@ scheduler:
       type: boolean
       example: ~
       default: "False"
+connection_test:
+  description: |
+    Configuration for the deferred connection-test workflow that dispatches
+    test requests to workers via the executor (instead of running them
+    in-process on the API server).
+  options:
+    timeout:
+      description: |
+        Maximum number of seconds a worker-dispatched connection test is
+        allowed to run before it is considered timed out. The scheduler
+        reaper uses this value plus a grace period to mark stale tests as
+        failed.
+      version_added: 3.3.0
+      type: integer
+      example: ~
+      default: "60"
+    max_concurrency:
+      description: |
+        Maximum number of connection tests that can be active
+        (QUEUED + RUNNING) at the same time. Excess tests will remain in
+        PENDING state until slots become available. With N HA schedulers and
+        the dispatch lock seeded by the migration, this is enforced as a

Review Comment:
   Updated thanks



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