Cheers!
I have a Redshift-query data source that offers a live view into an hourly KPI in a format similar to this:
|Site|KPI1|KPI2|Root_Cause|Refresh|
|Place1|0.5|78|Management|28/09/2024 14:50:00|
|Place2|0.75|90|Weather|28/09/2024 14:50:00|
It overwrites itself every time its ran, as it is constantly pulling the latest available information, so at any given point we only have access to the data for Refresh Time + 1h.
Im trying to create a greater dataset using incremental refreshes, based on 1h intervals. That would mean running the query once an hour and keeping the output each time.
I haven’t found a way to do this as the incremental refreshes clear the last 1h of data which is exactly the size of my interval.
Any workarounds? Thanks.