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 Jun 15, 2024. It is now read-only.
Currently, every single :step-result-updated-event triggers flushing data to disk. This is both a performance issue (because all components sending these events block until all event-handlers processed information) and unnecessary stress on the system (because of I/O and CPU operations)
Potential Solutions
Rate-limit flushing to disk
Flushing to disk can be rate-limited to a few times per second
The text was updated successfully, but these errors were encountered:
Problem
Currently, every single
:step-result-updated
-event triggers flushing data to disk. This is both a performance issue (because all components sending these events block until all event-handlers processed information) and unnecessary stress on the system (because of I/O and CPU operations)Potential Solutions
Rate-limit flushing to disk
Flushing to disk can be rate-limited to a few times per second
The text was updated successfully, but these errors were encountered: