From 899f9a1586015a63848b2ad0d279fabbc16a8f3c Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Tue, 16 Jun 2026 21:32:47 +0000 Subject: [PATCH] docs: document reuse_connections profile option for dbt-clickhouse --- .../data-ingestion/etl-tools/dbt/features-and-configurations.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/integrations/connectors/data-ingestion/etl-tools/dbt/features-and-configurations.mdx b/integrations/connectors/data-ingestion/etl-tools/dbt/features-and-configurations.mdx index bbe894dd4..5924a22ba 100644 --- a/integrations/connectors/data-ingestion/etl-tools/dbt/features-and-configurations.mdx +++ b/integrations/connectors/data-ingestion/etl-tools/dbt/features-and-configurations.mdx @@ -47,6 +47,7 @@ your_profile_name: local_db_prefix: [] # Database prefix of local tables on shards for distributed materializations. If empty, it uses the same database as the distributed table. allow_automatic_deduplication: [False] # Enable ClickHouse automatic deduplication for Replicated tables tcp_keepalive: [False] # Native client only, specify TCP keepalive configuration. Specify custom keepalive settings as [idle_time_sec, interval_sec, probes]. + reuse_connections: [True] # Re-use the same connection across models. Set to `False` to close the connection at the end of each model — useful on multi-replica ClickHouse Cloud services where the load balancer routes by TCP connection. custom_settings: [{}] # A dictionary/mapping of custom ClickHouse settings for the connection - default is empty. database_engine: '' # Database engine to use when creating new ClickHouse schemas (databases). If not set (the default), new databases will use the default ClickHouse database engine (usually Atomic). threads: [1] # Number of threads to use when running queries. Before setting it to a number higher than 1, make sure to read the [read-after-write consistency](#read-after-write-consistency) section.