gunu
06/21/2021, 8:24 AMNamespace Custom Format vs dbt project +schema ) e.g.
Namespace Custom Format = "exchange_rates_api"
dbt_projects.yml
...
models:
  airbyte_dbt_exchangeratesapi:
      exchange_rates:
        +materialized: table
        +schema: exchange_rates_api
however, when running this sync. the output schema is airbyte_exchange_rates_api
my question is. where is the prefix airbyte being created?Chris (deprecated profile)
airbyte ?)gunu
06/21/2021, 8:33 AMNamespace Custom Format = "exchange_rates_api"Chris (deprecated profile)
airbyte is defined as your schema in your destination?gunu
06/21/2021, 8:36 AMexchange_rates_api
and in the dbt project i’m setting the schema as exchange_rates_apigunu
06/21/2021, 8:37 AMairbyte_exchange_rates_apiChris (deprecated profile)
gunu
06/21/2021, 8:39 AMChris (deprecated profile)
airbyte  (it will be set in your profiles.yml)Chris (deprecated profile)
generate_schema_namegunu
06/21/2021, 8:44 AMgunu
06/21/2021, 9:05 AM