Skip to content

Commit 8836529

Browse files
committed
Added the issue reference to the correct place
1 parent 54583ca commit 8836529

File tree

1 file changed

+1
-1
lines changed
  • docs/integrations/data-ingestion/etl-tools/dbt

1 file changed

+1
-1
lines changed

docs/integrations/data-ingestion/etl-tools/dbt/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ If you encounter issues connecting to ClickHouse from dbt, make sure the followi
139139
The current ClickHouse adapter for dbt has several limitations users should be aware of:
140140

141141
- The plugin uses syntax that requires ClickHouse version 25.3 or newer. We do not test older versions of Clickhouse. We also do not currently test Replicated tables.
142-
- Different runs of the `dbt-adapter` may collide if they are run at the same time as internally they can use the same table names for the same operations.
142+
- Different runs of the `dbt-adapter` may collide if they are run at the same time as internally they can use the same table names for the same operations. For more information, check the issue [#420](https://github.com/ClickHouse/dbt-clickhouse/issues/420).
143143
- The adapter currently materializes models as tables using an `INSERT TO SELECT`. This effectively means data duplication. Very large datasets (PB) can result in extremely long run times, making some models unviable. Aim to minimize the number of rows returned by any query, utilizing GROUP BY where possible. Prefer models which summarize data over those which simply perform a transform whilst maintaining row counts of the source.
144144
- To use Distributed tables to represent a model, users must create the underlying replicated tables on each node manually. The Distributed table can, in turn, be created on top of these. The adapter does not manage cluster creation.
145145
- When dbt creates a relation (table/view) in a database, it usually creates it as: `{{ database }}.{{ schema }}.{{ table/view id }}`. ClickHouse has no notion of schemas. The adapter therefore uses `{{schema}}.{{ table/view id }}`, where `schema` is the ClickHouse database.

0 commit comments

Comments
 (0)