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
| ENV | DT_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.
+
+
+| Type | integer |
+| Default | 60000 |
+| ENV | DT_DATASOURCE_QUERY_TIMEOUT_MS |
+
+
**`dt.datasource.url`** * [¶](#dtdatasourceurl){ .headerlink }
Defines the JDBC URL to use for the default data source.