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

DBT project for Airbyte normalization #802

Merged
merged 21 commits into from
Nov 6, 2020
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
bad20b2
Start DBT module for running normalization transformations
ChristopheDuong Nov 4, 2020
cf7b921
Generates DBT models from JSON Schema catalog
ChristopheDuong Nov 4, 2020
bb5f6eb
Add Doc on how to run transformation of catalog
ChristopheDuong Nov 4, 2020
ec8f803
Make generated DBT SQL cross db compatible
ChristopheDuong Nov 4, 2020
7693d5c
Tweaks from review
ChristopheDuong Nov 4, 2020
f02d70d
turn on basic normalization for data warehouses
cgardens Nov 4, 2020
f5d1ec9
Merge remote-tracking branch 'origin/master' into normalization
ChristopheDuong Nov 5, 2020
8bbb4c9
Hook up dbt normalization
ChristopheDuong Nov 5, 2020
eebc286
Merge remote-tracking branch 'origin/cgardens/turn_on_normalization' …
ChristopheDuong Nov 5, 2020
9a2c8c9
Connect normalization pieces together
ChristopheDuong Nov 5, 2020
a44b52c
Exclude spotless from DBT folders
ChristopheDuong Nov 5, 2020
1ad010a
Add placeholder adapter functions for postgres flavor of sql
ChristopheDuong Nov 5, 2020
08b063c
Correct some snowflakes specifities
ChristopheDuong Nov 5, 2020
c9c6fe4
pull from master
sherifnada Nov 6, 2020
73ce71b
merge master part 2
sherifnada Nov 6, 2020
56aa32e
Merge branch 'master' of github.com:airbytehq/airbyte into chris/dbt
sherifnada Nov 6, 2020
3a18856
Postgres normalization (#831)
sherifnada Nov 6, 2020
05d422f
Changes from code reviews
ChristopheDuong Nov 6, 2020
fb32f13
Handle Quoting in generated SQL so it can be configured as needed per…
ChristopheDuong Nov 6, 2020
e6cc9b1
Check if items is in dict before accessing it
ChristopheDuong Nov 6, 2020
9904b29
It works on snowflake!!
ChristopheDuong Nov 6, 2020
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ __pycache__
.venv
.mypy_cache

# dbt
airbyte-integrations/bases/base-normalization/normalization/dbt-transform/logs/
airbyte-integrations/bases/base-normalization/normalization/dbt-transform/models/generated
Loading