disable_dbt_columns_autoupload is not respected
Describe the bug
Setting disable_dbt_columns_autoupload to any value doesn't seem to disable uploading of column artifacts, contrary to what's described here.
In the code I can't find any reference to disable_dbt_columns_autoupload either..
To Reproduce Steps to reproduce the behavior:
- Set in dbt_project_yml:
vars:
disable_dbt_columns_autoupload: true
- perform dbt run
Expected behavior
dbt_columns model is not updated
Screenshots If applicable, add screenshots to help explain your problem.
Environment (please complete the following information):
- Elementary CLI (edr) version:
n/a - Elementary dbt package version:
0.18.1 - dbt version:
1.9.3 - Data warehouse
snowflake - Infrastructure details
Additional context Add any other context about the problem here.
Would you be willing to contribute a fix for this issue? Let us know if you're willing to contribute so that we'll be able to provide guidance.
Hey @larspettermadsstuen Thanks for reaching out about this, we'll take a look! In the mean time, you can use the following flag:
vars:
columns_upload_strategy: none
@NoyaOffer this only works for dbt run not dbt build. Is there a way to adjust it?