-
Notifications
You must be signed in to change notification settings - Fork 263
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[docs](dbt)add dbt doc example #1403
Conversation
|
||
1. view | ||
|
||
2. table | ||
|
||
3. incremental | ||
|
||
**View** | ||
**View** | ||
|
||
使用`view`作为物化模式,在 Models 每次运行时都会通过 create view as 语句重新构建为视图。(默认情况下,dbt 的物化方式为 view) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
语句建议加行内代码
@@ -88,7 +88,7 @@ dbt-doris Materialization support three: | |||
2. table | |||
3. incremental | |||
|
|||
#### View | |||
#### View | |||
|
|||
Using `view` as the materialization, Models will be rebuilt as views each time they are run through the create view as statement. (By default, the materialization method of dbt is view) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
models will be rebuilt, model should be lowercase
@@ -236,7 +236,7 @@ The details of the above configuration items are as follows: | |||
|
|||
[`seed`](https://docs.getdbt.com/faqs/seeds/build-one-seed) is a functional module used to load data files such as csv. It is a way to load files into the library and participate in model building, but there are the following precautions: | |||
1. Seeds should not be used to load raw data (for example, large CSV exports from a production database). | |||
2. Since seeds are version controlled, they are best suited to files that contain business-specific logic, for example a list of country codes or user IDs of employees. | |||
2. Since seeds are version controlled, they are best suited to files that contain business-specific logic, for example a list of country codes or user IDs of employees. | |||
3. Loading CSVs using dbt's seed functionality is not performant for large files. Consider using `streamload` to load these CSVs into doris. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CSV(Comma-Separated Values). It is common to use "CSV files" or "CSV format" to refer to this file format instead of "CSVs".
request review @wangtianyi2004 |
Versions
Languages