Hi, im having the same issue described here <https...
# integration-dbt
m
Hi, im having the same issue described here https://github.com/dagster-io/dagster/issues/10918 Are there any updates on the topic? Im using using
load_assets_from_dbt_manifest
to load everything since i have my dbt project in another repository.
t
Hi! As far as I know, there haven't been any updates. It's unfortunately a limitation with dbt since it's rooted on what dbt exposes. It's not opportune, but the workaround mentioned in the issue will likely fit the bill. If you'd like, would gladly take any feedback or an explanation of your circumstances of how you got to this situation.
m
Im sorry but i dont really undestand the "solution" given. I can copy the files created by dbt to the target directory but for some reason dagter is deleting the files and then telling me it cant find them
t
Valid. Where are you copying the files and what point in the workflow (ex. local, prod) do you see Dagster deleting the files? Because it shouldn't be doing that.
n
Have you tried setting the target path with the env var DBT_TARGET_PATH ? Setting it in
dbt_project.yml
is deprecated in v1.5. https://docs.getdbt.com/reference/project-configs/target-path (select v1.5) (I've double posted in github for discoverability)
m
@Nicolas Parot Alvarez that worked !! thanks for the help 🤟
D 1
n
Nice! I'm glad it works since I had not tested it!