The problem I’m having
I made a dagstster job that uploads the run_results.json file to an S3 path after the dbt asset run completes. The problem I’m having is that my dagster logs say that it sent the results for the following invocation_command:
"dbt build --profile my_profile --target prod --select fqn:* --exclude tag:individual tag:archived tag:ctc"
But when I look at the actual file that it uploaded, it only shows the results as if the invocation command was "dbt compile --target prod"
I’m confused at how the results that I get in the dagster log is different from the file thats exported, any insight here?
The context of why I’m trying to do this
I’m trying to get a list of models that seem to no longer be updating with each nightly run so I can see which ones to archive, letting us cut down the duration time for our nightly dbt run.