Showing posts with label or yearly basis instead of daily?. Show all posts
Showing posts with label or yearly basis instead of daily?. Show all posts

Wednesday, August 12, 2026

185 ) How to ingest fact table a weekly, monthly, or yearly basis instead of daily?

185 )  What if the fact table data needs to be ingested on a weekly, monthly, or yearly basis instead of daily? How do you handle that?

Answer:

We handle this by configuring the scheduling and partitioning strategy in our ETL pipeline and Data Warehouse:

  • Daily vs. Periodic Loads: While transaction fact tables (like claims) usually load daily, summary or snapshot fact tables (like monthly account balances) can be scheduled to run on the 1st of every month.
  • Partitioning: We partition our large fact tables by date instead of month . When a weekly or monthly batch job runs, it only targets that specific partition block rather than scanning the entire table, which keeps the data load fast and efficient.

212 What is Medallion Architecture?

 212 What is Medallion Architecture? Medallion Architecture is a data design pattern used to logically organize data in a data lake or lakeh...