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
Currently all satisfied xtriggers get stored in the DB xtriggers table. This includes clock triggers, and "retry delay" triggers (which are implemented via clock triggers).
These really don't need to be stored in the DB
clock triggers will likely be the main cause of xtrigger table bloat
calling a clock trigger again unnecessarily, e.g. after restart, is quick (i.e. it doesn't matter) - a synchronous wall-time check, not an asynchronous sub-process call like for other xtriggers
The text was updated successfully, but these errors were encountered:
Currently all satisfied xtriggers get stored in the DB xtriggers table. This includes clock triggers, and "retry delay" triggers (which are implemented via clock triggers).
These really don't need to be stored in the DB
The text was updated successfully, but these errors were encountered: