1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
// SPDX-FileCopyrightText: Copyright (c) 2024-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
use super::*;
impl ConcurrentRadixTreeCompressed {
#[cfg(test)]
pub(crate) fn run_cleanup_for_test(&self) {
self.sweep_stale_children();
}
pub(super) fn sweep_stale_children(&self) {
let mut queue = VecDeque::from([self.root.clone()]);
let mut edges = Vec::new();
while let Some(parent) = queue.pop_front() {
let children = parent.child_edges_snapshot();
for (key, child) in children {
queue.push_back(child.clone());
edges.push(CleanupEdge {
parent: Arc::downgrade(&parent),
key,
child: Arc::downgrade(&child),
});
}
}
for edge in edges.into_iter().rev() {
let Some(parent) = edge.parent.upgrade() else {
continue;
};
let Some(child) = edge.child.upgrade() else {
continue;
};
parent.remove_child_if_stale_leaf(edge.key, &child);
}
}
/// Apply a remove operation (eviction).
///
/// For each evicted block hash, finds its position in the node via `edge_index` (O(1)).
/// Updates the worker's match index without splitting the tree:
/// - `pos >= current_cutoff`: no-op (already beyond coverage)
/// - `pos < current_cutoff`: `new_cutoff = pos`; moves worker to `worker_cutoffs`
/// or removes entirely if `new_cutoff == 0`.
///
/// Lookup entries for the newly uncovered suffix are removed eagerly so
/// later duplicate remove events fast-path through the missing-hash case.
pub(super) fn apply_removed(
&self,
lookup: &mut FxHashMap<WorkerWithDpRank, WorkerLookup>,
worker: WorkerWithDpRank,
op: KvCacheRemoveData,
id: u64,
) -> Result<(), KvCacheEventError> {
if !lookup.contains_key(&worker) {
return Err(KvCacheEventError::BlockNotFound);
}
let mut group_node: Option<SharedNode> = None;
let mut group_hashes: Vec<ExternalSequenceBlockHash> = Vec::new();
for block_hash in op.block_hashes {
if group_node
.as_ref()
.is_some_and(|node| node.contains_edge_hash(block_hash))
{
group_hashes.push(block_hash);
continue;
}
self.apply_removed_group(lookup, worker, group_node.take(), &group_hashes, id);
group_hashes.clear();
match self.resolve_lookup(
lookup,
worker,
block_hash,
LookupRepairDirection::TowardHead,
) {
Some(node) => {
group_node = Some(node);
group_hashes.push(block_hash);
}
None => {
tracing::debug!(
worker_id = worker.worker_id.to_string(),
dp_rank = worker.dp_rank,
id,
block_hash = ?block_hash,
"Block not found during remove; skipping"
);
}
}
}
self.apply_removed_group(lookup, worker, group_node, &group_hashes, id);
Ok(())
}
pub(super) fn apply_removed_group(
&self,
lookup: &mut FxHashMap<WorkerWithDpRank, WorkerLookup>,
worker: WorkerWithDpRank,
node: Option<SharedNode>,
block_hashes: &[ExternalSequenceBlockHash],
id: u64,
) {
let Some(cur_node) = node else {
return;
};
if block_hashes.is_empty() {
return;
}
match cur_node.remove_worker_for_hashes(worker, block_hashes) {
Some(outcome) => {
Self::remove_lookup_hashes(lookup, worker, outcome.stale_hashes);
for block_hash in outcome.unmatched_hashes {
self.apply_removed_hash(lookup, worker, block_hash, id);
}
}
None => {
for &block_hash in block_hashes {
self.apply_removed_hash(lookup, worker, block_hash, id);
}
}
}
}
fn apply_removed_hash(
&self,
lookup: &mut FxHashMap<WorkerWithDpRank, WorkerLookup>,
worker: WorkerWithDpRank,
block_hash: ExternalSequenceBlockHash,
id: u64,
) {
let Some(mut cur_node) = self.resolve_lookup(
lookup,
worker,
block_hash,
LookupRepairDirection::TowardHead,
) else {
tracing::debug!(
worker_id = worker.worker_id.to_string(),
dp_rank = worker.dp_rank,
id,
block_hash = ?block_hash,
"Block not found during batched remove fallback; skipping"
);
Self::remove_lookup_hashes(lookup, worker, [block_hash]);
return;
};
loop {
// TODO(CORRECTNESS): Invalidate this worker throughout the descendant
// subtree when a mid-edge removal leaves the node alive for another
// worker. Otherwise stale descendants can be reused as store parents,
// reactivated by restoring only the removed block, or emitted by dumps
// without a valid worker-specific parent. Preserve CRTC's locking and
// snapshot guarantees when implementing the traversal.
match cur_node.remove_worker_for_hashes(worker, std::slice::from_ref(&block_hash)) {
Some(outcome) => {
debug_assert!(outcome.unmatched_hashes.is_empty());
Self::remove_lookup_hashes(lookup, worker, outcome.stale_hashes);
return;
}
None => {
// Hash was moved to a descendant by a concurrent split.
match Self::find_in_subtree(&cur_node, block_hash) {
Some(resolved) => {
self.repair_lookup_for_resolved_node(
lookup,
block_hash,
&resolved,
LookupRepairDirection::TowardHead,
);
#[cfg(feature = "bench")]
self.bench_metrics
.lookup_repair_scans
.fetch_add(1, Ordering::Relaxed);
cur_node = resolved;
// Retry the loop with the resolved node.
}
None => {
// Hash not found anywhere -- evicted by a concurrent clear.
tracing::debug!(
worker_id = worker.worker_id.to_string(),
dp_rank = worker.dp_rank,
id,
block_hash = ?block_hash,
"Block not found in subtree during batched remove; skipping"
);
Self::remove_lookup_hashes(lookup, worker, [block_hash]);
return;
}
}
}
}
}
}
fn remove_lookup_hashes(
lookup: &mut FxHashMap<WorkerWithDpRank, WorkerLookup>,
worker: WorkerWithDpRank,
hashes: impl IntoIterator<Item = ExternalSequenceBlockHash>,
) {
if let Some(wl) = lookup.get_mut(&worker) {
for hash in hashes {
wl.remove(&hash);
}
}
}
pub(super) fn remove_or_clear_worker_blocks(
&self,
lookup: &mut FxHashMap<WorkerWithDpRank, WorkerLookup>,
worker_id: WorkerId,
keep_worker: bool,
) {
let workers: Vec<WorkerWithDpRank> = lookup
.keys()
.filter(|w| w.worker_id == worker_id)
.copied()
.collect();
for worker in workers {
if let Some(worker_lookup) = lookup.remove(&worker) {
let mut seen = FxHashSet::<usize>::default();
for (_, node) in worker_lookup.into_iter() {
let ptr = Arc::as_ptr(&node) as usize;
if !seen.insert(ptr) {
continue;
}
node.drop_worker(worker);
}
if keep_worker {
lookup.insert(worker, FxHashMap::default());
}
}
}
}
pub(super) fn remove_worker_dp_rank(
&self,
lookup: &mut FxHashMap<WorkerWithDpRank, WorkerLookup>,
worker_id: WorkerId,
dp_rank: DpRank,
) {
let key = WorkerWithDpRank { worker_id, dp_rank };
if let Some(worker_lookup) = lookup.remove(&key) {
let mut seen = FxHashSet::<usize>::default();
for (_, node) in worker_lookup.into_iter() {
let ptr = Arc::as_ptr(&node) as usize;
if !seen.insert(ptr) {
continue;
}
node.drop_worker(key);
}
}
}
pub(super) fn clear_all_blocks(
&self,
lookup: &mut FxHashMap<WorkerWithDpRank, WorkerLookup>,
worker_id: WorkerId,
) {
self.remove_or_clear_worker_blocks(lookup, worker_id, true);
}
}