dbt-selly/dbt_project.yml

64 lines
2.2 KiB
YAML
Raw Normal View History

2022-03-22 04:03:52 +00:00
# This file is necessary to install dbt-utils with dbt deps
# the content will be overwritten by the transform function
# Name your package! Package names should contain only lowercase characters
# and underscores. A good package name should reflect your organization's
# name or the intended use of these models
2022-04-13 07:06:23 +00:00
name: "airbyte_utils"
version: "1.0"
2022-03-22 04:03:52 +00:00
config-version: 2
# This setting configures which "profile" dbt uses for this project. Profiles contain
# database connection information, and should be configured in the ~/.dbt/profiles.yml file
2022-04-13 07:06:23 +00:00
profile: "normalize"
2022-03-22 04:03:52 +00:00
# These configurations specify where dbt should look for different types of files.
2022-04-13 07:06:23 +00:00
# The `model-paths` config, for example, states that source models can be found
2022-03-22 04:03:52 +00:00
# in the "models/" directory. You probably won't need to change these!
2022-04-13 07:06:23 +00:00
model-paths: ["models"]
2022-03-22 04:03:52 +00:00
docs-paths: ["docs"]
analysis-paths: ["analysis"]
test-paths: ["tests"]
2022-04-13 07:06:23 +00:00
seed-paths: ["data"]
2022-03-22 04:03:52 +00:00
macro-paths: ["macros"]
2022-04-13 07:06:23 +00:00
target-path: "../build" # directory which will store compiled SQL files
log-path: "../logs" # directory which will store DBT logs
packages-install-path: "../dbt" # directory which will store external DBT dependencies
2022-03-22 04:03:52 +00:00
2022-04-13 07:06:23 +00:00
clean-targets: # directories to be removed by `dbt clean`
- "build"
- "dbt_modules"
2022-03-22 04:03:52 +00:00
quoting:
database: true
2022-04-13 07:06:23 +00:00
# Temporarily disabling the behavior of the ExtendedNameTransformer on table/schema names, see (issue #1785)
# all schemas should be unquoted
2022-03-22 04:03:52 +00:00
schema: false
identifier: true
2022-04-13 07:06:23 +00:00
# You can define configurations for models in the `model-paths` directory here.
2022-03-22 04:03:52 +00:00
# Using these configurations, you can enable or disable models, change how they
# are materialized, and more!
models:
airbyte_utils:
+materialized: table
generated:
airbyte_ctes:
+tags: airbyte_internal_cte
+materialized: ephemeral
airbyte_incremental:
+tags: incremental_tables
+materialized: incremental
+on_schema_change: sync_all_columns
airbyte_tables:
+tags: normalized_tables
+materialized: table
airbyte_views:
+tags: airbyte_internal_views
+materialized: view
dispatch:
- macro_namespace: dbt_utils
2022-04-13 07:06:23 +00:00
search_order: ["airbyte_utils", "dbt_utils"]