design: stream-based session & backup loading to reduce memory pressure#135
Open
design: stream-based session & backup loading to reduce memory pressure#135
Conversation
Contributor
📊 Test Coverage Report
Coverage measured by |
Contributor
📦 PR Build Artifacts
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Design Document — Stream-Based Session & Backup Loading
仅设计文档,不包含代码更改。
问题
当前 session 分析和 backup 操作将所有数据一次性加载到内存:
analyze_sessions读取并解析所有.jsonl文件 → O(total session bytes) 峰值内存preview_session读取整个文件到内存 → O(file size)对于有数百个 session 的实例(Pi、小 VPS),峰值内存可达 50MB+,且 UI 在操作期间无响应。
方案概要
*_stream命令变体,通过 Tauri event 分批推送数据(默认 batch_size=50),前端渐进式渲染SshConnectionPool::exec_streaming(),用 bounded mpsc channel 分块传输 stdout +StreamDeserializer增量解析CancellationToken注册表 +cancel_stream命令内存预算
详见
docs/design/streaming-session-backup-loading.md。