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