Soumyadip Mondal
10/07/2025, 4:22 AMauto - refresh limitation on docs but whenever I try to create it, I'm getting error like: Materialized view which type is ASYNC need to specify refresh interval for external table
Sample query:
CREATE MATERIALIZED VIEW playground.qa_audit_trail_mv_2
PARTITION BY date_trunc('day', history_date)
REFRESH ASYNC
AS
SELECT
changes,
history_id,
history_date,
history_type
FROM iceberg.qa_data_lake.qa_audit_trail
WHERE history_date >= date_sub(now(), INTERVAL 7 DAY);Robert Raharjo
10/07/2025, 9:32 PMasync refresh every (interval 1 day)Soumyadip Mondal
10/08/2025, 5:06 AM