Test and understand how partition shift, schedule delay, and granularity affect monitor execution.
Shifts partition boundaries forward
Ignore the last N completed partitions
Minutes to wait after partition ends
How it works:
Defines the size of each partition. Options: fivemin, tenmin, fifteenmin, thirtymin, hourly, daily.
Shifts all partition boundaries forward by the specified number of minutes.
Shift = 0: 10:00-11:00, 11:00-12:00, 12:00-13:00
Shift = 9: 10:09-11:09, 11:09-12:09, 12:09-13:09
Skip the last N completed partitions. These partitions will be marked as "waiting" and will only be processed when newer partitions complete.
If current time is 13:15 with skip=1, partitions 10:00-11:00 and 11:00-12:00 will be fetched, but 12:00-13:00 (the last completed one) will wait until 13:00-14:00 finishes.
Specifies how many minutes to wait after a partition ends before fetching data from the database. This allows time for late-arriving data to be written.
If a partition ends at 13:00 and delay minutes is set to 15, the system will wait until 13:15 before fetching data for that partition. The delay period is shown as a semi-transparent red overlay on the timeline.