Complete Guide: SGLang HiCache with Mooncake Backend#
This document describes how to use Mooncake as the storage backend for SGLang HiCache.
Looking for a streamlined setup? Start with the Quick Start guide and return here for deeper explanations and advanced configuration.
Introduction#
About Mooncake#
Mooncake aims to enhance the inference efficiency of large language models (LLMs), especially in slow object storage environments, by constructing a multi-level caching pool on high-speed interconnected DRAM/SSD resources. Compared to traditional caching systems, Mooncake utilizes (GPUDirect) RDMA technology to transfer data directly in a zero-copy manner, while maximizing the use of multi-NIC resources on a single machine.
For more details about Mooncake, please refer to Mooncake project and Mooncake documents.
About SGLang HiCache#
SGLang HiCache is a hierarchical KV caching system that extends SGLang’s RadixAttention with advanced multi-tier memory management capabilities. It implements a scalable hierarchical storage architecture that spans GPU memory, CPU memory, and external storage layers, delivering significant performance improvements for large language model inference.
HiCache introduces a HiRadixTree that acts as a page table for referencing KV caches across different memory tiers: GPU Memory (L1), CPU Memory (L2), Mooncake and other Storage Backends (L3).
The system includes an intelligent cache controller that automatically manages data movement between tiers, implementing optimized prefetching strategies and multiple write policies (write-through, write-through-selective, and write-back).
For more details about SGLang HiCache, please refer to HiCache system design document and this blog.
Mooncake & SGLang HiCache#
Mooncake serves as a high-performance L3 storage backend for SGLang HiCache, enabling distributed KV cache storage across multiple servers with RDMA-accelerated data transfer. This integration addresses the capacity limitations of traditional GPU-only or GPU+CPU caching by providing virtually unlimited cache storage through a distributed memory pool.
When a cache miss occurs in L1 and L2, HiCache automatically fetches the required KV cache from Mooncake’s distributed memory pool. The system uses intelligent prefetching strategies to minimize latency, and utilize RDMA technology and zero-copy technique to ensure high-bandwidth, low-latency data transfer between SGLang instances and Mooncake storage nodes.
Key Advantages:
Scalable Capacity: Aggregate memory across entire clusters into large distributed pools.
Cache Sharing: KV caches can be shared by all SGLang instances in the cluster.
RDMA Acceleration: Direct memory access eliminates CPU overhead and reduces latency.
Zero Copy: Direct data transfer between L2 and Mooncake without intermediate copying, maximizing throughput.
Fault Tolerance: Distributed architecture provides resilience against individual node failures.
This integration is particularly valuable for production deployments involving long-context models, multi-turn conversations, and high-throughput serving scenarios where traditional caching approaches become capacity-constrained.
Installation#
Install SGLang#
Clone SGLang from official repo
git clone git@github.com:sgl-project/sglang.git
Build
cd sglang
pip install --upgrade pip
pip install -e "python[all]"
For more details, please refer to SGLang official installation guide.
Install Mooncake#
Method 1: with pip
pip install mooncake-transfer-engine
Method 2: from source
Clone Mooncake project:
git clone https://github.com/kvcache-ai/Mooncake --recursive
Install dependencies:
cd Mooncake
bash dependencies.sh
Build the project:
mkdir build
cd build
cmake ..
make -j
Install Mooncake:
sudo make install
For more details, please refer to Mooncake official installation guide.
Deployment#
Mooncake is a distributed system that efficiently aggregates memory resources across multiple servers. It can also be deployed on a single server for simpler setups.
When integrated with SGLang, the system conceptually consists of four key components: the master service, metadata service, store service, and the SGLang server. Among them, the master service and metadata service are responsible for object and metadata maintenance. The store service manages a contiguous memory segment that contributes to the distributed KV cache, making its memory accessible to both local and remote SGLang servers. Data transfer occurs directly between the store service and SGLang servers, bypassing the master service.
Single Server Deployment#
Launch Mooncake metadata service:
python -m mooncake.http_metadata_server
Launch Mooncake master service:
mooncake_master --eviction_high_watermark_ratio=0.95
Understanding eviction_high_watermark_ratio:
When a PutStart request fails due to insufficient memory, or when the eviction thread detects that space usage has reached the configured high watermark ratio, an eviction task is triggered to free up space by evicting a portion of objects.
Due to memory fragmentation, allocation failures may occur even when memory usage has not yet reached 100%. The actual threshold depends on the workload. This benchmark document provides memory allocation efficiency results under different scenarios. if excessive allocation failures are observed, consider lowering this parameter accordingly.
Launch Mooncake store service (Optional):
First, create and save a configuration file in JSON format. For example:
{
"local_hostname": "localhost",
"metadata_server": "http://localhost:8080/metadata",
"master_server_address": "localhost:50051",
"protocol": "rdma",
"device_name": "mlx5_0,mlx5_1",
"global_segment_size": 2684354560,
"local_buffer_size": 0
}
Parameter Explanation:
local_hostname: The hostname of thestore service.metadata_server: The network address of themetadata service. The default port is 8080.master_server_address: The network address of themaster service. The default port is 50051.protocol: The protocol used by the Mooncake. Supported values are"rdma"or"tcp". For optimal performance,"rdma"is recommended.device_name: The RDMA devices used by Mooncake. This parameter is required only when the protocol is set to"rdma". Available devices can be listed using theibv_devicescommand.global_segment_size: The amount of memory (in bytes) contributed to the global memory pool. A larger value allows Mooncake to cache more KV tensors.local_buffer_size: Local buffer is used to do request operations such asGetorPut. In this case, it is set to 0 because the instance functions solely as a storage server, contributing memory to the global pool without issuing any request operations.
Then start the store service:
python -m mooncake.mooncake_store_service --config=[config_path]
Mooncake store service configuration can also be provided via environment variables:
MOONCAKE_TE_META_DATA_SERVER="http://127.0.0.1:8080/metadata" \
MOONCAKE_GLOBAL_SEGMENT_SIZE=4294967296 \
MOONCAKE_PROTOCOL="rdma" \
MOONCAKE_DEVICE="erdma_0,erdma_1" \
MOONCAKE_MASTER=127.0.0.1:50051 \
python -m mooncake.mooncake_store_service
Note: If MOONCAKE_GLOBAL_SEGMENT_SIZE is set to a non-zero value when starting the SGLang server, launching the store service can be skipped. In this case, the SGLang server also takes on the role of the store service, which simplifies deployment but couples the two components together. Users can choose the deployment approach that best fits their needs.
Start the SGLang server with Mooncake enabled:
Mooncake configuration can be provided via environment variables. Note that, for optimal performance, the Mooncake backend currently supports only the page_first layout (which optimizes memory access patterns for KV cache operations).
There are two ways to configure Mooncake: 1. Using environment variables; 2. Using extra-config of sglang arguments.
Using env variables to configure Mooncake
MOONCAKE_TE_META_DATA_SERVER="http://127.0.0.1:8080/metadata" \
MOONCAKE_MASTER=127.0.0.1:50051 \
MOONCAKE_PROTOCOL="rdma" \
MOONCAKE_DEVICE="mlx5_0,mlx5_1" \
MOONCAKE_GLOBAL_SEGMENT_SIZE=4294967296 \
python -m sglang.launch_server \
--enable-hierarchical-cache \
--hicache-storage-backend mooncake\
--model-path [model_path]
Parameter Explanation:
MOONCAKE_TE_META_DATA_SERVER: The network address of themetadata service. The default port is 8080.MOONCAKE_MASTER: The network address of themaster service. The default port is 50051.MOONCAKE_PROTOCOL: The protocol used by Mooncake. Supported values are"rdma"or"tcp". For optimal performance,"rdma"is recommended.MOONCAKE_DEVICE: The RDMA devices used by Mooncake. This parameter is required only when the protocol is set to"rdma". Available devices can be listed using theibv_devicescommand.MOONCAKE_GLOBAL_SEGMENT_SIZE: The amount of memory (in bytes) contributed to the global memory pool. If at least onestore serviceis launched, then this value could be set to0. In this case, theSGLang serverwill not contribute any memory to the system. Note that KV tensors cached in the contributed memory will be lost once this process terminates; however, this will not cause any system errors.
Using extra-config of sglang arguments to configure Mooncake
python -m sglang.launch_server \
--enable-hierarchical-cache \
--hicache-storage-backend mooncake \
--model-path [model_path] \
--hicache-storage-backend-extra-config '{"master_server_address": "127.0.0.1:50051", "local_hostname": "localhost", "metadata_server": "http://127.0.0.1:8080/metadata", "global_segment_size": 4294967296, "local_buffer_size": 16777216, "protocol": "rdma", "device_name": "mlx5_0,mlx5_1"}'
Important: Understanding Global Segment Size
global_segment_size for store service and MOONCAKE_GLOBAL_SEGMENT_SIZE for SGLang service: This parameter specifies the amount of memory each instance contributes to the distributed memory pool. The total memory available for KV cache storage across the cluster is the sum of the memory contributed by all instances.
Adjust this value according to system’s available memory and expected cache requirements.
HiCache Related Parameters for SGLang Server
For a comprehensive overview of HiCache-related parameters, please refer to this document.
Note that, for --hicache-mem-layout {layer_first,page_first,page_first_direct}, which specifies the memory layout for the host memory pool, page_first or page_first_direct are required if use Mooncake backend.
Distributed Deployment#
Distributed deployment of Mooncake is straightforward. Similar to the single-node setup, start one metadata service and one master service for this cluster. Then start a store service on each server.
Mooncake also supports high availability mode. This mode enhances fault tolerance by running the master service as a cluster of multiple master nodes coordinated through an etcd cluster. The master nodes use etcd to elect a leader, which is responsible for handling client requests. For more details about how to deploy in this mode, please refer to our documents.
Prefill/Decode Disaggregation#
In PD disaggregation, the configurations for the metadata service, mooncake master, and the optional store service remain the same as described above. The difference is that SGLang introduces three distinct roles: prefill worker, decode worker, and router.
Among these, the prefill worker supports enabling HiCache. To run with PD disaggregation, start from the PD configuration, and add the HiCache-related parameters (as previously described for the SGLang server) to the prefill worker.
In the example below, one prefill worker, one decode worker, and one router are launched. HiCache is enabled on the prefill worker to optimize prefill performance.
Prefill worker:
MOONCAKE_TE_META_DATA_SERVER="http://127.0.0.1:8080/metadata" \
MOONCAKE_MASTER=127.0.0.1:50051 \
MOONCAKE_PROTOCOL="rdma" \
MOONCAKE_DEVICE="mlx5_1" \
MOONCAKE_GLOBAL_SEGMENT_SIZE=4294967296 \
python -m sglang.launch_server \
--model-path [model_path] \
--page-size 64 \
--enable-hierarchical-cache \
--hicache-storage-prefetch-policy timeout \
--hicache-storage-backend mooncake \
--disaggregation-mode prefill \
--disaggregation-ib-device "mlx5_1" \
--base-gpu-id 0 \
--port 30000
Decode worker:
python -m sglang.launch_server \
--model-path [model_path] \
--page-size 64 \
--disaggregation-mode decode \
--disaggregation-ib-device "mlx5_1" \
--base-gpu-id 1 \
--port 30001
Router:
python -m sglang_router.launch_router \
--pd-disaggregation \
--prefill "http://127.0.0.1:30000" \
--decode "http://127.0.0.1:30001" \
--host 0.0.0.0 \
--port 8000
Troubleshooting#
RDMA Registration Failure:
In some environments, RDMA registration may require root privileges. In this case, try running the program as root.
In certain environments (e.g., eRDMA), there is an upper limit on the total amount of RDMA memory that can be registered. Once this limit is exceeded, registration will fail. To resolve this, you can lower the value of
MOONCAKE_GLOBAL_SEGMENT_SIZE, or reduce the host memory allocated to HiCache in theSGLang server(since this memory is fully registered with RDMA to enable zero-copy).
Test Mooncake Store#
This test is intended for developers to quickly verify that the MooncakeStore class interfaces are functioning correctly.
First, start the metadata service and master service. Then run the test_mooncake_store.py. 16MB global segments size is enough to run this test.
MOONCAKE_TE_META_DATA_SERVER="http://127.0.0.1:8080/metadata" \
MOONCAKE_MASTER=127.0.0.1:50051 \
MOONCAKE_PROTOCOL="rdma" \
MOONCAKE_DEVICE="mlx5_0,mlx5_1" \
MOONCAKE_GLOBAL_SEGMENT_SIZE=16777216 \
python3 [path of test_mooncake_store.py]
If all tests pass, the message “✅ All tests passed” will be printed at the end.