Skip to content
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

Update dbt version in custom normalization #13742

Merged
merged 1 commit into from
Jun 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function useDefaultTransformation(): OperationCreate {
operatorType: OperatorType.dbt,
dbt: {
gitRepoUrl: "", // TODO: Does this need a value?
dockerImage: "fishtownanalytics/dbt:0.19.1",
dockerImage: "fishtownanalytics/dbt:1.0.0",
dbtArguments: "run",
},
},
Expand Down
2 changes: 1 addition & 1 deletion docs/understanding-airbyte/operations.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ The name of the branch to use when cloning the git repository. If left empty, gi

A Docker image and tag to run dbt commands from. The Docker image should have `/bin/bash` and `dbt` installed for this operation type to work.

A typical value for this field would be for example: `fishtownanalytics/dbt:0.19.1` from [dbt dockerhub](https://hub.docker.com/r/fishtownanalytics/dbt/tags?page=1&ordering=last_updated).
A typical value for this field would be for example: `fishtownanalytics/dbt:1.0.0` from [dbt dockerhub](https://hub.docker.com/r/fishtownanalytics/dbt/tags?page=1&ordering=last_updated).

This field lets you configure the version of dbt that your custom dbt project requires and the loading of additional software and packages necessary for your transformations \(other than your dbt `packages.yml` file\).

Expand Down