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 Mar 9, 2020. It is now read-only.
Right now bb-event service saves up all events for a build and only flushes it into the CAS/AC upon completion of the build. We should add support for live viewing of builds that are in progress.
An interesting problem in this area is that we preferably should not write a full event log into the CAS for every tiny update. We should likely add some delay to write out multiple events in one go. We are allowed to split up the event log across multiple files in the CAS, but splitting it up in too many chunks will degrade performance as well. Maybe some trick exists that doesn't waste too much space, but limits output to O(log n) blobs?
The text was updated successfully, but these errors were encountered:
Right now bb-event service saves up all events for a build and only flushes it into the CAS/AC upon completion of the build. We should add support for live viewing of builds that are in progress.
An interesting problem in this area is that we preferably should not write a full event log into the CAS for every tiny update. We should likely add some delay to write out multiple events in one go. We are allowed to split up the event log across multiple files in the CAS, but splitting it up in too many chunks will degrade performance as well. Maybe some trick exists that doesn't waste too much space, but limits output to O(log n) blobs?
The text was updated successfully, but these errors were encountered: