[dbt] Separate the docs for dbt. Include a new section in MVs to cover the new target table setting#5475
Merged
koletzilla merged 10 commits intomainfrom Feb 12, 2026
Merged
Conversation
…new target functionality. Fix some links.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
3 Skipped Deployments
|
koletzilla
commented
Feb 9, 2026
dhtclk
approved these changes
Feb 9, 2026
| slug: /integrations/dbt/features-and-configurations | ||
| sidebar_position: 2 | ||
| description: 'Features for using dbt with ClickHouse' | ||
| description: 'Description of the features and general configurations available' |
Contributor
There was a problem hiding this comment.
Suggested change
| description: 'Description of the features and general configurations available' | |
| description: 'Description of the features and general configurations available in the dbt-clickhouse adapter' |
Contributor
BentsiLeviav
left a comment
There was a problem hiding this comment.
@koletzilla Have you encountered any execptions a long the way that are worth mentioning in a dedicated troubleshooting section for the MV materialization?
I know we mentioned some of the errors that might arise, but would it be worth creating a dedicated section? something for instance (but not necessarily):
## Troubleshooting
**"Target has changed" error**
- Cause: Changed `materialization_target_table()` reference without `--full-refresh`
- Fix: Run `dbt run --full-refresh -s your_model`
**Orphaned MV warning after rename**
- Cause: Renamed MV in multi-MV model
- Fix: Manually `DROP TABLE old_mv_name`
**Empty target table after `--full-refresh`**
- Cause: Using `catchup=False` or MVs still recreating
- Fix: Wait for MV recreation or set `catchup=True`
…e` to `mv_on_schema_change` for new mvs. New section for "Common operations"
Contributor
Author
|
talked offline: we'll add it in next PRs |
BentsiLeviav
approved these changes
Feb 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Full context on this feature: ClickHouse/dbt-clickhouse#582
Closes ClickHouse/dbt-clickhouse#561