From 9625f98ee9c026a135357775d8fcb85f33b1fb99 Mon Sep 17 00:00:00 2001 From: marcosmarxm Date: Mon, 13 Jun 2022 22:04:39 -0300 Subject: [PATCH] update dbt version in custom normalization --- .../src/views/Connection/ConnectionForm/formConfig.tsx | 2 +- docs/understanding-airbyte/operations.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/airbyte-webapp/src/views/Connection/ConnectionForm/formConfig.tsx b/airbyte-webapp/src/views/Connection/ConnectionForm/formConfig.tsx index 781f87884d6ca..6b1f790df46b0 100644 --- a/airbyte-webapp/src/views/Connection/ConnectionForm/formConfig.tsx +++ b/airbyte-webapp/src/views/Connection/ConnectionForm/formConfig.tsx @@ -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", }, }, diff --git a/docs/understanding-airbyte/operations.md b/docs/understanding-airbyte/operations.md index 0e8cb909765b8..f3839499e39b6 100644 --- a/docs/understanding-airbyte/operations.md +++ b/docs/understanding-airbyte/operations.md @@ -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\).