mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2026-04-23 00:17:25 +08:00
7707be8384
* [Feature][KVCache] Support cache manager v1 architecture Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * Update cache manager and related modules Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * chore: update cache_manager and related modules Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: add node to evictable set in complete_swap_to_device When a node transitions from SWAP_TO_DEVICE to DEVICE via complete_swap_to_device, it was not being added to the _evictable_device set. This caused nodes with ref_count=0 to become "orphaned" - not appearing in any evictable set despite having cache_status=DEVICE. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat: update cache manager v1 and related modules - Add new cache_manager.py with cache management functionality - Add radix_tree.py for prefix caching - Update block_pool.py and metadata.py - Update request.py and resource_manager_v1.py for scheduling - Update gpu_model_runner.py for GPU model execution Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(cache): add cache controller v1 implementation - Add CacheController class for cache management - Update config.py with cache related configurations - Refactor gpu_model_runner.py for improved cache handling * feat(cache_manager): update cache manager v1 * fix(cache_manager): 修复 swap_cache H2D/D2H 方向的 block_ids 逻辑并清理 ForwardMeta ## Motivation 修复 swap_cache_optimized.cu 中 H2D 方向时 src/dst block_ids 使用错误的问题, 并清理 ForwardMeta 中已废弃的 cache_controller 字段。 ## Modifications - fix: swap_cache_optimized.cu 中根据 D2H 模板参数正确选取 src/dst block_ids, 修复 H2D 方向 src/dst 倒置 bug(同时修复 SwapCachePerLayerImpl 和 SwapCacheAllLayersBatchImpl) - refactor: cache_manager/v1/__init__.py 将 LayerSwapTimeoutError 导入从 cache_controller 改为 cache_utils(正确来源) - refactor: ForwardMeta 移除废弃的 cache_controller 字段 - refactor: gpu_model_runner.py 移除对应的 cache_controller 赋值语句 - test: 新增 tests/cache_manager/v1/test_swap_cache_ops.py 单元测试 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * feat(cache_manager): refactor cache manager v1 and optimize swap ops ## Motivation 对 cache manager v1 进行重构和优化,精简代码结构,提升可维护性。 ## Modifications - 重构 transfer_manager.py,大幅精简代码逻辑 - 优化 swap_cache_optimized.cu GPU 算子实现 - 调整 cache_manager.py、cache_controller.py 逻辑,修复 free_device_blocks 方法缺失问题 - 更新 block_pool.py、cache_utils.py、metadata.py、radix_tree.py - 精简 gpu_model_runner.py、forward_meta.py、attention.py 中相关调用 - 更新对应单元测试(test_cache_controller、test_swap_cache_ops、test_transfer_manager) - 调整 config.py 中相关配置项 * [KVCache][MTP] 支持 cache_manager_v1 下的 MTP KV Cache 初始化及多模态 hash ## Motivation 在 enable_cache_manager_v1 路径下,MTP(speculative decode)的 KV Cache 需要由 CacheController 统一管理,以复用 swap/transfer 能力,同时修复多模态场景下 block hash 未携带 multimodal extra_keys 的问题。 ## Modifications - `cache_controller.py` - 新增 `initialize_mtp_kv_cache`:通过 CacheController 初始化 MTP KV Cache, 并将其注册到 cache_kvs_map,使 transfer_manager 自动覆盖 MTP 层 - `initialize_host_cache` 中的 num_layers 改为包含 MTP 额外 cache 层数,保证 Host Cache 也为 MTP 分配足够空间 - `_free_gpu_cache` 改名为 `free_gpu_cache`(对外可调用) - `cache_utils.py` - 新增 `get_block_hash_extra_keys`:提取单个 block 内的多模态 hash 信息, 对齐 PrefixCacheManager 的 multimodal extra_keys 逻辑 - `get_request_block_hasher` 中在 hash_block_tokens 时携带 extra_keys, 修复多模态场景 prefix cache 命中率不准的问题 - `spec_decode/mtp.py` - `update_mtp_block_num` 新增 `skip_cache_init` 参数,避免 v1 cache manager 路径下重复初始化 MTP KV Cache - `gpu_model_runner.py` - `initialize_kv_cache(v1)` 路径:在主模型 cache 初始化后,调用 `cache_controller.initialize_mtp_kv_cache` 完成 MTP cache 创建 - `clear_cache` / `wakeup` / `reset` 等路径:respect `enable_cache_manager_v1` 标志,跳过重复的 proposer.initialize_kv_cache 调用 ## Usage or Command ```bash # 启动支持 MTP + cache_manager_v1 的推理服务(示例) bash run.sh ``` * fix(cache_manager): multi-GPU fix, mm hash boundary fix, and remove batch ops 1. Fix CuPy stream/event creation for multi-GPU: wrap all stream operations with cp.cuda.Device(device_id) context to ensure streams/events are bound to the correct device, preventing cross-device errors in multi-GPU setups. 2. Remove cudaSetDevice from SwapCacheAllLayers (handled by cupy context now). 3. Remove swap_cache_all_layers_batch op: simplified the implementation by removing the batch upload variant; all-layer transfers now use the standard swap_cache_all_layers with cupy device context. 4. Fix mm hash boundary comparison in get_block_hash_extra_keys: change strict less-than (<) to less-than-or-equal (<=) so that multimodal items ending exactly at block start are correctly excluded. 5. Extract config fields to KVCacheBase: model_config, cache_config, quant_config, parallel_config are now set in the base class __init__ to avoid duplication in CacheController and CacheManager subclasses. 6. Translate metadata.py docstrings from Chinese to English for broader contributor accessibility. 7. Add test_cache_utils.py: comprehensive unit tests for get_block_hash_extra_keys covering all boundary and overlap scenarios. 8. Expand test suite: test_request.py cache fields tests, test_radix_tree.py backup candidate tests, test_transfer_manager.py and test_cache_manager.py multi-GPU and concurrent operation tests. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * [BugFix][KVCache] fix List import and move write_policy normalization to CacheManager ## Motivation 修复两处问题: 1. `fastdeploy/engine/request.py` 中 `List` 未导入导致 pre-commit F821 报错 2. `write_policy` 归一化逻辑(`write_through` → `write_through_selective`)不应放在 `FDConfig`,移至 `CacheManager.__init__` 中,使其只影响 Cache Manager V1 的内部逻辑 ## Modifications - `fastdeploy/engine/request.py`: 在 `typing` 导入中补充 `List`,删除重复的 `CacheSwapMetadata` TYPE_CHECKING 导入,修复 F821/F811 - `fastdeploy/config.py`: 删除 `write_policy` 归一化逻辑 - `fastdeploy/cache_manager/v1/cache_manager.py`: 将归一化逻辑移入 `CacheManager.__init__` Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * [BugFix][KVCache] fix pre-commit code style issues ## Motivation 修复 CI pre-commit 代码风格检查失败问题。 ## Modifications - `fastdeploy/engine/common_engine.py`: black 格式化 - `fastdeploy/worker/worker_process.py`: black 格式化 + isort 修复 - `fastdeploy/cache_manager/v1/storage/__init__.py`: isort 修复 - `fastdeploy/worker/gpu_worker.py`: isort 修复 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * [Feature][KVCache] update cache_manager_v1 modules ## Motivation 更新 Cache Manager V1 相关模块,完善版权信息、改进模块结构与可维护性。 ## Modifications - `fastdeploy/cache_manager/v1/` 系列模块:补充版权 header,优化代码结构 - `fastdeploy/config.py`:配置项更新 - `fastdeploy/engine/sched/resource_manager_v1.py`:调度相关更新 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * [Feature][KVCache] add BatchRequest.from_tasks and refactor worker task parsing ## Motivation 将 worker_process 中重复的 task 解析逻辑收敛到 BatchRequest,减少代码冗余,提升可维护性。 ## Modifications - `fastdeploy/engine/request.py`:新增 `BatchRequest.from_tasks()` 类方法,统一将 task_queue 任务分类为推理请求和控制请求 - `fastdeploy/worker/worker_process.py`:使用 `BatchRequest.from_tasks()` 替代内联解析逻辑,并修复重复的 control_reqs 处理块 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * [Feature][KVCache] add NUMA affinity for host cache and skip swap cache tests ## Motivation 优化 Host cache 内存分配的 NUMA 亲和性,减少跨 NUMA 访问延迟; 同时跳过 swap cache ops 测试(当前环境不支持)。 ## Modifications - `fastdeploy/cache_manager/v1/cache_controller.py`: - 新增 `_get_numa_node_for_gpu()` 方法,通过 nvidia-smi 或 sysfs 获取 GPU 对应的 NUMA 节点 - 新增 `_bind_to_closest_numa_node()` 方法,绑定当前线程到 GPU 最近的 NUMA 节点 - 在 `initialize_host_cache()` 中调用 NUMA 绑定,优化 H2D 传输性能 - `tests/cache_manager/v1/test_swap_cache_ops.py`:跳过所有测试类(`TestSwapCacheAllLayersCorrectness`、`TestSwapCacheAllLayersPerformance`、`TestSwapCacheRandomBlockIndices`) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * [BugFix][KVCache] fix unittest failures for cache_manager_v1 三个单测因接口变更或 Mock 方式问题导致失败,需修复。 - tests/distributed/chunked_moe.py:`setup_model_runner` 使用 `__new__` 跳过 `__init__`,补加 `enable_cache_manager_v1 = False`,修复 `AttributeError` - tests/engine/test_resource_manager.py:`PrefixCacheManager` 为局部导入,`patch` 路径改为定义位置 `fastdeploy.cache_manager.prefix_cache_manager.PrefixCacheManager` - tests/v1/test_resource_manager_v1.py:`_trigger_preempt` 第四参数已由 `list` 改为 `BatchRequest`,更新测试传参和断言 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * [BugFix][KVCache] remove debug logging code ## Modifications - fastdeploy/engine/request.py:删除调试用 logger 及 prompt_hashes 中的 debug 日志 - fastdeploy/worker/worker_process.py:删除 __main__ 中的调试 import 和 print 语句 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * [BugFix][KVCache] fix cupy device id caching and pickle for _match_result ## Motivation 修复两个 bug: 1. `transfer_manager.py` 中每次调用 `cp.cuda.runtime.getDevice()` 存在隐患,应在初始化时缓存为实例变量,保证后续操作使用一致的设备 ID。 2. `request.py` 的 `__getstate__` 未跳过 `_match_result`,该字段包含 BlockNode 树的父子循环引用,pickle 时会触发 `RecursionError`;同时补充 `__setstate__` 确保 unpickle 后字段恢复为安全默认值。 ## Modifications - `transfer_manager.py`:初始化时调用 `cp.cuda.runtime.getDevice()` 并缓存到 `self._cupy_device_id`,后续 `with cp.cuda.Device(...)` 和日志均使用该缓存值。 - `request.py`: - `__getstate__` 中将 `_match_result` 加入跳过集合 `_SKIP_KEYS`,避免循环引用导致 pickle 失败。 - 新增 `__setstate__`,unpickle 后将 `_block_hasher` 和 `_match_result` 恢复为 `None`。 ## Usage or Command * fix(test): fix unit test errors for _trigger_preempt and wakeup with MTP - Use BatchRequest instead of list in test_trigger_preempt_records_tasks - Add missing enable_cache_manager_v1 attr in TestSleepWakeupBehavior._make_runner Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * [BugFix][KVCache] fix gpu_free_block_list returning wrong block IDs ## Motivation `gpu_free_block_list` 的兼容 property 中误用了 `list(range(N))`, 将 `available_blocks()` 的返回值当作整数传给 `range()`, 导致返回 `[0, 1, ..., N-1]` 的假列表,而非真实的空闲 block ID。 ## Modifications - `cache_manager/v1/cache_manager.py`:将 `list(range(self._device_pool.available_blocks()))` 改为 `list(self._device_pool.available_blocks())` Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * [BugFix][KVCache] 修复 gpu_free_block_list 返回 int 导致 TypeError ## Motivation gpu_free_block_list 属性中调用 BlockPool.available_blocks(), 该方法返回 int(空闲块数量),用 list() 包装 int 会触发 TypeError: 'int' object is not iterable。 ## Modifications 将 list(self._device_pool.available_blocks()) 改为 list(self._device_pool._free_blocks),直接返回空闲块索引列表。 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * [KVCache][CacheManager] 适配 V1 CacheManager 的 pause/sleep/free_cache 操作 ## Motivation V1 CacheManager 引入了新的 reset_cache() 接口,pause 和 sleep 操作需要适配, 同时 free_cache 需要支持可选的 clear_storage 参数。 ## Modifications - cache_controller.py: free_cache 新增 clear_storage 参数(默认 False), 仅当 clear_storage=True 时才调用 _clear_storage(),避免不必要的 storage 清空 - common_engine.py: pause 和 sleep 操作中,当 ENABLE_V1_KVCACHE_MANAGER 时 使用 cache_manager.reset_cache() 替代旧的 reset() 和 pause_transfer 逻辑 - gpu_model_runner.py: sleep 时仅在非 V1 cache manager 下执行 MTP cache 清除 ## Usage or Command # 启动服务(V1 CacheManager) python -m fastdeploy.entrypoints.openai.api_server \ --enable-v1-kvcache-manager \ ... * [BugFix][KVCache] fix missing enable_cache_manager_v1 in test mocks and remove unused select_blocks_for_backup - Remove unused `select_blocks_for_backup` method from radix_tree.py - Fix `match_prefix` default param `skip_storage=True` and log order in cache_manager.py - Sync test_gpu_model_runner.py with upstream/develop (add TestInsertTasksV1SplitwiseSuffix) - Add `enable_cache_manager_v1=False` to all mock runners to fix AttributeError in CI Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * [BugFix][KVCache] simplify _free_blocks in ResourceManagerV1 for non-v1 path Remove redundant prefix_caching branch in else path; always call recycle_gpu_blocks with full block_tables for non-cache-manager-v1 case. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * [KVCache][Optimization][BugFix] fix and optimize block_pool, cache_manager, transfer_manager, request ## Motivation 修复 cache_manager v1 中若干代码质量问题,提升性能并消除潜在的类型不一致 Bug。 ## Modifications 1. **block_pool.py**:`BlockPool.allocate` 将逐个 pop 循环替换为切片 + 批量 set.update,消除 Python 循环开销,O(n) → O(k)(C 层批量操作) 2. **cache_manager.py**:`match_prefix` 在 prefix caching 关闭时提前 return 前写入空 `MatchResult()`,避免调用方解引用 `_match_result=None` 崩溃 3. **transfer_manager.py**:`_build_device_layer_indices` 在 `_cache_kvs_map` 为空时也重置四个层索引列表,防止残留旧 tensor 被 swap 算子使用 4. **request.py**:`BatchRequest.append_swap_metadata` / `append_evict_metadata` 构造 `CacheSwapMetadata` 时将 `src_type`/`dst_type` 从字符串改为 `CacheLevel` 枚举,与字段类型声明一致;补充 `CacheLevel` 导入;`match_result` 属性返回类型标注修正为 `Optional[MatchResult]` 5. **resource_manager_v1.py**:`_allocate_gpu_blocks` 日志从 `INFO` 降级为 `DEBUG`,消除高频调度路径的日志噪音 6. **tests/engine/test_request.py**:同步更新 `src_type`/`dst_type` 断言为 `CacheLevel` 枚举值,补充 `CacheLevel` 导入 ## Usage or Command 单元测试: ```bash source .venv/py310/bin/activate cd baidu/FastDeploy python -m pytest tests/cache_manager/v1/test_cache_manager.py -v python -m pytest tests/cache_manager/v1/test_transfer_manager.py -v python -m pytest tests/engine/test_request.py -v ``` * [BugFix][KVCache] Fix BlockPool.allocate returns all blocks when num_blocks=0 ## Motivation 当 `allocate(num_blocks=0)` 被调用时,Python 负索引陷阱导致严重错误: `-0 == 0`,所以 `self._free_blocks[-0:]` 等价于 `self._free_blocks[0:]`, 会返回并清空整个空闲块列表,而非返回空列表。 ## Modifications 在 `BlockPool.allocate` 中增加对 `num_blocks == 0` 的提前判断,直接返回 `[]`, 避免触发 Python 负索引陷阱。 ## Usage or Command ```bash # 运行相关单元测试验证修复 python -m pytest tests/cache_manager/v1/test_cache_manager.py -vv -s ``` * [KVCache][Test] add unit tests for cache_manager v1 modules ## Motivation 补全 cache_manager/v1 各模块的单测覆盖,确保核心方法有完整的测试保障。 ## Modifications 新增/补充以下测试文件,全部 326 个用例通过: - tests/cache_manager/v1/test_block_pool.py(新建) 覆盖 BlockPool.get_metadata/set_metadata/resize、DeviceBlockPool/HostBlockPool - tests/cache_manager/v1/test_metadata.py(新建) 覆盖 BlockNode、RadixTreeStats、MatchResult、CacheSwapMetadata、AsyncTaskHandler - tests/cache_manager/v1/test_cache_utils.py(补充) 新增 hash_block_tokens、get_request_block_hasher、LayerDoneCounter 时间追踪及内部辅助方法 - tests/cache_manager/v1/test_radix_tree.py(补充) 新增 TestCompleteSwapToDevice 专项测试类(6 个用例) - tests/cache_manager/v1/test_cache_manager.py(补充) 新增 offload_to_host、load_from_host、pending backup 系列、prepare_prefetch_metadata - tests/cache_manager/v1/test_transfer_manager.py(补充) 新增 _swap_single_layer 校验路径、sync_input/output_stream、record_input_stream_event ## Usage or Command ```bash # 运行所有新增单测 source .venv/py310/bin/activate python -m pytest tests/cache_manager/v1/test_block_pool.py \ tests/cache_manager/v1/test_metadata.py \ tests/cache_manager/v1/test_cache_utils.py \ tests/cache_manager/v1/test_radix_tree.py \ tests/cache_manager/v1/test_cache_manager.py \ tests/cache_manager/v1/test_transfer_manager.py -v # 期望结果:326 passed ``` --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: Jiang-Jia-Jun <163579578+Jiang-Jia-Jun@users.noreply.github.com>
1063 lines
41 KiB
Python
1063 lines
41 KiB
Python
"""
|
|
# Copyright (c) 2025 PaddlePaddle Authors. All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import threading
|
|
import traceback
|
|
from typing import TYPE_CHECKING, Any, Dict, List, Optional, Tuple
|
|
|
|
from fastdeploy.utils import get_logger
|
|
|
|
if TYPE_CHECKING:
|
|
from fastdeploy.engine.request import Request
|
|
from fastdeploy.config import FDConfig
|
|
from fastdeploy.cache_manager.v1.storage import StorageScheduler
|
|
|
|
from .base import KVCacheBase
|
|
from .block_pool import DeviceBlockPool, HostBlockPool
|
|
from .metadata import BlockNode, CacheLevel, CacheStatus, CacheSwapMetadata, MatchResult
|
|
from .radix_tree import RadixTree
|
|
from .storage import create_storage_scheduler
|
|
|
|
logger = get_logger("prefix_cache_manager", "cache_manager.log")
|
|
|
|
|
|
class CacheManager(KVCacheBase):
|
|
"""
|
|
Cache Manager for Scheduler process.
|
|
|
|
Inherits from KVCacheBase and uniquely owns DeviceBlockPool and HostBlockPool.
|
|
Responsible for block allocation/release, cache matching, and eviction decisions.
|
|
|
|
Three-level cache hierarchy:
|
|
Level 1: Device (GPU) - Fastest access, directly used for inference
|
|
Level 2: Host (CPU) - Medium speed, needs to be loaded to Device
|
|
Level 3: Storage - Slowest, needs to be fetched to Host first
|
|
|
|
Attributes:
|
|
device_pool: DeviceBlockPool instance.
|
|
host_pool: HostBlockPool instance.
|
|
radix_tree: RadixTree instance for prefix matching.
|
|
"""
|
|
|
|
def __init__(
|
|
self,
|
|
config: "FDConfig",
|
|
):
|
|
"""
|
|
Initialize the Cache Manager.
|
|
|
|
Args:
|
|
config: FDConfig instance containing all fastdeploy configuration
|
|
"""
|
|
super().__init__(config)
|
|
|
|
# Extract configuration from FDConfig
|
|
self.num_gpu_blocks = self.cache_config.total_block_num
|
|
self.num_cpu_blocks = self.cache_config.num_cpu_blocks
|
|
self.block_size = self.cache_config.block_size
|
|
self.enable_host_cache = self.num_cpu_blocks > 0
|
|
self.enable_prefix_caching = self.cache_config.enable_prefix_caching
|
|
|
|
# Write policy for backup (write_through, write_through_selective, write_back)
|
|
# Normalize write_policy: "write_through" is a special case of "write_through_selective" with threshold=1
|
|
self._write_policy = self.cache_config.write_policy
|
|
self._write_through_threshold = self.cache_config.write_through_threshold
|
|
if self._write_policy == "write_through":
|
|
self._write_through_threshold = 1
|
|
self._write_policy = "write_through_selective"
|
|
|
|
# Thread safety
|
|
self._lock = threading.RLock()
|
|
|
|
# Initialize block pools
|
|
self._device_pool = DeviceBlockPool(
|
|
num_blocks=self.num_gpu_blocks,
|
|
block_size=self.block_size,
|
|
)
|
|
self._host_pool = HostBlockPool(
|
|
num_blocks=self.num_cpu_blocks,
|
|
block_size=self.block_size,
|
|
)
|
|
|
|
# Initialize radix tree for prefix matching
|
|
self._radix_tree = None
|
|
if self.enable_prefix_caching:
|
|
self._radix_tree = RadixTree(
|
|
enable_host_cache=self.enable_host_cache,
|
|
write_policy=self._write_policy,
|
|
)
|
|
|
|
# Pending backup list: nodes waiting to be backed up, to be issued via request's cache_evict_metadata
|
|
self._pending_backup: List[Tuple[List[BlockNode], List[int]]] = []
|
|
self._pending_block_ids: List[int] = []
|
|
|
|
# Storage scheduler (create using factory method if backend is configured)
|
|
self._storage_scheduler = create_storage_scheduler(self.cache_config)
|
|
|
|
# Eviction tracking
|
|
self._eviction_in_progress = False
|
|
|
|
self._initialized = True
|
|
|
|
logger.info(
|
|
f"CacheManager initialized, num_gpu_blocks: {self.num_gpu_blocks}, "
|
|
f"num_cpu_blocks: {self.num_cpu_blocks}, block_size: {self.block_size}, "
|
|
f"enable_prefix_caching: {self.enable_prefix_caching}, "
|
|
f"enable_host_cache: {self.enable_host_cache}, "
|
|
f"write_policy: {self._write_policy}, "
|
|
f"write_through_threshold: {self._write_through_threshold}"
|
|
)
|
|
|
|
# ============ Properties ============
|
|
|
|
@property
|
|
def device_pool(self) -> DeviceBlockPool:
|
|
"""Get the device block pool."""
|
|
return self._device_pool
|
|
|
|
@property
|
|
def host_pool(self) -> HostBlockPool:
|
|
"""Get the host block pool."""
|
|
return self._host_pool
|
|
|
|
@property
|
|
def radix_tree(self) -> RadixTree:
|
|
"""Get the radix tree."""
|
|
return self._radix_tree
|
|
|
|
@property
|
|
def num_free_device_blocks(self) -> int:
|
|
"""Get number of free device blocks."""
|
|
return self._device_pool.available_blocks()
|
|
|
|
@property
|
|
def num_free_host_blocks(self) -> int:
|
|
"""Get number of free host blocks."""
|
|
return self._host_pool.available_blocks()
|
|
|
|
@property
|
|
def storage_scheduler(self) -> Optional["StorageScheduler"]:
|
|
"""Get the storage scheduler."""
|
|
return self._storage_scheduler
|
|
|
|
# ============ Block Allocation/Release Methods ============
|
|
|
|
def can_allocate_device_blocks(self, num: int) -> bool:
|
|
"""
|
|
Check if current resources can allocate the specified number of device blocks.
|
|
|
|
Args:
|
|
num: Number of blocks to check
|
|
|
|
Returns:
|
|
True if allocation is possible, False otherwise
|
|
"""
|
|
if self._device_pool.available_blocks() >= num:
|
|
return True
|
|
|
|
elif self.enable_prefix_caching:
|
|
stats = self._radix_tree.get_stats()
|
|
if self._device_pool.available_blocks() + stats.evictable_device_count >= num:
|
|
return True
|
|
|
|
return False
|
|
|
|
def can_allocate_host_blocks(self, num: int) -> bool:
|
|
"""
|
|
Check if current resources can allocate the specified number of host blocks.
|
|
|
|
Args:
|
|
num: Number of blocks to check
|
|
|
|
Returns:
|
|
True if allocation is possible, False otherwise
|
|
"""
|
|
if self._host_pool.available_blocks() >= num:
|
|
return True
|
|
|
|
elif self.enable_prefix_caching:
|
|
stats = self._radix_tree.get_stats()
|
|
if self._host_pool.available_blocks() + stats.evictable_host_count >= num:
|
|
return True
|
|
|
|
return False
|
|
|
|
def allocate_device_blocks(
|
|
self,
|
|
request: Request,
|
|
num_blocks: int,
|
|
) -> Optional[List[int]]:
|
|
"""
|
|
Allocate device blocks for a request.
|
|
|
|
This method handles:
|
|
1. Evicting device blocks if needed
|
|
2. Swapping host blocks to device if matched
|
|
3. Inserting new blocks into RadixTree
|
|
|
|
Args:
|
|
request: Request object containing match result and prompt hashes
|
|
num_blocks: Number of new device blocks to allocate
|
|
|
|
Returns:
|
|
List of allocated device block indices, or empty list if allocation failed
|
|
"""
|
|
try:
|
|
with self._lock:
|
|
match_result = request.match_result
|
|
|
|
need_block_num = num_blocks
|
|
|
|
if not self.can_allocate_device_blocks(need_block_num):
|
|
return []
|
|
|
|
if need_block_num > self._device_pool.available_blocks():
|
|
evicted_result = self._evict_blocks(need_block_num - self._device_pool.available_blocks())
|
|
if evicted_result is None:
|
|
logger.error(f"evict_device_blocks failed, request_id: {request.request_id}")
|
|
return []
|
|
|
|
if self.enable_host_cache and self._write_policy == "write_back":
|
|
evicted_blocks, host_block_ids = evicted_result
|
|
if len(evicted_blocks) != len(host_block_ids):
|
|
logger.error(
|
|
f"evict_blocks to host failed, request_id: {request.request_id}, "
|
|
f"evicted_blocks: {evicted_blocks}, host_block_ids: {host_block_ids}"
|
|
)
|
|
return []
|
|
request.cache_evict_metadata.append(
|
|
CacheSwapMetadata(
|
|
src_block_ids=evicted_blocks,
|
|
dst_block_ids=host_block_ids,
|
|
src_type=CacheLevel.DEVICE,
|
|
dst_type=CacheLevel.HOST,
|
|
)
|
|
)
|
|
|
|
allocated = self._device_pool.allocate(need_block_num)
|
|
if allocated is None:
|
|
logger.error(
|
|
f"allocate device blocks failed, request_id: {request.request_id}, need: {need_block_num}"
|
|
)
|
|
return []
|
|
|
|
if self.enable_host_cache and match_result.matched_host_nums > 0:
|
|
device_blocks = allocated[: match_result.matched_host_nums]
|
|
|
|
free_host_block_ids = self._radix_tree.swap_to_device(match_result.host_nodes, device_blocks)
|
|
logger.debug(
|
|
f"[allocate_device_blocks] request_id={request.request_id} "
|
|
f"swap host->device: host_block_ids={free_host_block_ids} -> device_block_ids={device_blocks}"
|
|
)
|
|
|
|
request.cache_swap_metadata.append(
|
|
CacheSwapMetadata(
|
|
src_block_ids=free_host_block_ids,
|
|
dst_block_ids=device_blocks,
|
|
src_type=CacheLevel.HOST,
|
|
dst_type=CacheLevel.DEVICE,
|
|
)
|
|
)
|
|
|
|
if self._write_policy == "write_through_selective":
|
|
self._radix_tree.backup_blocks(match_result.host_nodes, free_host_block_ids)
|
|
else:
|
|
self.free_host_blocks(free_host_block_ids)
|
|
|
|
match_result.device_nodes.extend(match_result.host_nodes)
|
|
match_result.host_nodes = []
|
|
|
|
if self.enable_prefix_caching:
|
|
block_hashes = request.prompt_hashes[match_result.matched_device_nums :]
|
|
all_device_blocks = request.block_tables + allocated
|
|
uncached_device_blocks = all_device_blocks[match_result.matched_device_nums :]
|
|
num_block_lens = min(len(uncached_device_blocks), len(block_hashes))
|
|
|
|
if num_block_lens > 0:
|
|
blocks = list(zip(block_hashes[:num_block_lens], uncached_device_blocks[:num_block_lens]))
|
|
start_node = match_result.device_nodes[-1] if match_result.device_nodes else None
|
|
|
|
device_nodes, wasted_block_ids = self._radix_tree.insert(blocks=blocks, start_node=start_node)
|
|
match_result.device_nodes.extend(device_nodes)
|
|
|
|
inserted_block_ids = [n.block_id for n in device_nodes]
|
|
logger.debug(
|
|
f"[allocate_device_blocks] request_id={request.request_id} "
|
|
f"newly allocated={allocated} "
|
|
f"inserted_into_path_block_ids={inserted_block_ids} "
|
|
f"wasted_block_ids(not_in_path)={wasted_block_ids}"
|
|
)
|
|
|
|
# Release any blocks that were wasted due to node reuse
|
|
# and update allocated with actual block_ids
|
|
if wasted_block_ids:
|
|
match_result.uncached_block_ids.extend(wasted_block_ids)
|
|
|
|
return allocated
|
|
except Exception as e:
|
|
logger.error(f"allocate_device_blocks error: {e}, {str(traceback.format_exc())}")
|
|
return []
|
|
|
|
def allocate_host_blocks(self, num: int) -> List[int]:
|
|
"""
|
|
Allocate host blocks from the pool.
|
|
|
|
Args:
|
|
num: Number of blocks to allocate
|
|
|
|
Returns:
|
|
List of allocated block indices (may be fewer than requested or empty on error)
|
|
"""
|
|
try:
|
|
if self._host_pool.available_blocks() < num:
|
|
evict_blocks = self._radix_tree.evict_host_nodes(num - self._host_pool.available_blocks())
|
|
if evict_blocks is not None:
|
|
self._host_pool.release(evict_blocks)
|
|
return self._host_pool.allocate(num) or []
|
|
except Exception as e:
|
|
logger.error(f"allocate_host_blocks error: {e}, {str(traceback.format_exc())}")
|
|
return []
|
|
|
|
def free_device_blocks(self, block_ids: List[int]) -> None:
|
|
"""
|
|
Free device blocks back to the pool.
|
|
|
|
Args:
|
|
block_ids: List of block indices to free
|
|
"""
|
|
if not block_ids:
|
|
return
|
|
|
|
with self._lock:
|
|
self._device_pool.release(block_ids)
|
|
|
|
def free_host_blocks(self, block_ids: List[int]) -> None:
|
|
"""
|
|
Free host blocks back to the pool.
|
|
|
|
Args:
|
|
block_ids: List of block indices to free
|
|
"""
|
|
if not block_ids:
|
|
return
|
|
self._host_pool.release(block_ids)
|
|
|
|
def free_all_device_blocks(self) -> int:
|
|
"""
|
|
Free all device blocks.
|
|
|
|
Returns:
|
|
Number of blocks freed
|
|
"""
|
|
with self._lock:
|
|
freed = self._device_pool.used_blocks()
|
|
self._device_pool.reset()
|
|
return freed
|
|
|
|
def free_all_host_blocks(self) -> int:
|
|
"""
|
|
Free all host blocks.
|
|
|
|
Returns:
|
|
Number of blocks freed
|
|
"""
|
|
with self._lock:
|
|
freed = self._host_pool.used_blocks()
|
|
self._host_pool.reset()
|
|
return freed
|
|
|
|
def resize_device_pool(self, new_num_blocks: int) -> bool:
|
|
"""
|
|
Resize the device block pool.
|
|
|
|
Supports both expansion and shrinking. Shrinking will fail if
|
|
there are more used blocks than the new size.
|
|
|
|
Args:
|
|
new_num_blocks: New total number of blocks for device pool
|
|
|
|
Returns:
|
|
True if resize was successful, False otherwise
|
|
"""
|
|
logger.info(f"resize_device_pool: {self._device_pool.available_blocks()} -> {new_num_blocks}")
|
|
with self._lock:
|
|
if self._device_pool.resize(new_num_blocks):
|
|
self.num_gpu_blocks = new_num_blocks
|
|
return True
|
|
return False
|
|
|
|
# ============ Legacy Compatibility Methods ============
|
|
# These methods provide backward compatibility with PrefixCacheManager interface
|
|
# for resource_manager.py
|
|
|
|
def write_cache_to_storage(self, req: Any) -> None:
|
|
"""
|
|
Write request cache to storage if storage is enabled.
|
|
|
|
Args:
|
|
req: The request object containing cache data to write
|
|
"""
|
|
if self._storage_scheduler is None:
|
|
return
|
|
# TODO: Implement storage write logic when storage is enabled
|
|
pass
|
|
|
|
@property
|
|
def gpu_free_block_list(self) -> List[int]:
|
|
"""
|
|
Get list of free GPU block indices (legacy alias).
|
|
|
|
Returns list of available device block IDs for compatibility
|
|
with PrefixCacheManager.gpu_free_block_list.
|
|
"""
|
|
# Return list representation of available blocks
|
|
return list(self._device_pool._free_blocks)
|
|
|
|
@property
|
|
def available_gpu_resource(self) -> float:
|
|
"""
|
|
Get available GPU resource ratio (legacy alias).
|
|
|
|
Returns the ratio of free blocks to total blocks.
|
|
"""
|
|
if self.num_gpu_blocks == 0:
|
|
return 0.0
|
|
return self._device_pool.available_blocks() / self.num_gpu_blocks
|
|
|
|
def allocate_gpu_blocks(self, request: Request, num_blocks: int) -> Optional[List[int]]:
|
|
"""
|
|
Allocate GPU blocks (legacy alias for allocate_device_blocks).
|
|
|
|
Args:
|
|
request: Request object containing match result
|
|
num_blocks: Number of blocks to allocate
|
|
|
|
Returns:
|
|
List of allocated block indices, or None if allocation failed
|
|
"""
|
|
return self.allocate_device_blocks(request, num_blocks)
|
|
|
|
def can_allocate_gpu_blocks(self, num_blocks: int) -> bool:
|
|
"""
|
|
Check if GPU blocks can be allocated (legacy alias).
|
|
|
|
Args:
|
|
num_blocks: Number of blocks to check
|
|
|
|
Returns:
|
|
True if allocation is possible, False otherwise
|
|
"""
|
|
return self.can_allocate_device_blocks(num_blocks)
|
|
|
|
def update_cache_config(self, new_cfg) -> None:
|
|
"""
|
|
Update cache configuration.
|
|
|
|
Args:
|
|
new_cfg: New cache configuration object
|
|
"""
|
|
self.cache_config = new_cfg
|
|
new_num_blocks = getattr(new_cfg, "total_block_num", None)
|
|
if new_num_blocks is not None:
|
|
self.resize_device_pool(new_num_blocks)
|
|
|
|
# ============ Three-Level Cache Matching ============
|
|
|
|
def match_prefix(
|
|
self,
|
|
request: Request,
|
|
skip_storage: bool = True,
|
|
) -> None:
|
|
"""
|
|
Execute three-level cache matching (Device -> Host -> Storage).
|
|
|
|
This is the main entry point for prefix matching during scheduling.
|
|
Only effective when prefix caching is enabled. The result is stored
|
|
in request._match_result.
|
|
|
|
Args:
|
|
request: Request object containing prompt hashes
|
|
skip_storage: If True, skip storage-level matching
|
|
|
|
Returns:
|
|
None. Match result is stored in request._match_result.
|
|
"""
|
|
if not self.enable_prefix_caching or self._radix_tree is None:
|
|
request._match_result = MatchResult()
|
|
return
|
|
|
|
with self._lock:
|
|
try:
|
|
result = MatchResult()
|
|
block_hashes = request.prompt_hashes
|
|
|
|
# Step 1: Match Device and Host cache via RadixTree
|
|
matched_nodes = self._radix_tree.find_prefix(block_hashes)
|
|
|
|
# Split matched_nodes into device blocks and host blocks
|
|
if self.enable_host_cache:
|
|
for node in matched_nodes:
|
|
if node.is_on_device():
|
|
result.device_nodes.append(node)
|
|
elif node.is_on_host():
|
|
result.host_nodes.append(node)
|
|
else:
|
|
result.device_nodes = matched_nodes
|
|
|
|
# Calculate remaining hashes to match
|
|
matched_count = result.matched_device_nums + result.matched_host_nums
|
|
remaining_hashes = block_hashes[matched_count:]
|
|
|
|
# Step 2: Match Storage (if enabled and not skipped)
|
|
if not skip_storage and self._storage_scheduler and remaining_hashes:
|
|
storage_matches = self._match_storage(remaining_hashes)
|
|
result.storage_nodes = self.prepare_prefetch_metadata(storage_matches)
|
|
|
|
# Step 3: Increment ref count for matched blocks(only first match node)
|
|
if not (self._storage_scheduler and skip_storage):
|
|
self._radix_tree.increment_ref_nodes(matched_nodes)
|
|
|
|
logger.info(
|
|
f"match_prefix for request_id: {request.request_id} total_hashes: {len(block_hashes)}, "
|
|
f"total_matched: {result.total_matched_blocks} (device_blocks={result.matched_device_nums}, "
|
|
f"host_blocks={result.matched_host_nums}, storage_hashes={result.matched_storage_nums})"
|
|
)
|
|
|
|
matched_device_ids = [n.block_id for n in result.device_nodes]
|
|
matched_host_ids = [n.block_id for n in result.host_nodes]
|
|
logger.debug(
|
|
f"[match_prefix] request_id={request.request_id} "
|
|
f"matched_device_block_ids={matched_device_ids} "
|
|
f"matched_host_block_ids={matched_host_ids}"
|
|
)
|
|
request._match_result = result
|
|
except Exception as e:
|
|
logger.error(f"match_prefix error: {e}, {str(traceback.format_exc())}")
|
|
|
|
def _match_storage(self, hash_values: List[str]) -> List[str]:
|
|
"""
|
|
Match hash values against storage.
|
|
|
|
Args:
|
|
hash_values: List of hash values to check
|
|
|
|
Returns:
|
|
List of hashes that exist in storage
|
|
"""
|
|
if not self._storage_scheduler:
|
|
return []
|
|
|
|
try:
|
|
if not self._storage_scheduler.is_connected():
|
|
self._storage_scheduler.connect()
|
|
|
|
existence_map = self._storage_scheduler.query(hash_values)
|
|
return [h for h, exists in existence_map.items() if exists]
|
|
except Exception:
|
|
return []
|
|
|
|
# ============ Eviction Methods ============
|
|
|
|
def _evict_blocks(self, num_blocks: int) -> Optional[List[int]]:
|
|
"""
|
|
Evict device blocks to free device memory.
|
|
|
|
In write_through_selective policy:
|
|
- Blocks with backup (backuped=True): Update metadata only, no actual data transfer needed
|
|
- Blocks without backup but hit_count >= threshold: Trigger emergency backup, then evict
|
|
- Blocks without backup and hit_count < threshold: Release directly
|
|
|
|
Eviction flow (for other policies):
|
|
1. Try to allocate host block ids for device->host eviction
|
|
2. If not enough host blocks, evict host nodes first to free host blocks
|
|
3. Evict device blocks to host using RadixTree.evict_device_to_host()
|
|
4. Free the evicted device blocks back to the pool
|
|
|
|
Args:
|
|
num_blocks: Number of device blocks to evict
|
|
|
|
Returns:
|
|
List of evicted device block ids, or None if eviction failed
|
|
"""
|
|
if not self.enable_prefix_caching or self._radix_tree is None:
|
|
logger.warning("_evict_blocks: prefix caching not enabled")
|
|
return None
|
|
|
|
if num_blocks <= 0:
|
|
return [], []
|
|
|
|
try:
|
|
with self._lock:
|
|
host_block_ids = []
|
|
|
|
# Step 1: Check if we have enough evictable device blocks
|
|
stats = self._radix_tree.get_stats()
|
|
if stats.evictable_device_count < num_blocks:
|
|
logger.warning(
|
|
f"_evict_blocks: not enough evictable device blocks, "
|
|
f"needed: {num_blocks}, available: {stats.evictable_device_count}"
|
|
)
|
|
return None
|
|
|
|
# Step 2: Handle eviction based on write policy
|
|
if self.enable_host_cache:
|
|
if self._write_policy == "write_through_selective":
|
|
# write_through_selective policy: optimize eviction based on backup status
|
|
released_device_ids = self._radix_tree.evict_nodes_selective(num_blocks=num_blocks)
|
|
elif self._write_policy == "write_back":
|
|
# write_back policy:: allocate host blocks and evict to host
|
|
host_block_ids = self.allocate_host_blocks(num_blocks)
|
|
if host_block_ids is None or len(host_block_ids) < num_blocks:
|
|
logger.warning("_evict_blocks: failed to allocate host blocks")
|
|
return None
|
|
|
|
released_device_ids = self._radix_tree.evict_device_to_host(
|
|
num_blocks=num_blocks,
|
|
host_block_ids=host_block_ids,
|
|
)
|
|
else:
|
|
# No host cache, evict device nodes directly
|
|
released_device_ids = self._radix_tree.evict_device_nodes(num_blocks)
|
|
|
|
if released_device_ids is None:
|
|
return None
|
|
|
|
# Step 3: Free the evicted device blocks
|
|
self._device_pool.release(released_device_ids)
|
|
|
|
logger.debug(
|
|
f"[_evict_blocks] evicted_device_block_ids={released_device_ids} "
|
|
f"host_block_ids={host_block_ids} "
|
|
f"write_policy={self._write_policy} "
|
|
f"free_device_after={self._device_pool.available_blocks()}"
|
|
)
|
|
|
|
return released_device_ids, host_block_ids
|
|
except Exception as e:
|
|
logger.error(f"_evict_blocks error: {e}, {str(traceback.format_exc())}")
|
|
return None
|
|
|
|
# ============ Request Lifecycle Methods ============
|
|
|
|
def request_finish(
|
|
self,
|
|
request: Request,
|
|
) -> None:
|
|
"""
|
|
Update cache state when a request finishes.
|
|
|
|
This method:
|
|
1. Inserts new blocks into the RadixTree (for caching)
|
|
2. Decrements reference counts for matched blocks
|
|
3. Releases blocks that cannot be cached:
|
|
- Blocks without hash (partial blocks)
|
|
- Blocks wasted due to node reuse
|
|
|
|
Note: Blocks successfully inserted into RadixTree are managed by
|
|
the tree and will be freed when evicted.
|
|
|
|
Only effective when prefix caching is enabled.
|
|
|
|
Args:
|
|
request: Request object containing match result and block tables
|
|
"""
|
|
with self._lock:
|
|
try:
|
|
if self.enable_prefix_caching and self._radix_tree is not None:
|
|
match_result = request.match_result
|
|
|
|
block_hashes = request.prompt_hashes[match_result.matched_device_nums :]
|
|
device_blocks = request.block_tables[match_result.matched_device_nums :]
|
|
num_block_lens = min(len(device_blocks), len(block_hashes))
|
|
|
|
if num_block_lens > 0:
|
|
blocks = list(zip(block_hashes[:num_block_lens], device_blocks[:num_block_lens]))
|
|
start_node = match_result.device_nodes[-1] if match_result.device_nodes else None
|
|
|
|
device_nodes, wasted_block_ids = self._radix_tree.insert(blocks=blocks, start_node=start_node)
|
|
match_result.device_nodes.extend(device_nodes)
|
|
|
|
# Release blocks that were wasted due to node reuse
|
|
if wasted_block_ids:
|
|
match_result.uncached_block_ids.extend(wasted_block_ids)
|
|
|
|
# Release uncached blocks
|
|
uncached_blocks = match_result.uncached_block_ids
|
|
uncached_blocks.extend(request.block_tables[match_result.matched_device_nums :])
|
|
|
|
# Decrement ref count - blocks become evictable if ref_count reaches 0
|
|
self._radix_tree.decrement_ref_nodes(match_result.device_nodes)
|
|
self._device_pool.release(uncached_blocks)
|
|
|
|
cached_block_ids = [n.block_id for n in match_result.device_nodes]
|
|
logger.debug(
|
|
f"[request_finish] request_id={request.request_id} "
|
|
f"cached_block_ids(in_radix_tree)={cached_block_ids} "
|
|
f"released_uncached_block_ids={uncached_blocks}"
|
|
)
|
|
logger.info(
|
|
f"request {request.request_id} finished, cached blocks: {match_result.matched_device_nums}, "
|
|
f"uncached blocks freed: {len(uncached_blocks)}, "
|
|
f"total_free: {self._device_pool.available_blocks()}"
|
|
)
|
|
else:
|
|
self._device_pool.release(request.block_tables)
|
|
|
|
logger.debug(
|
|
f"[request_finish] request_id={request.request_id} "
|
|
f"prefix_caching=disabled released_block_ids={request.block_tables}"
|
|
)
|
|
logger.info(
|
|
f"request {request.request_id} finished, release blocks: {len(request.block_tables)}, "
|
|
f"total_free: {self._device_pool.available_blocks()}"
|
|
)
|
|
except Exception as e:
|
|
logger.error(f"request_finish error: {e}, {str(traceback.format_exc())}")
|
|
|
|
# ============ Write-through Selective Backup Methods ============
|
|
|
|
def get_pending_backup_count(self) -> int:
|
|
"""
|
|
Get the number of pending backup tasks.
|
|
|
|
Returns:
|
|
Number of pending backup tasks in the queue.
|
|
"""
|
|
return len(self._pending_backup)
|
|
|
|
def issue_pending_backup_to_batch_request(
|
|
self,
|
|
) -> Optional[CacheSwapMetadata]:
|
|
"""
|
|
Issue pending backup tasks and return a CacheSwapMetadata for BatchRequest.
|
|
|
|
This method is called during scheduling to prepare pending backup tasks
|
|
to be attached to a BatchRequest. The BatchRequest will pass this metadata
|
|
to the worker, which will execute the backup (Device->Host transfer).
|
|
|
|
Returns:
|
|
CacheSwapMetadata containing backup tasks, or None if no pending backup.
|
|
"""
|
|
if not self._pending_backup:
|
|
return None
|
|
|
|
if not self.enable_host_cache or not self._radix_tree:
|
|
# No host cache, clear pending backup
|
|
self._pending_backup.clear()
|
|
return None
|
|
|
|
try:
|
|
with self._lock:
|
|
if not self._pending_backup:
|
|
return None
|
|
|
|
all_device_block_ids = []
|
|
all_host_block_ids = []
|
|
freed_host_ids = []
|
|
|
|
for nodes, host_block_ids in self._pending_backup:
|
|
# Filter out nodes that are no longer valid (already evicted, etc.)
|
|
valid_nodes = []
|
|
valid_host_ids = []
|
|
|
|
for node, host_block_id in zip(nodes, host_block_ids):
|
|
# Check if node is still in evictable_device and not already backed up
|
|
if (
|
|
node.node_id in self._radix_tree._evictable_device
|
|
and not node.backuped
|
|
and node.cache_status == CacheStatus.DEVICE
|
|
):
|
|
valid_nodes.append(node)
|
|
valid_host_ids.append(host_block_id)
|
|
else:
|
|
# Node no longer valid, release the allocated host block
|
|
freed_host_ids.append(host_block_id)
|
|
|
|
if valid_nodes:
|
|
# Mark nodes as backed up
|
|
self._radix_tree.backup_blocks(valid_nodes, valid_host_ids)
|
|
|
|
# Collect device block IDs
|
|
all_device_block_ids.extend([node.block_id for node in valid_nodes])
|
|
all_host_block_ids.extend(valid_host_ids)
|
|
|
|
# Release invalid host block allocations
|
|
if freed_host_ids:
|
|
self._host_pool.release(freed_host_ids)
|
|
|
|
# Clear pending backup
|
|
self._pending_backup.clear()
|
|
self._pending_block_ids.clear()
|
|
|
|
# Create and return CacheSwapMetadata
|
|
if all_device_block_ids:
|
|
evict_metadata = CacheSwapMetadata(
|
|
src_block_ids=all_device_block_ids,
|
|
dst_block_ids=all_host_block_ids,
|
|
src_type=CacheLevel.DEVICE,
|
|
dst_type=CacheLevel.HOST,
|
|
)
|
|
return evict_metadata
|
|
|
|
return None
|
|
|
|
except Exception as e:
|
|
logger.error(f"issue_pending_backup_to_batch_request error: {e}, {str(traceback.format_exc())}")
|
|
# Clear pending backup on error to avoid infinite accumulation
|
|
self._pending_backup.clear()
|
|
self._pending_block_ids.clear()
|
|
return None
|
|
|
|
def check_and_add_pending_backup(
|
|
self,
|
|
) -> None:
|
|
"""
|
|
Check for nodes that meet backup criteria and add them to pending backup queue.
|
|
|
|
This method is called after request_finish to check if any nodes
|
|
in the radix tree meet the write_through_selective backup criteria.
|
|
|
|
For write_through_selective policy:
|
|
- Nodes with hit_count >= threshold that are not yet backed up
|
|
- are added to the pending backup queue
|
|
|
|
The pending backup will be issued to the next scheduled request.
|
|
"""
|
|
if not self.enable_host_cache or not self._radix_tree:
|
|
return
|
|
|
|
if self._write_policy != "write_through_selective":
|
|
return
|
|
|
|
try:
|
|
with self._lock:
|
|
# Get candidates from radix tree
|
|
candidates = self._radix_tree.get_candidates_for_backup(
|
|
self._write_through_threshold,
|
|
self._pending_block_ids,
|
|
)
|
|
|
|
if not candidates:
|
|
return
|
|
|
|
# Allocate host blocks for backup
|
|
host_block_ids = self.allocate_host_blocks(len(candidates))
|
|
if host_block_ids is None or len(host_block_ids) < len(candidates):
|
|
logger.warning(
|
|
f"check_and_add_pending_backup: failed to allocate host blocks, "
|
|
f"needed={len(candidates)}, got={len(host_block_ids) if host_block_ids else 0}"
|
|
)
|
|
if host_block_ids:
|
|
self._host_pool.release(host_block_ids)
|
|
return
|
|
|
|
# Add to pending backup queue
|
|
self._pending_backup.append((candidates, host_block_ids))
|
|
self._pending_block_ids.extend([node.block_id for node in candidates])
|
|
|
|
except Exception as e:
|
|
logger.error(f"check_and_add_pending_backup error: {e}, {str(traceback.format_exc())}")
|
|
|
|
# ============ Host/Device Transfer Coordination ============
|
|
|
|
def offload_to_host(self, block_indices: List[int]) -> bool:
|
|
"""
|
|
Offload blocks from device to host memory.
|
|
|
|
This is a coordination method. Actual data transfer happens in Worker.
|
|
|
|
Args:
|
|
block_indices: List of block indices to offload
|
|
|
|
Returns:
|
|
True if successful, False otherwise
|
|
"""
|
|
try:
|
|
with self._lock:
|
|
# Allocate host blocks
|
|
host_indices = self._host_pool.allocate(len(block_indices))
|
|
if host_indices is None or len(host_indices) != len(block_indices):
|
|
# Not enough host memory, release what we allocated
|
|
if host_indices:
|
|
self._host_pool.release(host_indices)
|
|
return False
|
|
|
|
# Perform the offload (actual data transfer would happen in Worker)
|
|
for i, dev_idx in enumerate(block_indices):
|
|
host_idx = host_indices[i]
|
|
metadata = self._device_pool.get_metadata(dev_idx)
|
|
if metadata:
|
|
self._host_pool.set_metadata(host_idx, metadata)
|
|
|
|
# Release device blocks
|
|
self._device_pool.release(block_indices)
|
|
|
|
return True
|
|
except Exception as e:
|
|
logger.error(f"offload_to_host error: {e}, {str(traceback.format_exc())}")
|
|
return False
|
|
|
|
def load_from_host(self, block_indices: List[int]) -> bool:
|
|
"""
|
|
Load blocks from host to device memory.
|
|
|
|
This is a coordination method. Actual data transfer happens in Worker.
|
|
|
|
Args:
|
|
block_indices: List of host block indices to load
|
|
|
|
Returns:
|
|
True if successful, False otherwise
|
|
"""
|
|
try:
|
|
with self._lock:
|
|
# Allocate device blocks
|
|
dev_indices = self._device_pool.allocate(len(block_indices))
|
|
if dev_indices is None or len(dev_indices) != len(block_indices):
|
|
if dev_indices:
|
|
self._device_pool.release(dev_indices)
|
|
return False
|
|
|
|
# Perform the load (actual data transfer would happen in Worker)
|
|
|
|
# Release host blocks
|
|
self._host_pool.release(block_indices)
|
|
|
|
return True
|
|
except Exception as e:
|
|
logger.error(f"load_from_host error: {e}, {str(traceback.format_exc())}")
|
|
return False
|
|
|
|
# ============ Prefetch Methods ============
|
|
|
|
def prepare_prefetch_metadata(
|
|
self,
|
|
storage_hashes: List[str],
|
|
) -> Optional[List["BlockNode"]]:
|
|
"""
|
|
Prepare metadata for storage prefetch operation.
|
|
|
|
Called when storage cache is matched, allocates host blocks
|
|
for the prefetch target.
|
|
|
|
Args:
|
|
storage_hashes: List of storage hash values to prefetch
|
|
|
|
Returns:
|
|
List of BlockNode objects if successful, None or empty list otherwise.
|
|
Each node's block_id contains the actual block assigned
|
|
(may differ from originally allocated if node was reused).
|
|
"""
|
|
if not storage_hashes:
|
|
return None
|
|
|
|
try:
|
|
with self._lock:
|
|
# Check if we have enough host blocks
|
|
if not self.can_allocate_host_blocks(len(storage_hashes)):
|
|
return []
|
|
|
|
# Allocate host blocks for prefetch
|
|
host_block_ids = self._host_pool.allocate(len(storage_hashes))
|
|
if host_block_ids is None or len(host_block_ids) == 0:
|
|
return []
|
|
|
|
blocks = list(zip(storage_hashes, host_block_ids))
|
|
prefetch_nodes, wasted_block_ids = self._radix_tree.insert(
|
|
blocks=blocks, cache_status=CacheStatus.LOADING_FROM_STORAGE
|
|
)
|
|
# Release any blocks that were wasted due to node reuse
|
|
if wasted_block_ids:
|
|
self._host_pool.release(wasted_block_ids)
|
|
|
|
return prefetch_nodes
|
|
except Exception as e:
|
|
logger.error(f"prepare_prefetch_metadata error: {e}, {str(traceback.format_exc())}")
|
|
return []
|
|
|
|
# ============ Reset Methods ============
|
|
|
|
def reset_cache(self) -> bool:
|
|
"""
|
|
Reset cache state.
|
|
|
|
Implements abstract method from KVCacheBase.
|
|
Clears block pools and radix tree.
|
|
|
|
Returns:
|
|
True if successful, False otherwise
|
|
"""
|
|
try:
|
|
with self._lock:
|
|
self._device_pool.reset()
|
|
self._host_pool.reset()
|
|
if self._radix_tree is not None:
|
|
self._radix_tree.reset()
|
|
self._eviction_in_progress = False
|
|
logger.info("reset_cache: all cache state cleared")
|
|
return True
|
|
except Exception as e:
|
|
logger.error(f"reset_cache failed: {e}, {str(traceback.format_exc())}")
|
|
return False
|
|
|
|
# ============ Statistics Methods ============
|
|
|
|
def get_stats(self) -> Dict[str, Any]:
|
|
"""Get cache manager statistics."""
|
|
return {
|
|
"initialized": self._initialized,
|
|
"num_gpu_blocks": self.num_gpu_blocks,
|
|
"num_cpu_blocks": self.num_cpu_blocks,
|
|
"block_size": self.block_size,
|
|
"device_pool": self._device_pool.get_stats(),
|
|
"host_pool": self._host_pool.get_stats(),
|
|
"radix_tree": self._radix_tree.get_stats() if self._radix_tree else None,
|
|
"num_free_device_blocks": self.num_free_device_blocks,
|
|
"num_free_host_blocks": self.num_free_host_blocks,
|
|
"storage_enabled": self._storage_scheduler is not None,
|
|
}
|
|
|
|
def get_memory_usage(self) -> Dict[str, Any]:
|
|
"""
|
|
Get memory usage statistics.
|
|
|
|
Returns:
|
|
Dictionary with memory usage information
|
|
"""
|
|
device_stats = self._device_pool.get_stats()
|
|
host_stats = self._host_pool.get_stats()
|
|
|
|
return {
|
|
"device": {
|
|
"total_blocks": device_stats["num_blocks"],
|
|
"used_blocks": device_stats["used"],
|
|
"free_blocks": device_stats["available"],
|
|
"usage_percent": (
|
|
device_stats["used"] / device_stats["num_blocks"] * 100 if device_stats["num_blocks"] > 0 else 0
|
|
),
|
|
},
|
|
"host": {
|
|
"total_blocks": host_stats["num_blocks"],
|
|
"used_blocks": host_stats["used"],
|
|
"free_blocks": host_stats["available"],
|
|
"usage_percent": (
|
|
host_stats["used"] / host_stats["num_blocks"] * 100 if host_stats["num_blocks"] > 0 else 0
|
|
),
|
|
},
|
|
}
|