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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
// SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
use std::collections::HashSet;
use anyhow::Result;
use futures::StreamExt;
use tokio::sync::OwnedSemaphorePermit;
use tracing::Instrument;
use dynamo_kv_router::protocols::{BlockExtraInfo, WorkerId};
use dynamo_runtime::{pipeline::SingleIn, protocols::maybe_error::MaybeError};
use super::{InnerPrefillRouter, PrefillError, PrefillResolveDecision, PrefillRouter};
use crate::protocols::common::{
llm_backend::PreprocessedRequest,
preprocessor::{BootstrapInfo, PrefillResult},
};
impl PrefillRouter {
/// Select a prefill worker and resolve its bootstrap connection info.
/// If preselected_worker is provided (GAIE Stage 2), use it directly.
/// Otherwise, query for the best worker (KV mode) or select next worker (non-KV modes).
pub(super) async fn resolve_prefill_worker(
&self,
req: &PreprocessedRequest,
preselected_worker: Option<u64>,
) -> PrefillResolveDecision {
let Some(endpoint_id) = self.endpoint_id.get() else {
return PrefillResolveDecision::NotActivated;
};
if self.prefill_router.get().is_none() {
return PrefillResolveDecision::NotActivated;
}
// Worker selection
let (worker_id, dp_rank) = if let Some(id) = preselected_worker {
let dp_rank = req
.routing
.as_ref()
.and_then(|r| r.prefill_dp_rank.or(r.dp_rank));
tracing::debug!(
worker_id = id,
dp_rank = ?dp_rank,
"Using pre-selected prefill worker for bootstrap"
);
(id, dp_rank)
} else {
// Use shared worker selection logic (update_states=false for peek behavior)
// Extract LORA name and priority jump from routing hints
let lora_name = req.routing.as_ref().and_then(|r| r.lora_name.clone());
let priority_jump = req
.routing
.as_ref()
.and_then(|r| r.priority_jump)
.unwrap_or(0.0);
let allowed_worker_ids = req
.routing
.as_ref()
.and_then(|r| r.allowed_worker_ids.clone());
let (routing_token_ids, block_mm_infos) = req.block_mm_routing_info();
match self
.query_prefill_worker(
routing_token_ids,
block_mm_infos,
false,
lora_name,
priority_jump,
allowed_worker_ids,
)
.await
{
Ok((worker_id, dp_rank)) => (worker_id, dp_rank),
Err(_) => return PrefillResolveDecision::Unavailable,
}
};
// Get bootstrap info from ModelManager (works for ANY mode)
let Some(endpoint) = self
.model_manager
.get_disaggregated_endpoint(endpoint_id, worker_id)
else {
return PrefillResolveDecision::NoBootstrapEndpoint;
};
let Some(host) = endpoint.bootstrap_host else {
return PrefillResolveDecision::NoBootstrapEndpoint;
};
let Some(port) = endpoint.bootstrap_port else {
return PrefillResolveDecision::NoBootstrapEndpoint;
};
let dp_size: Option<u32> = self
.model_manager
.get_data_parallel_size(endpoint_id, worker_id);
let r: u64 = rand::random_range(0..=i64::MAX.cast_unsigned());
let bootstrap_room = compute_bootstrap_room(dp_rank, dp_size, r);
tracing::debug!(
worker_id = worker_id,
dp_rank = ?dp_rank,
bootstrap_host = %host,
bootstrap_port = port,
bootstrap_room = bootstrap_room,
router_mode = ?self.router_mode,
"Built bootstrap_info upfront before prefill"
);
PrefillResolveDecision::Resolved {
worker_id,
dp_rank,
bootstrap_info: BootstrapInfo {
bootstrap_host: host,
bootstrap_port: port,
bootstrap_room,
},
}
}
/// Execute prefill with the given router and extract structured result.
///
/// Uses direct routing to target_worker when specified (for non-KV modes with bootstrap optimization).
///
/// If `phase_transition_permit` is provided, it is dropped immediately after routing completes,
/// allowing subsequent `set_phase` calls to proceed. This preserves the current synchronization:
/// the prefill route must finish worker recording before the phase can change to Decode.
///
/// Returns (PrefillResult, Option<(worker_id, dp_rank)>).
pub(super) async fn execute_prefill(
router: Option<InnerPrefillRouter>,
request: SingleIn<PreprocessedRequest>,
target_worker: Option<u64>,
phase_transition_permit: Option<OwnedSemaphorePermit>,
) -> Result<(PrefillResult, Option<(u64, Option<u32>)>), PrefillError> {
let router = router.ok_or(PrefillError::NotActivated)?;
// Clone tracker before request is consumed by generate_to_worker.
// Used to record prefill_complete_time for KV transfer latency metric.
let tracker = request.tracker.clone();
let mut prefill_response = router
.generate_to_worker(request, target_worker)
.await
.map_err(|e| {
PrefillError::PrefillError(
"failed to route to prefill worker".to_string(),
Some(e.into()),
)
})?;
// Release the phase barrier now that routing completed and worker recording already ran.
// Decode may proceed without waiting for prefill output streaming to finish.
drop(phase_transition_permit);
let Some(first_output) = prefill_response.next().await else {
return Err(PrefillError::PrefillError(
"Prefill router returned no output (stream ended)".to_string(),
None,
));
};
// Record when prefill result arrived at the router (for KV transfer latency metric).
// This is after drop(phase_transition_permit) and after first_output is received.
if let Some(ref tracker) = tracker {
tracker.record_prefill_complete();
}
if let Some(err) = first_output.err() {
return Err(PrefillError::PrefillError(
"Prefill router returned error in output".to_string(),
Some(Box::new(err)),
));
}
let mut prompt_tokens_details = first_output
.data
.as_ref()
.and_then(|o| o.completion_usage.as_ref())
.and_then(|u| u.prompt_tokens_details.clone());
while let Some(next) = prefill_response.next().await {
if let Some(o) = next.data.as_ref()
&& prompt_tokens_details.is_none()
{
prompt_tokens_details = o
.completion_usage
.as_ref()
.and_then(|u| u.prompt_tokens_details.clone());
}
}
let Some(output) = &first_output.data else {
return Err(PrefillError::NoDisaggregatedParams(
"Prefill router output has no data field".to_string(),
));
};
let Some(disaggregated_params) = output.disaggregated_params.clone() else {
return Err(PrefillError::NoDisaggregatedParams(
"Prefill router output missing disaggregated_params".to_string(),
));
};
// Extract prefill worker ID and dp_rank from disaggregated_params
let prefill_worker_info =
disaggregated_params
.get("worker_id")
.and_then(|worker_id_json| {
let worker_id = worker_id_json
.get("prefill_worker_id")
.and_then(|v| v.as_u64())?;
let dp_rank = worker_id_json
.get("prefill_dp_rank")
.and_then(|v| v.as_u64())
.map(|r| r as u32);
Some((worker_id, dp_rank))
});
Ok((
PrefillResult {
disaggregated_params,
prompt_tokens_details,
},
prefill_worker_info,
))
}
/// Spawn prefill as a background task.
///
/// Uses direct routing to target_worker when specified (for non-KV modes with bootstrap optimization).
///
/// The `phase_transition_permit` is passed to the spawned task and released after routing
/// completes, allowing the main task's `set_phase(Decode)` to proceed.
pub(super) fn spawn_prefill_task(
&self,
prefill_request: SingleIn<PreprocessedRequest>,
target_worker: Option<u64>,
phase_transition_permit: OwnedSemaphorePermit,
) {
let router = self.prefill_router.get().cloned();
// Capture current span to propagate trace context to the spawned task
let span = tracing::Span::current();
tokio::spawn(
async move {
match Self::execute_prefill(
router,
prefill_request,
target_worker,
Some(phase_transition_permit),
)
.await
{
Ok(_) => {
tracing::debug!("Prefill background task completed");
}
Err(e) => {
tracing::warn!("Prefill background task error: {e:?}");
}
}
}
.instrument(span),
);
}
/// Query the best prefill worker without executing a request.
/// Returns (worker_id, dp_rank).
///
/// This is the shared worker selection logic used by both `resolve_prefill_worker`
/// and `query_route`.
pub async fn query_prefill_worker(
&self,
token_ids: &[u32],
block_mm_infos: Option<&[Option<BlockExtraInfo>]>,
update_states: bool,
lora_name: Option<String>,
priority_jump: f64,
allowed_worker_ids: Option<HashSet<WorkerId>>,
) -> Result<(u64, Option<u32>)> {
let prefill_router = self
.prefill_router
.get()
.ok_or_else(|| anyhow::anyhow!(PrefillError::NotActivated))?;
match prefill_router {
InnerPrefillRouter::KvRouter(r) => {
let (worker, _overlap) = r
.chooser
.find_best_match(
None,
token_ids,
block_mm_infos,
None,
update_states,
lora_name,
priority_jump,
None,
allowed_worker_ids,
)
.await?;
Ok((worker.worker_id, Some(worker.dp_rank)))
}
InnerPrefillRouter::SimpleRouter(r) => {
let worker_id = if update_states {
r.select_next_worker()
} else {
r.peek_next_worker()
}
.ok_or_else(|| anyhow::anyhow!("No workers available for prefill"))?;
Ok((worker_id, None))
}
}
}
/// Register externally-provided workers in the prefill router's slot tracker.
pub fn register_workers(&self, worker_ids: &HashSet<WorkerId>) {
if let Some(InnerPrefillRouter::KvRouter(r)) = self.prefill_router.get() {
r.chooser.register_workers(worker_ids);
}
}
/// Check if disaggregated mode is currently active (prefill router activated).
/// Uses the same `activated` flag as `can_serve_requests()` for consistency.
pub fn is_activated(&self) -> bool {
self.activated.load(std::sync::atomic::Ordering::Acquire)
}
/// Whether disaggregated mode is strictly enforced (fail if no prefill workers).
pub fn enforce_disagg(&self) -> bool {
self.enforce_disagg
}
}
/// Derive a `bootstrap_room` from a pre-sampled `r` such that
/// `room % dp_size == dp_rank` and `room <= i64::MAX`. The 63-bit cap is the
/// existing room contract on the SGLang side. Falls back to `r` when
/// `dp_rank` or `dp_size` is unavailable. `r` must be in `[0, i64::MAX]`.
fn compute_bootstrap_room(dp_rank: Option<u32>, dp_size: Option<u32>, r: u64) -> u64 {
let max_room = i64::MAX.cast_unsigned();
debug_assert!(r <= max_room);
match (dp_rank, dp_size) {
(Some(rank), Some(size)) if size > 0 => {
let size = size as u64;
let rank = rank as u64;
// Bound the quotient so `q * size + rank <= i64::MAX`.
let max_q = (max_room - rank) / size;
let q = r % (max_q + 1);
q * size + rank
}
_ => r,
}
}
#[cfg(test)]
mod tests {
use super::*;
const MAX_ROOM: u64 = i64::MAX as u64;
#[test]
fn bootstrap_room_falls_back_when_dp_unavailable() {
// Missing rank, missing size, or both -> return r unchanged.
assert_eq!(compute_bootstrap_room(None, None, 12345), 12345);
assert_eq!(compute_bootstrap_room(Some(3), None, 12345), 12345);
assert_eq!(compute_bootstrap_room(None, Some(8), 12345), 12345);
// size=0 is a guard against divide-by-zero; treated as unavailable.
assert_eq!(compute_bootstrap_room(Some(0), Some(0), 12345), 12345);
}
#[test]
fn bootstrap_room_respects_63bit_cap_at_max_r() {
// Sweep ranks for the sizes that overflowed in the buggy version:
// - size = 48 (i64::MAX % 48 = 31, so ranks 32..47 overflowed)
// - size = 49 (49 divides i64::MAX, so ranks 1..48 overflowed)
// - size = 7 (7 divides i64::MAX, so ranks 1..6 overflowed)
for size in [3u32, 5, 6, 7, 9, 16, 32, 48, 49, 64, 128] {
for rank in 0..size {
let room = compute_bootstrap_room(Some(rank), Some(size), MAX_ROOM);
assert!(
room <= MAX_ROOM,
"size={size} rank={rank} r=MAX produced {room} > i64::MAX",
);
assert_eq!(
room % size as u64,
rank as u64,
"size={size} rank={rank} broke modulo contract",
);
}
}
}
#[test]
fn bootstrap_room_modulo_contract_across_r() {
// Across many `r` values, the modulo contract must hold and the
// result must stay within the 63-bit cap.
let r_samples = [
0u64,
1,
47,
48,
49,
1_000_000,
1u64 << 32,
(1u64 << 62) - 1,
1u64 << 62,
MAX_ROOM - 1,
MAX_ROOM,
];
for size in [3u32, 8, 48, 49] {
for rank in [0u32, 1, size / 2, size - 1] {
for &r in &r_samples {
let room = compute_bootstrap_room(Some(rank), Some(size), r);
assert!(
room <= MAX_ROOM,
"size={size} rank={rank} r={r} produced {room} > i64::MAX",
);
assert_eq!(
room % size as u64,
rank as u64,
"size={size} rank={rank} r={r} broke modulo contract",
);
}
}
}
}
#[test]
fn bootstrap_room_balances_dp_rank_assignments() {
// For a non-power-of-two dp_size, sampling many rooms with the real
// RNG must (a) put every room in its requested rank's modulo bucket
// and (b) leave no rank starved -- each rank should claim roughly its
// fair share when assignments cycle round-robin.
let dp_size: u32 = 48;
let trials_per_rank: usize = 2_000;
let mut per_rank_counts = vec![0usize; dp_size as usize];
let mut max_room_seen = 0u64;
let mut min_room_seen = u64::MAX;
for rank in 0..dp_size {
for _ in 0..trials_per_rank {
let r = rand::random_range(0..=MAX_ROOM);
let room = compute_bootstrap_room(Some(rank), Some(dp_size), r);
assert!(room <= MAX_ROOM, "room {room} exceeds i64::MAX");
assert_eq!(
room % dp_size as u64,
rank as u64,
"room {room} did not land in rank {rank}'s bucket",
);
per_rank_counts[rank as usize] += 1;
max_room_seen = max_room_seen.max(room);
min_room_seen = min_room_seen.min(room);
}
}
// Every rank received its requested share (nothing was silently dropped).
for (rank, &count) in per_rank_counts.iter().enumerate() {
assert_eq!(count, trials_per_rank, "rank {rank} count mismatch");
}
// Sanity check that the quotient sampler is not collapsing onto a
// tiny region: with 96k samples in [0, i64::MAX], the spread should
// cover most of the 63-bit range.
let span = max_room_seen - min_room_seen;
assert!(
span > MAX_ROOM / 2,
"rooms clustered in span={span}, expected wide spread across [0, i64::MAX]",
);
}
#[test]
fn bootstrap_room_is_deterministic_in_r() {
// Same (rank, size, r) -> same room. Guards against accidental
// re-introduction of an internal random call inside the helper.
let room_a = compute_bootstrap_room(Some(7), Some(48), 123_456_789);
let room_b = compute_bootstrap_room(Some(7), Some(48), 123_456_789);
assert_eq!(room_a, room_b);
assert_eq!(room_a % 48, 7);
}
}
// NVBugs 5969206: link_child_context removed — linking prefill as a child of
// engine_context caused kill propagation that tears down the RPC transport,
// interrupting NIXL KV cache transfers and leaking blocks permanently.
// Prefill context is now created without linking (Context::with_id only).
// Abort on the decode side is deferred via kv_transfer_complete_event in
// handler_base.py until the first generation result confirms KV receipt.