From cbe1fb788221acc20298dd5713bcf0c9c67790b8 Mon Sep 17 00:00:00 2001 From: dependencytrack-bot <106437498+dependencytrack-bot@users.noreply.github.com> Date: Mon, 17 Aug 2026 13:30:54 +0000 Subject: [PATCH] Update config docs Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- docs/reference/configuration/properties.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/reference/configuration/properties.md b/docs/reference/configuration/properties.md index e4e051b..453f721 100644 --- a/docs/reference/configuration/properties.md +++ b/docs/reference/configuration/properties.md @@ -378,6 +378,16 @@ Defines the minimum number of idle connections in the pool for the default data ENVDT_DATASOURCE_POOL_MIN_IDLE +**`dt.datasource.query-timeout-ms`** [¶](#dtdatasourcequery-timeout-ms){ .headerlink } + +Defines the maximum time in milliseconds any single database query may run before it is aborted.

Acts as a guardrail against runaway queries occupying a connection indefinitely, which can otherwise exhaust the connection pool.

Note that the timeout is not enforced for work that may legitimately exceed query timeouts, such as database migrations and portfolio-wide metrics refreshes.

Set to `0` to disable query timeouts entirely. + + + + + +
Typeinteger
Default60000
ENVDT_DATASOURCE_QUERY_TIMEOUT_MS
+ **`dt.datasource.url`** * [¶](#dtdatasourceurl){ .headerlink } Defines the JDBC URL to use for the default data source.