[HiCache] Label radix-cache metrics per rank and split the "shrunk" prefetch reason (#39280)
This commit is contained in:
@@ -862,7 +862,7 @@ class PrefillAdder:
|
||||
"device_capacity"
|
||||
if req.needs_host_load_back()
|
||||
and req.host_loaded_length < req.host_hit_length
|
||||
else "shrunk"
|
||||
else "cache_admission_shortfall"
|
||||
)
|
||||
self.tree_cache.finish_storage_prefetch_admission(
|
||||
req.cache_request_handle,
|
||||
|
||||
@@ -25,9 +25,10 @@ from sglang.srt.mem_cache.unified_cache.component_type import ComponentType
|
||||
from sglang.srt.observability.metrics_collector import (
|
||||
STAT_LOGGER_ROLE_RADIX_CACHE,
|
||||
RadixCacheMetricsCollector,
|
||||
radix_cache_metric_labels,
|
||||
resolve_collector_class,
|
||||
)
|
||||
from sglang.srt.runtime_context import get_observability
|
||||
from sglang.srt.runtime_context import get_observability, get_parallel
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from sglang.srt.managers.cache_controller import HiCacheController
|
||||
@@ -340,7 +341,11 @@ class BasePrefixCache(ABC, PrefixCacheTrait):
|
||||
kv_events: Optional[KVCacheEventRecorder] = None
|
||||
|
||||
def init_metrics_collector(self):
|
||||
labels = {"cache_type": self.__class__.__name__}
|
||||
from sglang.srt.layers.dp_attention import is_dp_attention_enabled
|
||||
|
||||
labels = radix_cache_metric_labels(
|
||||
self.__class__.__name__, get_parallel(), is_dp_attention_enabled()
|
||||
)
|
||||
if get_observability().extra_metric_labels:
|
||||
labels.update(get_observability().extra_metric_labels)
|
||||
radix_cache_cls = resolve_collector_class(
|
||||
|
||||
@@ -2418,7 +2418,7 @@ class UnifiedRadixCache(BasePrefixCache):
|
||||
def _handle_storage_prefetch_anchor_loss(self, request: CacheRequestHandle) -> None:
|
||||
operation = self.ongoing_prefetch[request].operation
|
||||
storage_hit_end = operation.storage_start + operation.storage_hit_count
|
||||
self._finish_storage_prefetch(request, fulfilled_tokens=0, reason="shrunk")
|
||||
self._finish_storage_prefetch(request, fulfilled_tokens=0, reason="anchor_lost")
|
||||
self.revoke_pending_prefetch(request)
|
||||
self.storage_prefetch_retries.refetch(request.rid, storage_hit_end)
|
||||
|
||||
|
||||
@@ -1936,8 +1936,16 @@ class StorageMetricsCollector(_StatLoggerDIMixin):
|
||||
|
||||
self.storage_prefetch_unfulfilled_tokens_total = Counter(
|
||||
name="sglang:storage_prefetch_unfulfilled_tokens_total",
|
||||
documentation="Storage-hit tokens that did not become a usable "
|
||||
"prefetch result, by terminal reason.",
|
||||
documentation="Attempt-level storage-hit tokens that did not become "
|
||||
"a usable prefetch result, by diagnostic reason. This is not a "
|
||||
"final prefill cache-miss counter. anchor_lost means the original "
|
||||
"device prefix was no longer present when the prefetch needed it; "
|
||||
"aux_window_trim means a staged aux trailing window could not be "
|
||||
"trimmed to the shorter splice, so the loaded span was released; "
|
||||
"device_overlap means the live device prefix diverged from the "
|
||||
"request's view at splice time, so the span beyond it was released; "
|
||||
"cache_admission_shortfall means an L3-loaded L2 span was no longer "
|
||||
"reusable when cache-mode admission ran.",
|
||||
labelnames=list(labels.keys()) + ["reason"],
|
||||
)
|
||||
for reason in (
|
||||
@@ -1946,7 +1954,10 @@ class StorageMetricsCollector(_StatLoggerDIMixin):
|
||||
"device_capacity",
|
||||
"device_covered",
|
||||
"storage_transfer",
|
||||
"shrunk",
|
||||
"anchor_lost",
|
||||
"aux_window_trim",
|
||||
"device_overlap",
|
||||
"cache_admission_shortfall",
|
||||
"dropped",
|
||||
):
|
||||
self.storage_prefetch_unfulfilled_tokens_total.labels(
|
||||
@@ -2105,6 +2116,25 @@ class ExpertDispatchCollector(_StatLoggerDIMixin):
|
||||
)
|
||||
|
||||
|
||||
def radix_cache_metric_labels(
|
||||
cache_type: str, parallel: Any, dp_attention_enabled: bool
|
||||
) -> Dict[str, Any]:
|
||||
# Every scheduler rank runs its own cache over its own KV shard; without
|
||||
# rank labels the multiprocess registry sums ranks into TP x the count.
|
||||
# Same rank keys as the storage collector (cache_controller's storage
|
||||
# config), so one rank's L2 and L3 series line up.
|
||||
if dp_attention_enabled:
|
||||
tp_rank, dp_rank = parallel.attn_tp_rank, parallel.attn_dp_rank
|
||||
else:
|
||||
tp_rank, dp_rank = parallel.tp_rank, 0
|
||||
return {
|
||||
"cache_type": cache_type,
|
||||
"tp_rank": tp_rank,
|
||||
"pp_rank": parallel.pp_rank,
|
||||
"dp_rank": dp_rank,
|
||||
}
|
||||
|
||||
|
||||
class RadixCacheMetricsCollector(_StatLoggerDIMixin):
|
||||
def __init__(
|
||||
self,
|
||||
@@ -2225,7 +2255,9 @@ class RadixCacheMetricsCollector(_StatLoggerDIMixin):
|
||||
self.load_back_num_tokens = Counter(
|
||||
name="sglang:load_back_tokens_total",
|
||||
documentation="The number of tokens loaded back from local host "
|
||||
"DRAM (L2) to GPU, by host pool (kv, swa, mamba, ...).",
|
||||
"DRAM (L2) to GPU, by host pool (kv, swa, mamba, ...). Every TP "
|
||||
"rank reports the same logical count under its own rank labels; "
|
||||
"read one rank rather than summing ranks.",
|
||||
labelnames=list(labels.keys()) + ["pool"],
|
||||
)
|
||||
|
||||
@@ -2243,9 +2275,11 @@ class RadixCacheMetricsCollector(_StatLoggerDIMixin):
|
||||
name="sglang:hicache_backup_bytes_total",
|
||||
documentation="Bytes backed up from GPU to local host DRAM (L2), "
|
||||
"all pools combined, including draft/sidecar transfers that the "
|
||||
"token counter excludes. Divided by the rate of "
|
||||
"hicache_backup_duration_seconds_sum, gives the achieved D->H "
|
||||
"bandwidth while transferring.",
|
||||
"token counter excludes. Each rank reports its own KV shard; sum "
|
||||
"ranks for the physical total. A window's byte delta divided by "
|
||||
"the same window's hicache_backup_duration_seconds sum is the "
|
||||
"bytes-weighted active bandwidth; the plain rate is wall-clock "
|
||||
"payload traffic that includes idle time.",
|
||||
labelnames=labels.keys(),
|
||||
)
|
||||
|
||||
@@ -2253,9 +2287,11 @@ class RadixCacheMetricsCollector(_StatLoggerDIMixin):
|
||||
name="sglang:load_back_bytes_total",
|
||||
documentation="Bytes loaded back from local host DRAM (L2) to "
|
||||
"GPU, all pools combined, including draft/sidecar transfers that "
|
||||
"the token counter excludes. Divided by the rate of "
|
||||
"load_back_duration_seconds_sum, gives the achieved bandwidth "
|
||||
"over each merged H2D load operation.",
|
||||
"the token counter excludes. Each rank reports its own KV shard; "
|
||||
"sum ranks for the physical total. A window's byte delta divided "
|
||||
"by the same window's load_back_duration_seconds sum is the "
|
||||
"bytes-weighted active bandwidth; the plain rate is wall-clock "
|
||||
"payload traffic that includes idle time.",
|
||||
labelnames=labels.keys(),
|
||||
)
|
||||
|
||||
@@ -2264,7 +2300,9 @@ class RadixCacheMetricsCollector(_StatLoggerDIMixin):
|
||||
documentation="The number of tokens backed up from GPU to local "
|
||||
"host DRAM (L2), by host pool (kv, swa, mamba, ...). Covers all "
|
||||
"D->H backups regardless of --hicache-write-policy. Distinct from "
|
||||
"the host-to-storage (L3) sglang:backuped_tokens_total.",
|
||||
"the host-to-storage (L3) sglang:backuped_tokens_total. Every TP "
|
||||
"rank reports the same logical count under its own rank labels; "
|
||||
"read one rank rather than summing ranks.",
|
||||
labelnames=list(labels.keys()) + ["pool"],
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user