Radu Ciocan
07/19/2024, 4:18 PMBuzzCutNorman
07/19/2024, 4:26 PMRadu Ciocan
07/19/2024, 4:31 PMBuzzCutNorman
07/19/2024, 4:32 PMRadu Ciocan
07/19/2024, 4:34 PMEdgar Ramírez (Arch.dev)
07/19/2024, 4:36 PMRadu Ciocan
07/19/2024, 5:04 PMBuzzCutNorman
07/19/2024, 5:23 PMEdgar Ramírez (Arch.dev)
07/19/2024, 6:42 PMdoes not seem to work when I try to add custom as transformerCan you say more about what failed? @BuzzCutNorman 's right. Another approach is to add tap-postgres and tweak the
pip_url
for startersRadu Ciocan
07/19/2024, 7:05 PMExtension executing `dbt run`...
17:37:47 [WARNING]: Deprecated functionality
User config should be moved from the 'config' key in profiles.yml to the 'flags' key in dbt_project.yml.
17:37:47 Running with dbt=1.7.16
17:37:47 Error importing adapter: No module named 'dbt.adapters.fal'
17:37:47 Encountered an error:
Runtime Error
Credentials in profile "meltano", target "dev_with_fal" invalid: Runtime Error
Could not find adapter type fal!
Edgar Ramírez (Arch.dev)
07/19/2024, 7:07 PMmeltano.yml
look like?Radu Ciocan
07/23/2024, 2:22 PMEdgar Ramírez (Arch.dev)
07/23/2024, 4:16 PMdbt-postgres-python
to the pip_url
, doing meltano install
and trying again?Radu Ciocan
07/23/2024, 4:20 PMutilities:
- name: dbt-postgres
variant: dbt-labs
pip_url: dbt-core==1.7.16 dbt-postgres==1.7.16 git+<https://github.com/meltano/dbt-ext.git@main>
config:
schema: forward_analytics
- name: dbt-postgres-python
variant: dbt-labs
pip_url: dbt-core==1.7.16 dbt-postgres==1.7.16 git+<https://github.com/kudryk/dbt-postgres-python.git@main>
config:
schema: forward_analytics
and get error:
Utility ‘dbt-postgres-python’ is not known to Meltano. Try running meltano lock --update --all
to ensure your plugins are up to date.
and
Utility ‘dbt-postgres-python’ is not known to Meltano. Check https://hub.meltano.com/ for available plugins.BuzzCutNorman
07/23/2024, 5:56 PMdbt-postgre
config and keep dbt-postgres-python
and then give the following pip_url
lines a try in the dbt-postgres-python
config.
pip_url: dbt-core==1.7.16 git+<https://github.com/kudryk/dbt-postgres-python.git@main> git+<https://github.com/meltano/dbt-ext.git@main>
pip_url: dbt-core==1.7.16 dbt-postgres==1.7.16 git+<https://github.com/meltano/dbt-ext.git@main> git+<https://github.com/kudryk/dbt-postgres-python.git@main>
If these don't work my next suggestion would be trying adding in a settings:
and command:
sections like shown in the dbt-ext repo. Using the dbt-postgres
example as a template to work from.Radu Ciocan
07/24/2024, 1:16 PM