diff --git a/docs/source/developer_guide/feature_guide/KV_Cache_Pool_Guide.md b/docs/source/developer_guide/feature_guide/KV_Cache_Pool_Guide.md new file mode 100644 index 0000000000..f29595f5c1 --- /dev/null +++ b/docs/source/developer_guide/feature_guide/KV_Cache_Pool_Guide.md @@ -0,0 +1,83 @@ +# KV Cache Pool + +## Why KV Cache Pool? + +Prefix caching is an important feature in LLM inference that can reduce prefill computation time drastically. + +However, the performance gain from prefix caching is highly dependent on cache hit rate, while cache hit rate can be limited if one only uses HBM for kv cache storage. + +Hence, KV Cache Pool is proposed to utilize various types of storages including HBM,DRAM and SSD, making a pool for KV Cache storage, while making the prefix of requests visible across all nodes, increasing the cache hit rate for all requests. + +vLLM Ascend currently supports [MooncakeStore](https://github.com/kvcache-ai/Mooncake): one of the most recognized KV Cache storage engine; + +While one can utilize mooncake store in vLLM V1 engine by setting it as a remote backend of LMCache with GPU (see [Tutorial](https://github.com/LMCache/LMCache/blob/dev/examples/kv_cache_reuse/remote_backends/mooncakestore/README.md)), we find it would be better to integrate a connector that directly supports mooncake store and can utilize the data transfer strategy to one that is best fit to Huawei NPU hardware. + +Hence, we propose to integrate Mooncake Store with a brand new **MooncakeStoreConnectorV1**, which is indeed largly inspired by **LMCacheConnectorV1** (see the `How is MooncakestoreConnectorV1 Implemented?` section). + +## Usage + +vLLM Ascend Currently supports Mooncake Store for KV Cache Pool. To enable Mooncake Store, one needs to config `kv-transfer-config` and choose `MooncakeStoreConnector` as KV Connector. + +For step-by-step deployment and configuration, please refer to the KV Pool User Guide at `vllm-ascend/docs/source/user_guide/feature_guide/kv_pool_mooncake.md` + +## How it works? +The KV Cache Pool integrates multiple memory tiers (HBM, DRAM, SSD, etc.) through a connector-based architecture. + +Each connector implements a unified interface for storing, retrieving, and transferring KV blocks between tiers, depending on access frequency and hardware bandwidth. + +When combined with vLLM’s Prefix Caching mechanism, the pool enables efficient caching both locally (in HBM) and globally (via Mooncake), ensuring that frequently used prefixes remain hot while less frequently accessed KV data can spill over to lower-cost memory. + +### 1. Combining KV Cache Pool with HBM Prefix Caching +Prefix Caching with HBM is already supported by the vLLM V1 Engine. +By introducing KV Connector V1, users can seamlessly combine HBM-based Prefix Caching with Mooncake-backed KV Pool. + + The user can enable both features simply by enabling Prefix Caching, which is enabled by default in vLLM V1 unless the --no_enable_prefix_caching flag is set, and setting up the KV Connector for KV Pool(e.g. the MooncakeStoreConnector) + +**Workflow**: + +1. The engine first checks for prefix hits in the HBM cache. + +2. After getting the number of hit tokens on HBM, it queries the KV Pool via the connector, if there is additional hits in KV Pool, we get the **additional blocks only** from KV Pool, and get the rest of the blocks directly from HBM to minimize the data transfer latency. + +3. After the KV Caches in KV Pool is load into HBM, the remaining process is the same as Prefix Caching in HBM. + +### 2. Combining KV Cache Pool with Mooncake PD Disaggregation + +When used together with Mooncake PD (Prefill-Decode) Disaggregation, the KV Cache Pool can further decouple prefill and decode stages across devices or nodes. + +Currently, we only perform put and get operation of KV Pool for **Prefiil Nodes**, and Decode Nodes get their KV Cache from Mooncake P2P KV Connector, i.e. MooncakeConnector. + + The key benefit of doing this is that we can keep the gain in performance by computing less with Prefix Caching from HBM and KV Pool for Prefill Nodes while not sacrificing the data transfer efficiency between Prefill and Decode nodes with P2P KV Connector that transfer KV Caches between NPU devices directly. + +To Enable this feature, we need to setup both Mooncake Connector and Mooncake Store connector with a Multi Connector, which is a KV Connector class provided by vLLM that can call multiple KV Connectors in specific order; + +For details, please also refer to the Mooncake Connector Store Deployment Guide. + +## How is MooncakestoreConnectorV1 Implemented? +**MooncakestoreConnectorV1** inhereits the KV Connector V1 class in vLLM V1: through implementing the required methods defined in the KV connector V1 base class, one can integrate a thrid-party KV cache transfer/storage backend into the vLLM framework. + +MooncakeStoreConnectorV1 is also largly inspried by LMCacheConnectorV1 in term of the `Lookup Engine`/`Lookup Client` design for looking up KV cache keys, and the `ChunkedTokenDatabase` class for processing tokens into prefix-aware hashes as well as other hashing related designs. On top of this, we have also added our own design including `KVTransferThread` that allows async `get` and `put` of KV caches with multi-threading, and NPU-related data transfer optimization such as removing the `LocalBuffer` in LMCache to remove redundant data transfer. + +The KV Connector methods that need to be implemented can be categorized into scheduler-side methods that are called in V1 scheduler and worker-side methods that are called in V1 worker, namely: +### KV Connector Scheduler-Side Methods: +`get_num_new_matched_tokens`: Get prefix cache hit in number of tokens through looking up into the KV pool. +`update_states_after_alloc`: Update KVConnector state after temporary buffer alloc. +`build_connector_meta`: Attach the connector metadata to the request object. +`request_finished`: Once a request is finished, determine whether request blocks should be freed now or will be sent asynchronously and freed later. +### Connector Worker-Side Methods: +`register_kv_caches`: Register KV cache buffers needed for KV cache transfer. +`start_load_kv`: Perform KV cache load operation that transfers KV cache from storage to device. +`wait_for_layer_load`: Optional; Wait for layer load in layerwise + async KV load scenario. +`save_kv_layer`: Optional Do layerwise KV cache put into KV Pool. +`wait_for_save`: Wait for KV Save to finish if async KV cache save/put. +`get_finished` Get request that finished KV transfer, `done_sending` if `put` finished, `done_reciving` if `get` finished. + +## DFX +1. When looking up a key in KV Pool, if we cannot find the key, there is no Cache Hit for this specific block; we return no hit for this block and do not look up further blocks for current request. +2. Similaly, when we are trying to put a block into KV Pool and failed, we do not put further blocks (subject to change). + +## Limitation + +1. Currently, Mooncake Store for vLLM-Ascend only supports DRAM as the storage for KV Cache pool. + +2. For now, if we successfully looked up a key and found it exists, but failed to get it when calling KV Pool's get function, we just output a log indicating the get operation failed and keep going; hence, the accuracy of that specific request may be affected. gWe will handle this situation by falling back the request and re-compute everything assuming there's no prefix cache hit (or even better, revert only one block and keep using the Prefix Caches before that). diff --git a/docs/source/developer_guide/feature_guide/index.md b/docs/source/developer_guide/feature_guide/index.md index ce91062762..0b1e4b080e 100644 --- a/docs/source/developer_guide/feature_guide/index.md +++ b/docs/source/developer_guide/feature_guide/index.md @@ -7,4 +7,5 @@ This section provides an overview of the features implemented in vLLM Ascend. De :maxdepth: 1 patch ModelRunner_prepare_inputs +KV_Cache_Pool_Guide ::: diff --git a/docs/source/user_guide/feature_guide/index.md b/docs/source/user_guide/feature_guide/index.md index 61c333b0f6..b0c0fd7d46 100644 --- a/docs/source/user_guide/feature_guide/index.md +++ b/docs/source/user_guide/feature_guide/index.md @@ -13,4 +13,5 @@ lora eplb_swift_balancer netloader dynamic_batch +kv_pool_mooncake ::: diff --git a/examples/disaggregated_prefill_v1/mooncake_connector_store_deployment_guide.md b/docs/source/user_guide/feature_guide/kv_pool_mooncake.md similarity index 84% rename from examples/disaggregated_prefill_v1/mooncake_connector_store_deployment_guide.md rename to docs/source/user_guide/feature_guide/kv_pool_mooncake.md index 82640215a8..3cce00b095 100644 --- a/examples/disaggregated_prefill_v1/mooncake_connector_store_deployment_guide.md +++ b/docs/source/user_guide/feature_guide/kv_pool_mooncake.md @@ -88,33 +88,33 @@ python3 -m vllm.entrypoints.openai.api_server \ --max-num-batched-tokens 4096 \ --kv-transfer-config \ '{ - "kv_connector": "MultiConnector", - "kv_role": "kv_producer", - "kv_connector_extra_config": { - "use_layerwise": false, - "connectors": [ - { - "kv_connector": "MooncakeConnectorV1", - "kv_role": "kv_producer", - "kv_port": "20001", - "kv_connector_extra_config": { - "prefill": { - "dp_size": 1, - "tp_size": 1 - }, - "decode": { - "dp_size": 1, - "tp_size": 1 - } - } - }, - { - "kv_connector": "MooncakeConnectorStoreV1", - "kv_role": "kv_producer", + "kv_connector": "MultiConnector", + "kv_role": "kv_producer", + "kv_connector_extra_config": { + "use_layerwise": false, + "connectors": [ + { + "kv_connector": "MooncakeConnectorV1", + "kv_role": "kv_producer", + "kv_port": "20001", + "kv_connector_extra_config": { + "prefill": { + "dp_size": 1, + "tp_size": 1 + }, + "decode": { + "dp_size": 1, + "tp_size": 1 + } + } + }, + { + "kv_connector": "MooncakeConnectorStoreV1", + "kv_role": "kv_producer", "mooncake_rpc_port":"0" - } - ] - } + } + ] + } }' > p.log 2>&1 ``` @@ -151,33 +151,33 @@ python3 -m vllm.entrypoints.openai.api_server \ --max-num-batched-tokens 4096 \ --kv-transfer-config \ '{ - "kv_connector": "MultiConnector", - "kv_role": "kv_consumer", - "kv_connector_extra_config": { - "use_layerwise": false, - "connectors": [ - { - "kv_connector": "MooncakeConnectorV1", - "kv_role": "kv_consumer", - "kv_port": "20002", - "kv_connector_extra_config": { - "prefill": { - "dp_size": 1, - "tp_size": 1 - }, - "decode": { - "dp_size": 1, - "tp_size": 1 - } - } - }, - { - "kv_connector": "MooncakeConnectorStoreV1", - "kv_role": "kv_consumer", + "kv_connector": "MultiConnector", + "kv_role": "kv_consumer", + "kv_connector_extra_config": { + "use_layerwise": false, + "connectors": [ + { + "kv_connector": "MooncakeConnectorV1", + "kv_role": "kv_consumer", + "kv_port": "20002", + "kv_connector_extra_config": { + "prefill": { + "dp_size": 1, + "tp_size": 1 + }, + "decode": { + "dp_size": 1, + "tp_size": 1 + } + } + }, + { + "kv_connector": "MooncakeConnectorStoreV1", + "kv_role": "kv_consumer", "mooncake_rpc_port":"1" - } - ] - } + } + ] + } }' > d.log 2>&1 ``` @@ -252,12 +252,12 @@ python3 -m vllm.entrypoints.openai.api_server \ --max-num-batched-tokens 4096 \ --kv-transfer-config \ '{ - "kv_connector": "MooncakeConnectorStoreV1", - "kv_role": "kv_both", - "kv_connector_extra_config": { - "use_layerwise": false, + "kv_connector": "MooncakeConnectorStoreV1", + "kv_role": "kv_both", + "kv_connector_extra_config": { + "use_layerwise": false, "mooncake_rpc_port":"0" - } + } }' > mix.log 2>&1 ``` @@ -275,4 +275,4 @@ Long question: ``` curl -s http://localhost:8100/v1/completions -H "Content-Type: application/json" -d '{ "model": "/xxxxx/Qwen2.5-7B-Instruct", "prompt": "Given the accelerating impacts of climate change—including rising sea levels, increasing frequency of extreme weather events, loss of biodiversity, and adverse effects on agriculture and human health—there is an urgent need for a robust, globally coordinated response. However, international efforts are complicated by a range of factors: economic disparities between high-income and low-income countries, differing levels of industrialization, varying access to clean energy technologies, and divergent political systems that influence climate policy implementation. In this context, how can global agreements like the Paris Accord be redesigned or strengthened to not only encourage but effectively enforce emission reduction targets? Furthermore, what mechanisms can be introduced to promote fair and transparent technology transfer, provide adequate financial support for climate adaptation in vulnerable regions, and hold nations accountable without exacerbating existing geopolitical tensions or disproportionately burdening those with historically lower emissions?", "max_tokens": 256, "temperature":0.0 }' -``` \ No newline at end of file +```