Hey! I’m getting warning:
[WARNING]: Configuration paths exist in your dbt_project.yml file which do not apply to any resources.
There are 1 unused configuration paths: models.project.grouping.staging.model.table_properties
dbt_project.yml
grouping:
staging:
model:
materialized: 'table'
table_type: 'iceberg'
format: 'parquet'
partitioned_by: 'date'
table_properties:
vacuum_max_snapshot_age_seconds: '10'
write_target_data_file_size_bytes: '134217728'
optimize_rewrite_delete_file_threshold: '50'
If I use configuration in model, it’s works fine:
{{ config(
materialized='table',
table_type='iceberg',
format='parquet',
partitioned_by=['date'],
table_properties={
'vacuum_max_snapshot_age_seconds': '10',
'write_target_data_file_size_bytes': '134217728',
'optimize_rewrite_delete_file_threshold': '50'
}
) }}
Is it possible to fix?