Performance: large-file hydrate streaming and progressive delivery #32
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Goal
Eliminate sidebar hydrate stalls for large/high-latency files by introducing streaming/chunked delivery design while preserving the small-file fast path.
Problem
Current hydrate flow is still fundamentally file-level full read. Under high latency or large file access this can repeatedly hit timeout budgets and block perceived responsiveness. Recent precheck and timeout reductions help but do not remove the architectural limit.
Scope
file/readextension over channel envelope.file/readfast path for small files.Acceptance Criteria
Related