You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 18, 2018. It is now read-only.
After increasing the schedule rule rate from 5 minutes to 1 hour i've found that no more snapshots were taken.
After some code digging i discovered there is a var time_delta (defaults to 4 minutes) that defines a window when the lambda function could be called to match the SnapshotTime.
To make the system works again i had to increase it to 59 minutes.
Pay attention that its value should be exactly (your_schedule_rule_rate - 1) to not incur in multiple or skipped snapshots.
I think that this should be documented more.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
After increasing the schedule rule rate from 5 minutes to 1 hour i've found that no more snapshots were taken.
After some code digging i discovered there is a var
time_delta
(defaults to 4 minutes) that defines a window when the lambda function could be called to match the SnapshotTime.To make the system works again i had to increase it to 59 minutes.
Pay attention that its value should be exactly (your_schedule_rule_rate - 1) to not incur in multiple or skipped snapshots.
I think that this should be documented more.
The text was updated successfully, but these errors were encountered: