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

Yan Ru Pei's avatar
Yan Ru Pei committed
4
use std::sync::Arc;
5
use std::time::{Duration, Instant};
6

7
use anyhow::Result;
Yan Ru Pei's avatar
Yan Ru Pei committed
8
use dynamo_kv_router::{ConcurrentRadixTree, ThreadPoolIndexer};
9
use dynamo_runtime::{
10
    component::{Client, Endpoint},
11
    discovery::DiscoveryQuery,
12
    pipeline::{
13
14
        AsyncEngine, AsyncEngineContextProvider, Error, ManyOut, ResponseStream, SingleIn,
        async_trait,
15
    },
16
    protocols::EndpointId,
17
    protocols::annotated::Annotated,
18
    traits::DistributedRuntimeProvider,
19
};
20
use futures::stream;
Yan Ru Pei's avatar
Yan Ru Pei committed
21
use tokio::sync::oneshot;
22
use tracing::Instrument;
23
use validator::Validate;
24

25
26
27
28
// Re-export from dynamo-kv-router crate
pub use dynamo_kv_router::approx;
pub use dynamo_kv_router::indexer;
pub use dynamo_kv_router::protocols;
29
30
pub use dynamo_kv_router::scheduling;
pub use dynamo_kv_router::selector;
31

32
pub mod cache_control;
33
pub mod config;
34
pub mod indexer_standalone;
35
mod jetstream;
36
pub mod metrics;
37
pub mod prefill_router;
38
pub mod publisher;
39
pub mod push_router;
40
pub mod queue;
41
pub mod recorder;
42
pub mod scheduler;
43
pub mod sequence;
44
pub mod subscriber;
45
pub mod worker_query;
46

47
pub use cache_control::{CacheControlClient, spawn_pin_prefix};
48
pub use config::{KvRouterConfig, RouterConfigOverride};
49
pub use indexer_standalone::start_kv_block_indexer;
50
pub use prefill_router::PrefillRouter;
51
pub use push_router::{DirectRoutingRouter, KvPushRouter};
52

53
use crate::{
54
    discovery::RuntimeConfigWatch,
55
    kv_router::{
56
        approx::PruneConfig,
Yan Ru Pei's avatar
Yan Ru Pei committed
57
        indexer::{GetWorkersRequest, KvIndexer, KvIndexerInterface, KvRouterError},
Yan Ru Pei's avatar
Yan Ru Pei committed
58
        protocols::{
59
            BlockExtraInfo, DpRank, LocalBlockHash, OverlapScores, RouterEvent, RouterRequest,
60
            RouterResponse, TokensWithHashes, WorkerId, WorkerWithDpRank,
Yan Ru Pei's avatar
Yan Ru Pei committed
61
            compute_block_hash_for_seq,
Yan Ru Pei's avatar
Yan Ru Pei committed
62
        },
63
        scheduler::{KvScheduler, PotentialLoad},
64
        sequence::{SequenceError, SequenceRequest},
65
    },
66
    local_model::runtime_config::ModelRuntimeConfig,
67
68
};

69
70
use std::collections::HashSet;

71
72
// [gluo TODO] shouldn't need to be public
// this should be discovered from the component
73
74
75
76
77

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

// for metric publishing (push-based)
78
pub const KV_EVENT_SUBJECT: &str = "kv-events";
79
80
81
82
83
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";
84

85
86
87
88
// for radix tree snapshot storage
pub const RADIX_STATE_BUCKET: &str = "radix-bucket";
pub const RADIX_STATE_FILE: &str = "radix-state";

89
90
91
// for standalone indexer query
pub const KV_INDEXER_QUERY_ENDPOINT: &str = "kv_indexer_query";

92
93
94
// for worker-local kvindexer query
pub const WORKER_KV_INDEXER_BUFFER_SIZE: usize = 1024; // store 1024 most recent events in worker buffer

95
96
97
98
99
100
/// Generates a dp_rank-specific endpoint name for the worker KV indexer query service.
/// Each dp_rank has its own LocalKvIndexer and query endpoint to ensure per-dp_rank monotonicity.
pub fn worker_kv_indexer_query_endpoint(dp_rank: DpRank) -> String {
    format!("worker_kv_indexer_query_dp{dp_rank}")
}

101
// for router discovery registration
102
pub const KV_ROUTER_ENDPOINT: &str = "router-discovery";
103
104

/// Creates an EndpointId for the KV router in the given namespace.
105
pub fn router_endpoint_id(namespace: String, component: String) -> EndpointId {
106
107
    EndpointId {
        namespace,
108
        component,
109
110
111
112
113
        name: KV_ROUTER_ENDPOINT.to_string(),
    }
}

/// Creates a DiscoveryQuery for the KV router in the given namespace.
114
pub fn router_discovery_query(namespace: String, component: String) -> DiscoveryQuery {
115
116
    DiscoveryQuery::Endpoint {
        namespace,
117
        component,
118
119
120
121
        endpoint: KV_ROUTER_ENDPOINT.to_string(),
    }
}

122
123
124
/// Concrete `WorkerSelector` bound to the runtime config type.
pub type WorkerSelector =
    dyn dynamo_kv_router::selector::WorkerSelector<ModelRuntimeConfig> + Send + Sync;
125

Yan Ru Pei's avatar
Yan Ru Pei committed
126
#[derive(Clone)]
127
pub enum Indexer {
Yan Ru Pei's avatar
Yan Ru Pei committed
128
    /// Single-threaded radix tree with channel-based event processing.
129
    /// Supports TTL-based expiration and size-based pruning.
130
    /// Has the ability to persist and snapshot states.
131
    KvIndexer(KvIndexer),
132

Yan Ru Pei's avatar
Yan Ru Pei committed
133
134
135
136
137
    /// Concurrent radix tree with a thread pool for event processing.
    /// Uses sticky worker routing for per-worker event serialization.
    /// Does not support TTL/pruning.
    Concurrent(Arc<ThreadPoolIndexer<ConcurrentRadixTree>>),

138
139
140
    /// 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,
141
142
143
}

impl Indexer {
144
145
146
147
148
149
    pub fn new(
        component: &dynamo_runtime::component::Component,
        kv_router_config: &KvRouterConfig,
        block_size: u32,
    ) -> Self {
        if kv_router_config.overlap_score_weight == 0.0 {
Yan Ru Pei's avatar
Yan Ru Pei committed
150
151
152
            return Indexer::None;
        }

153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
        // Approximate mode (--no-kv-events): always use single-threaded KvIndexer
        // with TTL/pruning regardless of event_threads, since updates come from
        // routing decisions only, not live KV events from workers.
        if !kv_router_config.use_kv_events {
            let kv_indexer_metrics = indexer::KvIndexerMetrics::from_component(component);
            let cancellation_token = component.drt().primary_token();
            let prune_config = Some(PruneConfig {
                ttl: Duration::from_secs_f64(kv_router_config.router_ttl_secs),
                max_tree_size: kv_router_config.router_max_tree_size,
                prune_target_ratio: kv_router_config.router_prune_target_ratio,
            });
            return Indexer::KvIndexer(KvIndexer::new_with_frequency(
                cancellation_token,
                None,
                block_size,
                kv_indexer_metrics,
                prune_config,
            ));
        }

Yan Ru Pei's avatar
Yan Ru Pei committed
173
174
175
176
        if kv_router_config.router_event_threads > 1 {
            return Indexer::Concurrent(Arc::new(ThreadPoolIndexer::new(
                ConcurrentRadixTree::new(),
                kv_router_config.router_event_threads as usize,
177
                block_size,
Yan Ru Pei's avatar
Yan Ru Pei committed
178
            )));
179
        }
Yan Ru Pei's avatar
Yan Ru Pei committed
180
181

        let kv_indexer_metrics = indexer::KvIndexerMetrics::from_component(component);
182
        let cancellation_token = component.drt().primary_token();
Yan Ru Pei's avatar
Yan Ru Pei committed
183
184
185
186
187
188

        Indexer::KvIndexer(KvIndexer::new_with_frequency(
            cancellation_token,
            None, // expiration_duration for frequency tracking
            block_size,
            kv_indexer_metrics,
189
            None,
Yan Ru Pei's avatar
Yan Ru Pei committed
190
        ))
191
192
193
    }

