Olivier AGUDO PEREZ
09/30/2022, 1:10 PMairbyte_raw
). To do that I had to put my file profiles.yml
into my dbt project github repo in order to specify my dataset. Following Airbyte doc, I have now to specify the profiles.yml
path into Airbyte GUI Entrypoint arguments for dbt cli
: that field is as follow run --profiles-dir .
And this is where problems begin. When I run my Airbyte sync, I have the following error during dbt phase : Could not find profile named 'normalize'
Problem is my profile name is not "normalize", neither in profiles.yml
or in dbt_project.yml
. What is the way to specify that profiles.yml
path and why is it trying to use normalize project ? Also when I try to run the sync + transformation without specifying custom dataset, it works great.Chris Duong [Airbyte]
09/30/2022, 1:46 PMChris Duong [Airbyte]
09/30/2022, 1:47 PMprofiles.yml
in your git repo, airbyte is using normalization docker image and scripts to generate a profiles.yml
from the credentials in your destination connector.
And that profiles.yml
is always going to be named “normalize”Chris Duong [Airbyte]
09/30/2022, 1:49 PMprofiles.yml
file in your git repo to be “normalize”, then it should work?Olivier AGUDO PEREZ
09/30/2022, 2:40 PMOlivier AGUDO PEREZ
09/30/2022, 2:41 PMrun --profiles-dir .
telling him the profiles file is in the current dir (which, looking at the code, should be the cloned repo directory) but still nothing (Note that that command works on my local DBT)Chris Duong [Airbyte]
09/30/2022, 2:42 PM--profile <my real profile>
? in your dbt cli options?
(yes i’m just suggeting hacks here)Olivier AGUDO PEREZ
09/30/2022, 2:51 PMprofiles.yml
😕Olivier AGUDO PEREZ
09/30/2022, 2:54 PM/data/127/1/transform/git_repo
and then /data/127/2/transform/git_repo
)