Forum Discussion

MattRGX's avatar
MattRGX
Regular Visitor
2 years ago
Solved

incremental refresh and partitionning

Hello guys, i'm implementing incremental refresh in my dashboard and i'm facing some questions about partitionning and how it works. in my DWH i have multiple fact table that i want to set incremen...
  • lbendlin's avatar
    2 years ago
    how partition will be created. Are they based on the creation_date available in my DWH ?

    yes

    the first time i insert a new client in the dataset, all his data (from all fact table) will have the same creation_date. So all the initial data from one client will be on the same partition ?

    yes

    the max update_date for that partition will change and i will refresh all the data from that client just because of one line change ?

    Not just from that client. The entire partition will be refreshed

     

    Incremental Refresh expects immutable data.  Your data isn't. That means you have additional maintenance effort to make sure there is no data duplication across partitions. That's just how it is.