    pub(crate) async fn find_matches(
194
195
196
197
198
        &self,
        sequence: Vec<LocalBlockHash>,
    ) -> Result<OverlapScores, KvRouterError> {
        match self {
            Indexer::KvIndexer(indexer) => indexer.find_matches(sequence).await,
Yan Ru Pei's avatar
Yan Ru Pei committed
199
            Indexer::Concurrent(tpi) => tpi.find_matches(sequence).await,
200
            Indexer::None => Ok(OverlapScores::new()),
201
202
        }
    }
203

204
    pub(crate) async fn dump_events(&self) -> Result<Vec<RouterEvent>, KvRouterError> {
205
206
        match self {
            Indexer::KvIndexer(indexer) => indexer.dump_events().await,
Yan Ru Pei's avatar
Yan Ru Pei committed
207
            Indexer::Concurrent(tpi) => tpi.dump_events().await,
208
209
210
211
212
            Indexer::None => {
                panic!(
                    "Cannot dump events: indexer does not exist (is overlap_score_weight set to 0?)"
                );
            }
213
214
        }
    }
215

216
    pub(crate) async fn process_routing_decision_for_request(
217
        &self,
218
        tokens_with_hashes: &mut TokensWithHashes,
219
220
221
222
223
        worker: WorkerWithDpRank,
    ) -> Result<(), KvRouterError> {
        match self {
            Indexer::KvIndexer(indexer) => {
                indexer
224
                    .process_routing_decision_for_request(tokens_with_hashes, worker)
225
226
                    .await
            }
Yan Ru Pei's avatar
Yan Ru Pei committed
227
228
229
230
            Indexer::Concurrent(tpi) => {
                tpi.process_routing_decision_for_request(tokens_with_hashes, worker)
                    .await
            }
231
232
233
            Indexer::None => Ok(()),
        }
    }
Yan Ru Pei's avatar
Yan Ru Pei committed
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

    pub(crate) async fn apply_event(&self, event: RouterEvent) {
        match self {
            Indexer::KvIndexer(indexer) => {
                if let Err(e) = indexer.event_sender().send(event).await {
                    tracing::warn!("Failed to send event to indexer: {e}");
                }
            }
            Indexer::Concurrent(tpi) => tpi.apply_event(event).await,
            Indexer::None => {}
        }
    }

    pub(crate) async fn remove_worker(&self, worker_id: WorkerId) {
        match self {
            Indexer::KvIndexer(indexer) => {
                if let Err(e) = indexer.remove_worker_sender().send(worker_id).await {
                    tracing::warn!("Failed to send worker removal for {worker_id}: {e}");
                }
            }
            Indexer::Concurrent(tpi) => {
                KvIndexerInterface::remove_worker(tpi.as_ref(), worker_id).await;
            }
            Indexer::None => {}
        }
    }

    pub(crate) async fn get_workers(&self) -> Vec<WorkerId> {
        match self {
            Indexer::KvIndexer(indexer) => {
                let (resp_tx, resp_rx) = oneshot::channel();
                let req = GetWorkersRequest { resp: resp_tx };
                if let Err(e) = indexer.get_workers_sender().send(req).await {
                    tracing::warn!("Failed to send get_workers request: {e}");
                    return Vec::new();
                }
                resp_rx.await.unwrap_or_default()
            }
            Indexer::Concurrent(tpi) => tpi.backend().get_workers(),
            Indexer::None => Vec::new(),
        }
    }
276
277
}

278
279
/// 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.
280
pub struct KvRouter {
281
    indexer: Indexer,
282
    scheduler: KvScheduler,
283
    block_size: u32,
284
    kv_router_config: KvRouterConfig,
Yan Ru Pei's avatar
Yan Ru Pei committed
285
    cancellation_token: tokio_util::sync::CancellationToken,
286
    client: Client,
287
288
289
290
}

impl KvRouter {
    pub async fn new(
291
292
        endpoint: Endpoint,
        client: Client,
293
        mut workers_with_configs: RuntimeConfigWatch,
294
        block_size: u32,
295
        selector: Option<Box<WorkerSelector>>,
296
        kv_router_config: Option<KvRouterConfig>,
297
        worker_type: &'static str,
298
    ) -> Result<Self> {
299
        let kv_router_config = kv_router_config.unwrap_or_default();
300
        kv_router_config.validate()?;
301
        let component = endpoint.component();
302
        let cancellation_token = component.drt().primary_token();
303

304
        let indexer = Indexer::new(component, &kv_router_config, block_size);
305

306
        // Wait for at least one worker with a known runtime config before starting scheduler
307
308
309
310
311
312
        let _ = workers_with_configs
            .wait_for(|m| !m.is_empty())
            .await
            .map_err(|_| {
                anyhow::anyhow!("runtime config watch closed before any workers appeared")
            })?;
313

314
        let scheduler = KvScheduler::start(
315
            component.clone(),
316
            block_size,
317
            workers_with_configs.clone(),
318
            selector,
319
            &kv_router_config,
320
            worker_type,
321
322
        )
        .await?;
323

324
325
        // Start KV event subscription if needed (use_kv_events=true and overlap_score_weight>0)
        if kv_router_config.should_subscribe_to_kv_events() {
326
327
            subscriber::start_subscriber(component.clone(), &kv_router_config, indexer.clone())
                .await?;
328
        } else {
329
            tracing::info!(
330
331
332
                "Skipping KV event subscription (use_kv_events={}, overlap_score_weight={})",
                kv_router_config.use_kv_events,
                kv_router_config.overlap_score_weight,
333
            );
334
        }
335

336
        tracing::info!("KV Routing initialized");
337
        Ok(Self {
338
            indexer,
339
            scheduler,
340
            block_size,
341
            kv_router_config,
Yan Ru Pei's avatar
Yan Ru Pei committed
342
            cancellation_token,
343
            client,
344
        })
345
346
    }

347
348
349
350
351
    /// Get a reference to the client used by this KvRouter
    pub fn client(&self) -> &Client {
        &self.client
    }

352
353
354
355
356
357
358
359
    pub fn indexer(&self) -> &Indexer {
        &self.indexer
    }

    pub fn kv_router_config(&self) -> &KvRouterConfig {
        &self.kv_router_config
    }

360
    /// Give these tokens, find the worker with the best match in it's KV cache.
Yan Ru Pei's avatar
Yan Ru Pei committed
361
    /// Returns the best worker (with dp_rank) and overlap amount in number of blocks.
362
363
364
    /// Now also takes optional context_id for request tracking.
    ///
    /// When `allowed_worker_ids` is Some, only workers in that set are considered for selection.
365
    #[allow(clippy::too_many_arguments)]
Yan Ru Pei's avatar
Yan Ru Pei committed
366
    pub async fn find_best_match(
367
        &self,
Yan Ru Pei's avatar
Yan Ru Pei committed
368
        context_id: Option<&str>,
369
        tokens: &[u32],
370
        block_mm_infos: Option<&[Option<BlockExtraInfo>]>,
371
        router_config_override: Option<&RouterConfigOverride>,
372
        update_states: bool,
373
        lora_name: Option<String>,
374
        priority_jump: f64,
375
        allowed_worker_ids: Option<HashSet<WorkerId>>,
Yan Ru Pei's avatar
Yan Ru Pei committed
376
    ) -> anyhow::Result<(WorkerWithDpRank, u32)> {
377
378
        let start = Instant::now();

Yan Ru Pei's avatar
Yan Ru Pei committed
379
        if update_states && context_id.is_none() {
380
            anyhow::bail!("context_id must be provided when update_states is true");
Yan Ru Pei's avatar
Yan Ru Pei committed
381
382
        }

383
        let isl_tokens = tokens.len();
384

385
386
387
388
389
390
391
392
        let block_hashes = tracing::info_span!("kv_router.compute_block_hashes").in_scope(|| {
            compute_block_hash_for_seq(
                tokens,
                self.block_size,
                block_mm_infos,
                lora_name.as_deref(),
            )
        });
393
        let hash_elapsed = start.elapsed();
394

395
        let overlap_scores = self
396
397
398
399
            .indexer
            .find_matches(block_hashes)
            .instrument(tracing::info_span!("kv_router.find_matches"))
            .await?;
400
        let find_matches_elapsed = start.elapsed();
401

402
        // Compute seq_hashes only if scheduler needs it for active blocks tracking
403
404
405
406
407
        let maybe_seq_hashes = tracing::info_span!("kv_router.compute_seq_hashes").in_scope(|| {
            self.kv_router_config.compute_seq_hashes_for_tracking(
                tokens,
                self.block_size,
                router_config_override,
408
                lora_name.as_deref(),
409
410
            )
        });
411
        let seq_hash_elapsed = start.elapsed();
412

413
        let response = self
414
            .scheduler
415
            .schedule(
Yan Ru Pei's avatar
Yan Ru Pei committed
416
                context_id.map(|s| s.to_string()),
417
                isl_tokens,
418
                maybe_seq_hashes,
419
                overlap_scores,
420
                router_config_override,
421
                update_states,
422
                lora_name,
423
                priority_jump,
424
                allowed_worker_ids,
425
            )
426
            .instrument(tracing::info_span!("kv_router.schedule"))
427
            .await?;
428
429
        let total_elapsed = start.elapsed();

430
431
432
433
434
435
436
437
        if let Some(m) = metrics::RoutingOverheadMetrics::get() {
            m.observe(
                hash_elapsed,
                find_matches_elapsed,
                seq_hash_elapsed,
                total_elapsed,
            );
        }
438

439
        #[cfg(feature = "bench")]
440
441
442
443
444
445
446
447
448
        tracing::info!(
            isl_tokens,
            hash_us = hash_elapsed.as_micros() as u64,
            find_matches_us = (find_matches_elapsed - hash_elapsed).as_micros() as u64,
            seq_hash_us = (seq_hash_elapsed - find_matches_elapsed).as_micros() as u64,
            schedule_us = (total_elapsed - seq_hash_elapsed).as_micros() as u64,
            total_us = total_elapsed.as_micros() as u64,
            "find_best_match completed"
        );
449

450
        Ok((response.best_worker, response.overlap_blocks))
451
452
    }

453
    #[allow(clippy::too_many_arguments)]
454
455
456
457
458
    pub async fn add_request(
        &self,
        request_id: String,
        tokens: &[u32],
        overlap_blocks: u32,
459
        expected_output_tokens: Option<u32>,
Yan Ru Pei's avatar
Yan Ru Pei committed
460
        worker: WorkerWithDpRank,
461
        lora_name: Option<String>,
462
        router_config_override: Option<&RouterConfigOverride>,
463
464
    ) {
        let isl_tokens = tokens.len();
465

466
467
468
469
        let maybe_seq_hashes = self.kv_router_config.compute_seq_hashes_for_tracking(
            tokens,
            self.block_size,
            router_config_override,
470
            lora_name.as_deref(),
471
        );
472

473
474
        if let Err(e) = self
            .scheduler
475
476
477
478
479
            .add_request(SequenceRequest {
                request_id: request_id.clone(),
                token_sequence: maybe_seq_hashes,
                isl: isl_tokens,
                overlap: overlap_blocks,
480
                expected_output_tokens,
Yan Ru Pei's avatar
Yan Ru Pei committed
481
                worker,
482
                lora_name,
483
            })
484
485
486
487
            .await
        {
            tracing::warn!("Failed to add request {request_id}: {e}");
        }
488
489
    }

490
    pub async fn mark_prefill_completed(&self, request_id: &str) -> Result<(), SequenceError> {
491
        self.scheduler.mark_prefill_completed(request_id).await
492
493
    }

494
    pub async fn free(&self, request_id: &str) -> Result<(), SequenceError> {
495
        self.scheduler.free(request_id).await
496
    }
497

498
499
500
501
502
503
    /// Get the worker type for this router ("prefill" or "decode").
    /// Used for Prometheus metric labeling.
    pub fn worker_type(&self) -> &'static str {
        self.scheduler.worker_type()
    }

504
    pub fn add_output_block(
505
506
507
508
        &self,
        request_id: &str,
        decay_fraction: Option<f64>,
    ) -> Result<(), SequenceError> {
509
        self.scheduler.add_output_block(request_id, decay_fraction)
510
511
    }

512
    pub fn block_size(&self) -> u32 {
513
514
        self.block_size
    }
515

516
517
518
519
520
521
    /// Compute the overlap blocks for a given token sequence and worker.
    /// This queries the indexer to find how many blocks are already cached.
    pub async fn get_overlap_blocks(
        &self,
        tokens: &[u32],
        worker: WorkerWithDpRank,
522
        lora_name: Option<&str>,
523
    ) -> Result<u32, KvRouterError> {
524
        let block_hashes = compute_block_hash_for_seq(tokens, self.block_size, None, lora_name);
525
526
527
528
        let overlap_scores = self.indexer.find_matches(block_hashes).await?;
        Ok(overlap_scores.scores.get(&worker).copied().unwrap_or(0))
    }

529
    /// Get potential prefill and decode loads for all workers
530
531
532
533
    pub async fn get_potential_loads(
        &self,
        tokens: &[u32],
        router_config_override: Option<&RouterConfigOverride>,
534
        lora_name: Option<&str>,
535
    ) -> Result<Vec<PotentialLoad>> {
536
        let isl_tokens = tokens.len();
537
        let block_hashes = compute_block_hash_for_seq(tokens, self.block_size, None, lora_name);
538
        let overlap_scores = self.indexer.find_matches(block_hashes.clone()).await?;
539

540
541
542
543
        let maybe_seq_hashes = self.kv_router_config.compute_seq_hashes_for_tracking(
            tokens,
            self.block_size,
            router_config_override,
544
            lora_name,
545
        );
546

547
548
        Ok(self
            .scheduler
549
            .get_potential_loads(maybe_seq_hashes, isl_tokens, overlap_scores))
550
551
    }

552
553
554
555
    /// Dump all events from the indexer
    pub async fn dump_events(&self) -> Result<Vec<RouterEvent>, KvRouterError> {
        self.indexer.dump_events().await
    }
556
557
}

Michael Feil's avatar
Michael Feil committed
558
559
// NOTE: KVRouter works like a PushRouter,
// but without the reverse proxy functionality, but based on contract of 3 request types
560
561
562
563
564
565
566
#[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
567
568
569
        let context_id = ctx.context().id().to_string();
        // Handle different request types
        let response = match request {
570
571
572
573
            RouterRequest::New {
                tokens,
                block_mm_infos,
            } => {
Yan Ru Pei's avatar
Yan Ru Pei committed
574
                let (best_worker, overlap_blocks) = self
575
576
577
578
579
580
581
582
                    .find_best_match(
                        Some(&context_id),
                        &tokens,
                        block_mm_infos.as_deref(),
                        None,
                        true,
                        None,
                        0.0,
583
                        None,
584
                    )
Michael Feil's avatar
Michael Feil committed
585
586
587
                    .await?;

                RouterResponse::New {
Yan Ru Pei's avatar
Yan Ru Pei committed
588
589
                    worker_id: best_worker.worker_id,
                    dp_rank: best_worker.dp_rank,
Michael Feil's avatar
Michael Feil committed
590
591
592
                    overlap_blocks,
                }
            }
593
594
595
596
597
598
            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
599
        };
600
601
602
603
604
605

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

Yan Ru Pei's avatar
Yan Ru Pei committed
607
608
609
610
611
612
impl Drop for KvRouter {
    fn drop(&mut self) {
        tracing::info!("Dropping KvRouter - cancelling background tasks");
        self.cancellation_token.cancel();
    }
}