I can't seem to find this on their documentation at all. I use TimescaleDB to calculate a bunch of intermediate data products on my real time production server; hypertables, continuous aggregates etc. I've started to experiment with some other historical datasets on a dev server and I can't seem to get the cont.agg's to automatically update.
My testing methodology is:
I have all the policies set and I'm seeing that they are getting run in the timescaledb jobs table but I'm not sure how to check what dates it thinks it should be looking for.
Does this only work on real time data? I can't have historical data that gets inserted in order?
PEBKAC
The issue was that I was misunderstanding how the policies worked. I had my start time set to an interval of 1 month. I thought that it would use the data for 1 month before the high water mark but instead it was checking for new data 1 month before now.
So, dropped policies, reinitialised the policies with start_time == Null and all is well