[Docs] Add UCM configuration parameters reference page - #1328
Closed
ljccsu wants to merge 3 commits into
Closed
Conversation
…roup#1293) Add comprehensive config parameters documentation with YAML hierarchy indication.
ljccsu
requested review from
FangRun2,
Tarrei,
Wwwzff,
mag1c-h and
ygwpz
as code owners
September 4, 2026 07:02
harrisonyhq
requested changes
Sep 4, 2026
harrisonyhq
left a comment
Contributor
There was a problem hiding this comment.
Do not simply cherry pick the pull request from docs next. Change the doc path to current docs orgnazition
harrisonyhq
reviewed
Sep 4, 2026
| | `posix_capacity_gb` | 选填 | int | 默认 `0`,表示不启用 GC;不可超过挂载文件系统可用容量 | 设置磁盘存储的最大容量(GB),当已用容量 >= `posix_capacity_gb * posix_gc_trigger_threshold_ratio` 时触发 GC。多实例部署共享同一文件系统时,只能有一个实例开启 GC,其他实例不要开启。 | | ||
| | `posix_gc_trigger_threshold_ratio` | 条件选填 | float | 默认 `0.7`,范围:0~1。`posix_capacity_gb` 未配置时不填写 | GC 阈值比例,配合 `posix_capacity_gb` 使用。 | | ||
| | `posix_gc_recycle_percent` | 选填 | float | 默认 `0.1`,范围:0~1。`posix_capacity_gb` 未配置时不填写 | 每轮 GC 删除当前容量的比值。 | | ||
| | `posix_gc_max_recycle_count_per_shard` | 选填 | int | 默认 `50000`,>0。不建议修改。`posix_capacity_gb` 未配置时不填写 | 每轮 GC 单目录允许删除的文件数上限。 | |
Contributor
There was a problem hiding this comment.
Also, group the parameters by its usage, eg. GC, posix-store, cache-store etc.
harrisonyhq
reviewed
Sep 4, 2026
| | `Fake` | 不实际存取,仅存元数据 lookup,测试极限性能 | | ||
| | `Mooncake` | 对接 Mooncake 内存池,仅支持 vllm-ascend | | ||
| | `Mooncake\|Posix` | 对接 Mooncake 内存池并支持落盘 | | ||
| | `YuanRong` | 对接 YuanRong 内存池 | |
Contributor
There was a problem hiding this comment.
Does Yuanrong and Mooncake store has its unique params?
ljccsu
requested review from
Infinite666,
SuperMarioYL and
flesher0813
as code owners
September 4, 2026 07:21
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.
Cherry-pick of #1293 to develop branch. Adds config-parameters.md (zh/en) and extra.css.