KV Load Failure Recovery Test
This example builds upon the disaggregated-prefill-v1 example in examples/offline_inference.
It demonstrates vLLM's ability to recover from KV load failures in both synchronous and asynchronous loading modes. The goal is to verify that vLLM correctly identifies invalid KV blocks, reschedules the affected requests, and ensures successful and consistent output.
Files
-
prefill_example.py– performs the prefill stage and saves KV data (same as indisaggregated-prefill-v1). -
decode_example.py– performs the decode stage. Accepts:--simulate-failure: simulates KV load failure using a custom connector.--async-load: enables asynchronous KV loading mode.
-
rogue_shared_storage_connector.py– definesRogueSharedStorageConnector, a subclass ofSharedStorageConnector, that simulates missing or corrupted external KV blocks by failing to load blocks for the first decode request. -
run.sh– orchestrates the test: runs the prefill stage, then three decode stages:- Normal decode (baseline).
- Decode with simulated sync KV load failure.
- Decode with simulated async KV load failure.
Finally, it compares the output of the baseline with the recovered outputs to verify correctness.
How It Works
- The test dynamically loads
RogueSharedStorageConnectorviaKVTransferConfig.kv_connector_module_path, enabling controlled simulation of load failures without modifying the original connector. - The decode stages that simulate failure are expected to trigger recovery logic in vLLM, resulting in the same output as the baseline decode.
- If recovery fails, the script prints a unified diff of the output mismatch and exits with error.
Usage
./run.sh