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
When the scheduler runs and both models have a missing interval, then they will correctly execute in sequence, allowing other_full to take into account the data in full_with_signal.
If the signal on full_with_signal determines that the interval is not yet ready, it will correctly be skipped by the scheduler, but the interval for other_fullwill still be computed in that run. In a subsequent run, the signal becomes ready and the interval for full_with_signal is computed, but now we're in a situation where they have run in the reverse order, making other_fullnot take data from full_with_signal into account.
The built-in scheduler needs to consider changes to missing intervals made by signals.
The text was updated successfully, but these errors were encountered:
Assuming the following:
and
When the scheduler runs and both models have a missing interval, then they will correctly execute in sequence, allowing
other_full
to take into account the data infull_with_signal
.If the signal on
full_with_signal
determines that the interval is not yet ready, it will correctly be skipped by the scheduler, but the interval forother_full
will still be computed in that run. In a subsequent run, the signal becomes ready and the interval forfull_with_signal
is computed, but now we're in a situation where they have run in the reverse order, makingother_full
not take data fromfull_with_signal
into account.The built-in scheduler needs to consider changes to missing intervals made by signals.
The text was updated successfully, but these errors were encountered: