kv_router.rs 22.4 KB
Newer Older
1
2
3
// SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

4
use std::collections::HashMap;
5
use std::sync::Arc;
6
use std::time::Duration;
7

8
use anyhow::Result;
9
use derive_builder::Builder;
10
use dynamo_runtime::{
11
    component::{Component, InstanceSource},
12
    pipeline::{
13
14
        AsyncEngine, AsyncEngineContextProvider, Error, ManyOut, PushRouter, ResponseStream,
        SingleIn, async_trait,
15
16
17
    },
    prelude::*,
    protocols::annotated::Annotated,
18
    utils::typed_prefix_watcher::{key_extractors, watch_prefix_with_extraction},
19
20
};
use futures::stream::{self, StreamExt};
21
use serde::{Deserialize, Serialize};
22

23
pub mod approx;
24
pub mod indexer;
25
pub mod metrics_aggregator;
26
27
pub mod protocols;
pub mod publisher;
28
pub mod recorder;
29
30
pub mod scheduler;
pub mod scoring;
31
pub mod sequence;
32
pub mod subscriber;
33

34
use crate::{
35
    discovery::{MODEL_ROOT_PATH, ModelEntry},
36
    kv_router::{
37
38
        approx::ApproxKvIndexer,
        indexer::{
39
40
            KvIndexer, KvIndexerInterface, KvRouterError, OverlapScores, RouterEvent,
            compute_block_hash_for_seq, compute_seq_hash_for_block,
41
        },
42
        protocols::{LocalBlockHash, RouterRequest, RouterResponse, WorkerSelectionResult},
43
        scheduler::{KvScheduler, KvSchedulerError, PotentialLoad, SchedulingRequest},
44
        scoring::ProcessedEndpoints,
45
        subscriber::start_kv_router_background,
46
    },
47
    local_model::runtime_config::ModelRuntimeConfig,
48
    preprocessor::PreprocessedRequest,
49
    protocols::common::llm_backend::LLMEngineOutput,
50
51
};

52
53
// [gluo TODO] shouldn't need to be public
// this should be discovered from the component
54
55
56
57
58

// for metric scraping (pull-based)
pub const KV_METRICS_ENDPOINT: &str = "load_metrics";

// for metric publishing (push-based)
59
pub const KV_EVENT_SUBJECT: &str = "kv_events";
60
pub const KV_HIT_RATE_SUBJECT: &str = "kv-hit-rate";
61
62
63
64
65
pub const KV_METRICS_SUBJECT: &str = "kv_metrics";

// for inter-router comms
pub const PREFILL_SUBJECT: &str = "prefill_events";
pub const ACTIVE_SEQUENCES_SUBJECT: &str = "active_sequences_events";
66

67
68
69
70
71
72
// for radix tree snapshot storage
pub const RADIX_STATE_BUCKET: &str = "radix-bucket";
pub const RADIX_STATE_FILE: &str = "radix-state";
pub const ROUTER_SNAPSHOT_LOCK: &str = "router-snapshot-lock";
pub const ROUTER_CLEANUP_LOCK: &str = "router-cleanup-lock";

73
74
75
76
/// A trait that users can implement to define custom selection logic
pub trait WorkerSelector {
    fn select_worker(
        &self,
77
        workers: &HashMap<i64, Option<ModelRuntimeConfig>>,
78
        request: &SchedulingRequest,
79
        block_size: u32,
80
81
    ) -> Result<WorkerSelectionResult, KvSchedulerError>;
}
82

83
84
85
86
87
88
89
90
91
92
/// Override configuration for router settings that can be specified per-request
#[derive(Debug, Clone, Default, Builder, Serialize, Deserialize)]
pub struct RouterConfigOverride {
    #[builder(default)]
    pub overlap_score_weight: Option<f64>,

    #[builder(default)]
    pub router_temperature: Option<f64>,
}

93
/// KV Router configuration parameters
94
#[derive(Debug, Clone, Copy, Serialize, Deserialize)]
95
96
97
pub struct KvRouterConfig {
    pub overlap_score_weight: f64,

98
    pub router_temperature: f64,
99

100
101
    pub use_kv_events: bool,

102
103
    pub router_replica_sync: bool,

104
105
106
    /// Whether to track active blocks in the router (default: true)
    pub router_track_active_blocks: bool,

107
108
    // TODO: this is not actually used for now
    // Would need this (along with total kv blocks) to trigger AllWorkersBusy error for e.g. rate-limiting
109
    pub max_num_batched_tokens: u32,
110
111
112
113

    /// Threshold for triggering snapshots. If None, no snapshots will be performed.
    pub router_snapshot_threshold: Option<u32>,

114
    /// Whether to reset the router state on startup (default: false)
115
    pub router_reset_states: bool,
116
117
118
119
120
}

impl Default for KvRouterConfig {
    fn default() -> Self {
        Self {
121
            overlap_score_weight: 1.0,
122
            router_temperature: 0.0,
123
            use_kv_events: true,
124
            router_replica_sync: false,
125
            router_track_active_blocks: true,
126
            max_num_batched_tokens: 8192,
127
            router_snapshot_threshold: Some(10000),
128
            router_reset_states: false,
129
130
131
132
133
134
135
        }
    }
}

impl KvRouterConfig {
    /// Create a new KvRouterConfig with optional weight values.
    /// If a weight is None, the default value will be used.
136
    #[allow(clippy::too_many_arguments)]
137
138
    pub fn new(
        overlap_score_weight: Option<f64>,
139
        temperature: Option<f64>,
140
        use_kv_events: Option<bool>,
141
        replica_sync: Option<bool>,
142
        track_active_blocks: Option<bool>,
143
        max_num_batched_tokens: Option<u32>,
144
145
        router_snapshot_threshold: Option<Option<u32>>,
        router_reset_states: Option<bool>,
146
147
148
149
    ) -> Self {
        let default = Self::default();
        Self {
            overlap_score_weight: overlap_score_weight.unwrap_or(default.overlap_score_weight),
150
            router_temperature: temperature.unwrap_or(default.router_temperature),
151
            use_kv_events: use_kv_events.unwrap_or(default.use_kv_events),
152
            router_replica_sync: replica_sync.unwrap_or(default.router_replica_sync),
153
154
            router_track_active_blocks: track_active_blocks
                .unwrap_or(default.router_track_active_blocks),
155
156
            max_num_batched_tokens: max_num_batched_tokens
                .unwrap_or(default.max_num_batched_tokens),
157
158
159
            router_snapshot_threshold: router_snapshot_threshold
                .unwrap_or(default.router_snapshot_threshold),
            router_reset_states: router_reset_states.unwrap_or(default.router_reset_states),
160
161
162
163
        }
    }
}

164
165
166
// TODO: is there a way (macro) to auto-derive the KvIndexerInterface trait for this
// since both variants implement it
pub enum Indexer {
167
168
    /// Updates itself based on KV events emitted by backend workers.
    /// Has the ability to persist and snapshot states.
169
    KvIndexer(KvIndexer),
170
171
172

    /// Predicts the cached blocks based on requests on a TTL basis.
    /// Currently does not persist or snapshot states (WIP to enable that).
173
    ApproxKvIndexer(ApproxKvIndexer),
174
175
176
177

    /// Used when we do not wish to use the indexer at all (e.g., when overlap_score_weight is 0).
    /// Note: This will cause KV events to accumulate in JetStream as we do not regularly purge them.
    None,
178
179
180
181
182
183
184
185
186
187
}

impl Indexer {
    async fn find_matches(
        &self,
        sequence: Vec<LocalBlockHash>,
    ) -> Result<OverlapScores, KvRouterError> {
        match self {
            Indexer::KvIndexer(indexer) => indexer.find_matches(sequence).await,
            Indexer::ApproxKvIndexer(indexer) => indexer.find_matches(sequence).await,
188
189
190
191
            Indexer::None => Ok(OverlapScores {
                scores: HashMap::new(),
                frequencies: Vec::new(),
            }),
192
193
        }
    }
194
195
196
197
198

    async fn dump_events(&self) -> Result<Vec<RouterEvent>, KvRouterError> {
        match self {
            Indexer::KvIndexer(indexer) => indexer.dump_events().await,
            Indexer::ApproxKvIndexer(indexer) => indexer.dump_events().await,
199
200
201
202
203
            Indexer::None => {
                panic!(
                    "Cannot dump events: indexer does not exist (is overlap_score_weight set to 0?)"
                );
            }
204
205
        }
    }
206
207
}

208
209
/// A KvRouter only decides which worker you should use. It doesn't send you there.
/// TODO: Rename this to indicate it only selects a worker, it does not route.
210
pub struct KvRouter {
211
212
213
    indexer: Indexer,

    // How about a Box<dyn KvIndexerInterface>
214
    scheduler: KvScheduler,
215

216
    block_size: u32,
217
218

    kv_router_config: KvRouterConfig,
219
220
221
222
}

impl KvRouter {
    pub async fn new(
223
        component: Component,
224
        block_size: u32,
225
        selector: Option<Box<dyn WorkerSelector + Send + Sync>>,
226
        kv_router_config: Option<KvRouterConfig>,
227
        consumer_uuid: String,
228
    ) -> Result<Self> {
229
230
        let kv_router_config = kv_router_config.unwrap_or_default();

231
232
233
234
235
        let cancellation_token = component
            .drt()
            .primary_lease()
            .expect("Cannot KV route static workers")
            .primary_token();
236
237
238
239
240
241
242
243
244
245

        let generate_endpoint = component.endpoint("generate");
        let client = generate_endpoint.client().await?;

        let instances_rx = match client.instance_source.as_ref() {
            InstanceSource::Dynamic(rx) => rx.clone(),
            InstanceSource::Static => {
                panic!("Expected dynamic instance source for KV routing");
            }
        };
246

247
        // Create runtime config watcher using the generic etcd watcher
248
249
250
251
252
        // TODO: Migrate to discovery_client() once it exposes kv_get_and_watch_prefix functionality
        let etcd_client = component
            .drt()
            .etcd_client()
            .expect("Cannot KV route without etcd client");
253
254
255
256
257
258
259
260
261
262

        let runtime_configs_watcher = watch_prefix_with_extraction(
            etcd_client,
            MODEL_ROOT_PATH,
            key_extractors::lease_id,
            |model_entry: ModelEntry| model_entry.runtime_config,
            cancellation_token.clone(),
        )
        .await?;
        let runtime_configs_rx = runtime_configs_watcher.receiver();
263

264
265
266
267
        let indexer = if kv_router_config.overlap_score_weight == 0.0 {
            // When overlap_score_weight is zero, we don't need to track prefixes
            Indexer::None
        } else if kv_router_config.use_kv_events {
268
269
270
271
272
273
            let kv_indexer_metrics = indexer::KvIndexerMetrics::from_component(&component);
            Indexer::KvIndexer(KvIndexer::new(
                cancellation_token.clone(),
                block_size,
                kv_indexer_metrics,
            ))
274
275
276
277
278
279
280
281
        } else {
            // hard code 120 seconds for now
            Indexer::ApproxKvIndexer(ApproxKvIndexer::new(
                cancellation_token.clone(),
                block_size,
                Duration::from_secs(120),
            ))
        };
282

283
        let scheduler = KvScheduler::start(
284
            component.clone(),
285
            block_size,
286
            instances_rx,
287
            runtime_configs_rx,
288
            selector,
289
            kv_router_config.router_replica_sync,
290
            consumer_uuid.clone(),
291
292
        )
        .await?;
293

294
        // Start unified background process if using KvIndexer
295
        if let Indexer::KvIndexer(ref kv_indexer) = indexer {
296
297
298
299
            start_kv_router_background(
                component.clone(),
                consumer_uuid,
                kv_indexer.event_sender(),
300
                kv_indexer.remove_worker_sender(),
301
302
303
304
305
306
307
308
                kv_router_config
                    .router_snapshot_threshold
                    .map(|_| kv_indexer.snapshot_event_sender()),
                cancellation_token.clone(),
                kv_router_config.router_snapshot_threshold,
                kv_router_config.router_reset_states,
            )
            .await?;
309
        }
310

311
        tracing::info!("KV Routing initialized");
312
        Ok(Self {
313
            indexer,
314
            scheduler,
315
            block_size,
316
            kv_router_config,
317
        })
318
319
    }

320
    /// Give these tokens, find the worker with the best match in it's KV cache.
321
    /// Returned overlap amount is in number of blocks.
322
323
324
325
326
    /// Now also takes context_id for request tracking
    async fn find_best_match(
        &self,
        context_id: &str,
        tokens: &[u32],
327
        router_config_override: Option<&RouterConfigOverride>,
328
        update_states: bool,
329
    ) -> anyhow::Result<(i64, u32)> {
330
        let isl_tokens = tokens.len();
331

332
333
334
335
        let block_hashes = compute_block_hash_for_seq(tokens, self.block_size);
        let seq_hashes = compute_seq_hash_for_block(&block_hashes);

        let overlap_scores = self.indexer.find_matches(block_hashes.clone()).await?;
336

337
338
339
340
341
342
343
344
345
346
347
348
349
        // Determine who needs seq_hashes
        let approx_indexer_needs_it = matches!(self.indexer, Indexer::ApproxKvIndexer(_));
        let scheduler_needs_it = self.kv_router_config.router_track_active_blocks;

        // Optimize cloning: only clone if both need it, otherwise move
        let (maybe_seq_hashes_1, maybe_seq_hashes_2) =
            match (approx_indexer_needs_it, scheduler_needs_it) {
                (true, true) => (Some(seq_hashes.clone()), Some(seq_hashes)),
                (true, false) => (Some(seq_hashes), None),
                (false, true) => (None, Some(seq_hashes)),
                (false, false) => (None, None),
            };

350
        let best_worker_id = self
351
            .scheduler
352
353
354
            .schedule(
                context_id.to_string(),
                isl_tokens,
355
                maybe_seq_hashes_2,
356
                overlap_scores.clone(),
357
                router_config_override,
358
                update_states,
359
            )
360
            .await?;
361

362
363
        if let Indexer::ApproxKvIndexer(ref indexer) = self.indexer {
            indexer
364
                .process_routing_decision(best_worker_id, block_hashes, maybe_seq_hashes_1.unwrap())
365
366
367
368
                .await
                .unwrap();
        };

369
370
371
372
373
374
375
376
        let overlap_amount = overlap_scores
            .scores
            .get(&best_worker_id)
            .copied()
            .unwrap_or(0);
        Ok((best_worker_id, overlap_amount))
    }

377
378
379
380
381
382
383
384
    pub async fn add_request(
        &self,
        request_id: String,
        tokens: &[u32],
        overlap_blocks: u32,
        worker_id: i64,
    ) {
        let isl_tokens = tokens.len();
385
386
387
388
389

        let maybe_seq_hashes = self.kv_router_config.router_track_active_blocks.then(|| {
            let block_hashes = compute_block_hash_for_seq(tokens, self.block_size);
            compute_seq_hash_for_block(&block_hashes)
        });
390
391
392
393

        self.scheduler
            .add_request(
                request_id,
394
                maybe_seq_hashes,
395
396
397
398
399
400
401
                isl_tokens,
                overlap_blocks,
                worker_id,
            )
            .await;
    }

402
    pub async fn mark_prefill_completed(&self, request_id: &str) -> Result<()> {
403
        self.scheduler.mark_prefill_completed(request_id).await
404
405
    }

406
    pub async fn free(&self, request_id: &str) -> Result<()> {
407
        self.scheduler.free(request_id).await
408
    }
409

410
    pub fn block_size(&self) -> u32 {
411
412
        self.block_size
    }
413

414
415
416
417
418
419
    /// Get potential prefill and decode loads for all workers
    pub async fn get_potential_loads(&self, tokens: &[u32]) -> Result<Vec<PotentialLoad>> {
        let isl_tokens = tokens.len();
        let block_hashes = compute_block_hash_for_seq(tokens, self.block_size);
        let overlap_scores = self.indexer.find_matches(block_hashes).await?;

420
421
422
423
424
        let maybe_seq_hashes = self.kv_router_config.router_track_active_blocks.then(|| {
            let block_hashes = compute_block_hash_for_seq(tokens, self.block_size);
            compute_seq_hash_for_block(&block_hashes)
        });

425
426
        Ok(self
            .scheduler
427
            .get_potential_loads(maybe_seq_hashes, isl_tokens, overlap_scores)
428
429
430
            .await)
    }

431
432
433
434
    /// Dump all events from the indexer
    pub async fn dump_events(&self) -> Result<Vec<RouterEvent>, KvRouterError> {
        self.indexer.dump_events().await
    }
435
436
}

Michael Feil's avatar
Michael Feil committed
437
438
// NOTE: KVRouter works like a PushRouter,
// but without the reverse proxy functionality, but based on contract of 3 request types
439
440
441
442
443
444
445
#[async_trait]
impl AsyncEngine<SingleIn<RouterRequest>, ManyOut<Annotated<RouterResponse>>, Error> for KvRouter {
    async fn generate(
        &self,
        request: SingleIn<RouterRequest>,
    ) -> Result<ManyOut<Annotated<RouterResponse>>> {
        let (request, ctx) = request.into_parts();
Michael Feil's avatar
Michael Feil committed
446
447
448
449
450
451
452
453
454
455
456
457
458
        let context_id = ctx.context().id().to_string();
        // Handle different request types
        let response = match request {
            RouterRequest::New { tokens } => {
                let (worker_id, overlap_blocks) = self
                    .find_best_match(&context_id, &tokens, None, true)
                    .await?;

                RouterResponse::New {
                    worker_id,
                    overlap_blocks,
                }
            }
459
460
461
462
463
464
            RouterRequest::MarkPrefill => RouterResponse::PrefillMarked {
                success: self.mark_prefill_completed(&context_id).await.is_ok(),
            },
            RouterRequest::MarkFree => RouterResponse::FreeMarked {
                success: self.free(&context_id).await.is_ok(),
            },
Michael Feil's avatar
Michael Feil committed
465
        };
466
467
468
469
470
471

        let response = Annotated::from_data(response);
        let stream = stream::iter(vec![response]);
        Ok(ResponseStream::new(Box::pin(stream), ctx.context()))
    }
}
472
473

pub struct KvPushRouter {
474
    inner: PushRouter<PreprocessedRequest, Annotated<LLMEngineOutput>>,
475
476
477
478
479
    chooser: Arc<KvRouter>,
}

impl KvPushRouter {
    pub fn new(
480
        inner: PushRouter<PreprocessedRequest, Annotated<LLMEngineOutput>>,
481
482
483
484
        chooser: Arc<KvRouter>,
    ) -> Self {
        KvPushRouter { inner, chooser }
    }
485

486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
    /// Find the best matching worker for the given tokens without updating states
    pub async fn find_best_match(
        &self,
        context_id: &str,
        tokens: &[u32],
        router_config_override: Option<&RouterConfigOverride>,
    ) -> Result<(i64, u32)> {
        self.chooser
            .find_best_match(context_id, tokens, router_config_override, false)
            .await
    }

    /// Get potential prefill and decode loads for all workers
    pub async fn get_potential_loads(&self, tokens: &[u32]) -> Result<Vec<PotentialLoad>> {
        self.chooser.get_potential_loads(tokens).await
    }

503
504
505
506
    /// Dump all events from the KV router's indexer
    pub async fn dump_events(&self) -> Result<Vec<RouterEvent>, KvRouterError> {
        self.chooser.dump_events().await
    }
507
508
509
}

#[async_trait]
510
impl AsyncEngine<SingleIn<PreprocessedRequest>, ManyOut<Annotated<LLMEngineOutput>>, Error>
511
512
    for KvPushRouter
{
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
    /// Generate method that handles KV-aware routing with three distinct behaviors:
    ///
    /// 1. **If `query_instance_id` annotation is set**:
    ///    - Returns the best matching worker ID without routing the request
    ///    - Does NOT update any router local states
    ///    - Response includes worker_instance_id and token_data annotations
    ///
    /// 2. **If `backend_instance_id` is set in the request**:
    ///    - Routes directly to the specified backend instance
    ///    - DOES update router states to track this request (unless query_instance_id is also set)
    ///    - Bypasses the normal KV matching logic
    ///
    /// 3. **If neither are set (default behavior)**:
    ///    - Finds the best worker based on KV cache overlap
    ///    - Updates router states to track the request
    ///    - Routes to the selected worker
    ///
    /// The router state updates include tracking active sequences and managing
    /// prefill/completion lifecycle for proper KV cache management.
532
533
    async fn generate(
        &self,
534
        request: SingleIn<PreprocessedRequest>,
535
    ) -> Result<ManyOut<Annotated<LLMEngineOutput>>, Error> {
536
        match self.inner.client.instance_source.as_ref() {
537
538
            InstanceSource::Static => self.inner.r#static(request).await,
            InstanceSource::Dynamic(_) => {
539
540
                // Extract context ID for request tracking
                let context_id = request.context().id().to_string();
541
542
543
544

                // Check if this is a query_instance_id request first
                let query_instance_id = request.has_annotation("query_instance_id");

545
                let (instance_id, overlap_amount) = if let Some(id) = request.backend_instance_id {
546
547
548
549
550
551
                    // If instance_id is set, use it and manually add the request to track it
                    if !query_instance_id {
                        self.chooser
                            .add_request(context_id.clone(), &request.token_ids, 0, id)
                            .await;
                    }
552
553
554
555
                    (id, 0)
                } else {
                    // Otherwise, find the best match
                    self.chooser
556
557
558
559
                        .find_best_match(
                            &context_id,
                            &request.token_ids,
                            request.router_config_override.as_ref(),
560
                            !query_instance_id, // Don't update states if query_instance_id
561
                        )
562
563
564
                        .await?
                };

565
566
567
                // if request has the annotation "query_instance_id",
                // then the request will not be routed to the worker,
                // and instead the worker_instance_id will be returned.
568
569
570
571
572
                let stream_context = request.context().clone();
                if query_instance_id {
                    let instance_id_str = instance_id.to_string();
                    let response =
                        Annotated::from_annotation("worker_instance_id", &instance_id_str)?;
573
574
575
576
577
578
579
580
581

                    // Return the tokens in nvext.token_data format
                    let response_tokens =
                        Annotated::from_annotation("token_data", &request.token_ids)?;
                    tracing::trace!(
                        "Tokens requested in the response through the query_instance_id annotation: {:?}",
                        response_tokens
                    );
                    let stream = stream::iter(vec![response, response_tokens]);
582
583
                    return Ok(ResponseStream::new(Box::pin(stream), stream_context));
                }
584
585
586
                let (mut backend_input, context) = request.into_parts();
                backend_input.estimated_prefix_hit_num_blocks = Some(overlap_amount);
                let updated_request = context.map(|_| backend_input);
587

588
                let mut response_stream = self.inner.direct(updated_request, instance_id).await?;
589
590
591
592
                let stream_context = response_stream.context();
                let chooser = self.chooser.clone();

                let wrapped_stream = Box::pin(async_stream::stream! {
593
                    if let Some(first_item) = response_stream.next().await {
594
595
596
                        if let Err(e) = chooser.mark_prefill_completed(&context_id).await {
                            tracing::warn!("Failed to mark prefill completed for request {context_id}: {e:?}");
                        }
597
598
                        yield first_item;
                    }
599
600
601
602
603

                    while let Some(item) = response_stream.next().await {
                        yield item;
                    }

604
605
606
                    if let Err(e) = chooser.free(&context_id).await {
                        tracing::warn!("Failed to free request {context_id}: {e:?}");
                    }
607
608
                });
                Ok(ResponseStream::new(wrapped_stream, stream_context))
609
610
611
612
            }
        }
    }
}