dbt - Performance Optimization
Given this dbt model config:
What is the effect of this configuration?
config(
materialized='table',
partition_by={'field': 'created_at', 'data_type': 'date'},
clustering=['user_id']
)What is the effect of this configuration?
