What are dbt artifacts?
dbt run / test / build
, and some only when you run the models:
elementary_test_results
- Results of all dbt tests (including elementary and other packages, such as dbt_expectations and dbt_utils).dbt_run_results
- Results of all dbt executions.dbt run
that includes elementary models:
dbt_models
, dbt_tests
, dbt_sources
, dbt_exposures
, dbt_metrics
- Metadata and configuration. It is recommended to run these models when you make changes in your projects.elementary/models/edr/dbt_artifacts
).
dbt_artifacts
folder of the package.
For dbt_run_results
data is inserted at the on-run-end, and for the rest of the models it’s a post-hook on the model itself.
The dbt artifacts models are: