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
A few milliseconds of delay can be expected when the module is busy with other tasks, but this should be investigated if the module isn't doing anything else.
check module logs, you will find consistenly 2-5ms delay between consecutive occurence of repeated reducer.
Investigation:
After running a scheduled reducer, SchedulerActor uses a follow-up internal transaction to delete row entry or Schedule a reducer again incase of repeated reducer
handle_repeated_reducer gets called in this second transaction, Entry made to queue here will yeild back after dur from "now" instead of last scheduled reducer transaction's time.
Duration here should be adjusted to be reduced by the gap between these two transactons.
The text was updated successfully, but these errors were encountered:
Reported on public discord - https://discord.com/channels/1037340874172014652/1363060408285532253.
A few milliseconds of delay can be expected when the module is busy with other tasks, but this should be investigated if the module isn't doing anything else.
Repro steps:
Investigation:
After running a scheduled reducer,
SchedulerActor
uses a follow-up internal transaction to delete row entry or Schedule a reducer again incase of repeated reducerhandle_repeated_reducer gets called in this second transaction, Entry made to
queue
here will yeild back afterdur
from "now" instead of last scheduled reducer transaction's time.Duration here should be adjusted to be reduced by the gap between these two transactons.
The text was updated successfully, but these errors were encountered: