Examine how freshness is defined at the database level:- name: rawdatabase: rawfreshness: # default freshnesswarn_after: {count: 12, period: hour}error_after: {count: 24, period: hour}loaded_at_field: _etl_loaded_atHow can one table from the source raw be excluded from source freshness?
Consider these SQL and YAML files for the model model_a:
models/staging/model_a.sql
{{ config(
materialized = "view"
) }}
with customers as (
...
) dbt_project.yml
models:
my_new_project:
+materialized: table
staging:
+materialized: ephemeral
Which is true about model_a? Choose 1 option.