sequence.rs 41.7 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

//! KV Cache Sequence Management for LLM Inference
//!
//! This module provides efficient management of token sequences and their associated KV cache blocks
//! for distributed LLM inference. It implements a shared block system where multiple requests can
//! reuse the same KV cache blocks for common token prefixes, significantly reducing memory usage.
//!
//! # Key Components
//!
//! - [`ActiveSequences`]: Single-threaded sequence manager that tracks active requests and their
//!   token sequences, managing shared KV cache blocks efficiently.
//!
//! - [`ActiveSequencesMultiWorker`]: Multi-threaded extension that distributes sequence management
//!   across multiple worker threads, enabling parallel processing of requests while maintaining
//!   consistency.
//!
//! # Architecture
//!
//! The system uses a block-based approach where token sequences are divided into fixed-size blocks.
//! Each block is identified by a hash of its contents, allowing for deduplication when multiple
//! requests share common prefixes (e.g., system prompts, few-shot examples).

25
use crate::kv_router::indexer::OverlapScores;
26
use crate::kv_router::indexer::WorkerId;
27
use crate::tokens::SequenceHash;
28
29
use anyhow::Result;
use dashmap::DashMap;
30
use derive_getters::Getters;
31
32
use dynamo_runtime::component::Component;
use dynamo_runtime::traits::DistributedRuntimeProvider;
33
use dynamo_runtime::traits::events::{EventPublisher, EventSubscriber};
34
use futures::StreamExt;
35
use std::collections::{HashMap, HashSet};
36
use std::sync::Arc;
37
38
use std::time::Duration;
use tokio::time::Instant;
39
40
41
42
43
use uuid::Uuid;

use super::protocols::{ActiveSequenceEvent, ActiveSequenceEventData};
use crate::kv_router::ACTIVE_SEQUENCES_SUBJECT;
use dynamo_runtime::CancellationToken;
44

45
46
47
/// Duration after which stale requests are forcibly expired (5 minutes)
const EXPIRY_DURATION: Duration = Duration::from_secs(300);

48
49
50
51
52
53
// TODO: use the common request_id if it exists in the repo
pub type RequestId = String;

/// A multi-request sequence manager that handles multiple active sequences with shared KV cache
#[derive(Debug, Getters)]
pub struct ActiveSequences {
54
    active_seqs: HashMap<RequestId, Vec<SequenceHash>>,
55

56
57
    prefill_tokens: HashMap<RequestId, usize>,

58
    unique_blocks: HashMap<SequenceHash, HashSet<RequestId>>,
59
60
61
62
63
64

    #[getter(copy)]
    block_size: usize,

    #[getter(copy)]
    active_blocks: usize,
65
66
67

    #[getter(copy)]
    active_tokens: usize,
68
69
70
71
72
73

    /// Timer for when to force expiry of stale requests
    expiry_timer: Instant,

    /// Set of request IDs to check for expiry
    expiry_requests: HashSet<RequestId>,
74
75
76
77
78
79
80
81
82
83
}

impl ActiveSequences {
    /// Create a new SharedSequenceManager instance
    pub fn new(block_size: usize) -> Self {
        // TODO: make this not a hard req
        assert!(block_size > 1, "block_size must be greater than 1");

        Self {
            active_seqs: HashMap::new(),
84
            prefill_tokens: HashMap::new(),
85
86
87
            unique_blocks: HashMap::new(),
            block_size,
            active_blocks: 0,
88
            active_tokens: 0,
89
90
            expiry_timer: Instant::now() + EXPIRY_DURATION,
            expiry_requests: HashSet::new(),
91
92
93
        }
    }

94
    fn add_block(&mut self, request_id: RequestId, block: &SequenceHash) {
95
96
97
        let is_new_block = !self.unique_blocks.contains_key(block);

        self.unique_blocks
98
            .entry(*block)
99
100
101
102
103
104
105
106
            .or_default()
            .insert(request_id.clone());

        if is_new_block {
            self.active_blocks += 1;
        }
    }

107
    fn remove_block(&mut self, request_id: &RequestId, block: &SequenceHash) {
108
        let Some(request_ids) = self.unique_blocks.get_mut(block) else {
109
            return;
110
111
112
113
114
115
116
117
118
119
120
        };

        // Remove the unique block if no more requests using it
        request_ids.retain(|w| w != request_id);
        if request_ids.is_empty() {
            self.active_blocks -= 1;
            self.unique_blocks.remove(block);
        }
    }

    /// Add a new request with its initial tokens
121
    /// Returns the set of expired request IDs that were removed during cleanup
122
123
124
    pub fn add_request(
        &mut self,
        request_id: RequestId,
125
        token_sequence: Option<Vec<SequenceHash>>,
126
        isl: usize,
127
        overlap: u32,
128
    ) -> HashSet<RequestId> {
129
130
131
132
133
        // Check for double-add and panic early
        if self.active_seqs.contains_key(&request_id) {
            panic!("Request {request_id} is already active. Cannot accept double-add.");
        }

134
135
136
        // Lazily check and clean up expired requests, capturing removed IDs
        let removed_requests = self.force_expiry();

137
        let prefill_tokens = self.new_tokens(isl, overlap);
138
139
140
141
        self.prefill_tokens
            .insert(request_id.clone(), prefill_tokens);
        self.active_tokens += prefill_tokens;

142
143
144
145
146
147
148
149
        if let Some(sequence) = token_sequence {
            for block in &sequence {
                self.add_block(request_id.clone(), block);
            }
            self.active_seqs.insert(request_id.clone(), sequence);
        } else {
            // dummy empty sequence
            self.active_seqs.insert(request_id.clone(), Vec::new());
150
151
        }

152
        removed_requests
153
154
    }

155
156
157
158
159
    /// Mark prefill as completed for a request, removing it from prefill_tokens tracking
    pub fn mark_prefill_completed(&mut self, request_id: &RequestId) {
        if let Some(tokens) = self.prefill_tokens.remove(request_id) {
            self.active_tokens = self
                .active_tokens
160
                .checked_sub(tokens)
161
162
163
164
165
166
167
                .expect("active_tokens underflow");
        }
    }

    pub fn new_tokens(&self, isl: usize, overlap: u32) -> usize {
        isl.checked_sub((overlap as usize) * self.block_size)
            .unwrap_or_else(|| panic!("prefill_tokens < 0 with overlap {overlap} and ISL {isl}"))
168
169
170
171
    }

    pub fn potential_blocks_and_tokens(
        &self,
172
        token_sequence: Option<&[SequenceHash]>,
173
        isl: usize,
174
175
        overlap: u32,
    ) -> (usize, usize) {
176
177
178
179
180
        let potential_blocks = if let Some(token_seq) = token_sequence {
            self.new_blocks(token_seq) + self.active_blocks
        } else {
            self.active_blocks
        };
181
        let potential_tokens = self.new_tokens(isl, overlap) + self.active_tokens;
182
183
184
        (potential_blocks, potential_tokens)
    }

185
    /// Match a request against existing blocks and return the number of new blocks that would be added
186
187
    pub fn new_blocks(&self, token_sequence: &[SequenceHash]) -> usize {
        token_sequence
188
189
190
191
192
193
194
            .iter()
            .filter(|block| !self.unique_blocks.contains_key(block))
            .count()
    }

    /// Return the total number of blocks that would be used if the token sequence was added
    /// This is the sum of new blocks that would be added plus the current active blocks
195
    pub fn potential_blocks(&self, token_sequence: &[SequenceHash]) -> usize {
196
197
198
199
200
        self.new_blocks(token_sequence) + self.active_blocks
    }

    /// Free all blocks associated with a request
    pub fn free(&mut self, request_id: &RequestId) -> usize {
201
        self.mark_prefill_completed(request_id);
202

203
204
        self.expiry_requests.remove(request_id);

205
206
207
208
209
210
211
        // Remove from active_seqs and get the token sequence
        let token_seq = match self.active_seqs.remove(request_id) {
            Some(seq) => seq,
            None => {
                tracing::warn!("Trying to free non-existent request {request_id}");
                return self.active_blocks;
            }
212
213
        };

214
        for block in token_seq {
215
            self.remove_block(request_id, &block)
216
217
218
219
        }

        self.active_blocks
    }
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242

    /// Force expiry of stale requests if the timer has elapsed
    /// Returns the set of expired request IDs that were removed
    pub fn force_expiry(&mut self) -> HashSet<RequestId> {
        let now = Instant::now();

        // Early return if timer hasn't expired yet
        if now < self.expiry_timer {
            return HashSet::new();
        }

        // Process expired requests - drain to avoid clone
        let expired_requests: HashSet<RequestId> = self.expiry_requests.drain().collect();
        for request_id in &expired_requests {
            tracing::warn!("Force expiring stale request: {}", request_id);
            self.free(request_id);
        }

        self.expiry_timer = now + EXPIRY_DURATION;
        self.expiry_requests = self.active_seqs.keys().cloned().collect();

        expired_requests
    }
243
244
245
246
247
}

enum UpdateSequences {
    AddRequest {
        request_id: RequestId,
248
        token_sequence: Option<Vec<SequenceHash>>,
249
        isl: usize,
250
        overlap: u32,
251
        resp_tx: tokio::sync::oneshot::Sender<HashSet<RequestId>>,
252
253
254
255
    },
    Free {
        request_id: RequestId,
    },
256
    MarkPrefillCompleted {
257
258
259
        request_id: RequestId,
    },
    NewBlocks {
260
        token_sequence: Arc<Vec<SequenceHash>>,
261
        resp_tx: tokio::sync::oneshot::Sender<usize>,
262
263
    },
    PotentialBlocks {
264
        token_sequence: Arc<Vec<SequenceHash>>,
265
        resp_tx: tokio::sync::oneshot::Sender<usize>,
266
    },
267
    PotentialBlocksAndTokens {
268
        token_sequence: Option<Arc<Vec<SequenceHash>>>,
269
        isl: usize,
270
        overlap: u32,
271
        resp_tx: tokio::sync::oneshot::Sender<(usize, usize)>,
272
    },
273
    ActiveBlocks {
274
        resp_tx: tokio::sync::oneshot::Sender<usize>,
275
    },
276
    ActiveTokens {
277
        resp_tx: tokio::sync::oneshot::Sender<usize>,
278
    },
279
280
281
282
283
    Shutdown,
}

/// Multi-worker extension of ActiveSequences that distributes requests across multiple threads
pub struct ActiveSequencesMultiWorker {
284
285
286
    senders: Arc<DashMap<WorkerId, tokio::sync::mpsc::UnboundedSender<UpdateSequences>>>,
    request_to_worker: Arc<DashMap<RequestId, WorkerId>>,
    handles: Arc<DashMap<WorkerId, tokio::task::JoinHandle<()>>>,
287
    block_size: usize,
288
289
290
    component: Component,
    router_id: Uuid,
    replica_sync: bool,
291
292
293
}

impl ActiveSequencesMultiWorker {
294
295
296
297
298
    pub fn new(
        component: Component,
        block_size: usize,
        worker_ids: Vec<WorkerId>,
        replica_sync: bool,
299
        router_uuid: String,
300
    ) -> Self {
301
302
        assert!(block_size > 1, "block_size must be greater than 1");

303
304
305
        let senders = Arc::new(DashMap::new());
        let handles = Arc::new(DashMap::new());
        let request_to_worker = Arc::new(DashMap::new());
306
307
308
309
310
311
312
313
        let router_id = Uuid::parse_str(&router_uuid).unwrap_or_else(|e| {
            tracing::warn!(
                "Failed to parse router UUID '{}': {}, using new UUID",
                router_uuid,
                e
            );
            Uuid::new_v4()
        });
314
315

        for worker_id in worker_ids {
316
317
318
            // Create a child cancellation token from the component's runtime
            let cancel_token = component.drt().runtime().child_token();
            let (sender, handle) = Self::start_worker(block_size, cancel_token);
319
320
321
322
            senders.insert(worker_id, sender);
            handles.insert(worker_id, handle);
        }

323
324
325
        let multi_worker = Self {
            senders: senders.clone(),
            request_to_worker: request_to_worker.clone(),
326
327
            handles,
            block_size,
328
329
330
331
332
333
334
335
336
337
338
            component: component.clone(),
            router_id,
            replica_sync,
        };

        // Start the subscription loop only if replica_sync is enabled
        if replica_sync {
            let senders_clone = senders.clone();
            let request_to_worker_clone = request_to_worker.clone();
            let component_clone = component.clone();
            let router_id_clone = router_id;
339
            let cancel_token = component.drt().runtime().child_token();
340

341
            tokio::spawn(async move {
342
                // NATS subscription loop
343
344
345
346
347
                if let Err(e) = Self::subscribe_to_events(
                    senders_clone,
                    request_to_worker_clone,
                    component_clone,
                    router_id_clone,
348
                    cancel_token,
349
350
351
352
353
354
                )
                .await
                {
                    tracing::error!("Error in active sequences events subscription: {}", e);
                }
            });
355
        }
356
357

        multi_worker
358
359
    }

360
361
362
363
364
365
366
367
368
    /// Helper method to start a worker task
    fn start_worker(
        block_size: usize,
        cancel_token: CancellationToken, // Add cancellation token parameter
    ) -> (
        tokio::sync::mpsc::UnboundedSender<UpdateSequences>,
        tokio::task::JoinHandle<()>,
    ) {
        let (request_tx, mut request_rx) = tokio::sync::mpsc::unbounded_channel();
369

370
        let handle = tokio::spawn(async move {
371
372
            let mut active_sequences = ActiveSequences::new(block_size);

373
374
375
376
377
378
379
380
381
382
383
384
            loop {
                tokio::select! {
                    // Handle incoming commands
                    command = request_rx.recv() => {
                        match command {
                            Some(command) => {
                                match command {
                                    UpdateSequences::AddRequest {
                                        request_id,
                                        token_sequence,
                                        isl,
                                        overlap,
385
                                        resp_tx,
386
                                    } => {
387
388
                                        let removed = active_sequences.add_request(request_id, token_sequence, isl, overlap);
                                        let _ = resp_tx.send(removed);
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
                                    }
                                    UpdateSequences::Free { request_id } => {
                                        active_sequences.free(&request_id);
                                    }
                                    UpdateSequences::MarkPrefillCompleted { request_id } => {
                                        active_sequences.mark_prefill_completed(&request_id);
                                    }
                                    UpdateSequences::NewBlocks {
                                        token_sequence,
                                        resp_tx,
                                    } => {
                                        let new_blocks = active_sequences.new_blocks(&token_sequence);
                                        let _ = resp_tx.send(new_blocks);
                                    }
                                    UpdateSequences::PotentialBlocks {
                                        token_sequence,
                                        resp_tx,
                                    } => {
                                        let potential_blocks = active_sequences.potential_blocks(&token_sequence);
                                        let _ = resp_tx.send(potential_blocks);
                                    }
                                    UpdateSequences::PotentialBlocksAndTokens {
                                        token_sequence,
                                        isl,
                                        overlap,
                                        resp_tx,
                                    } => {
                                        let potential_tokens = active_sequences.potential_blocks_and_tokens(
417
                                            token_sequence.as_ref().map(|v| v.as_slice()),
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
                                            isl,
                                            overlap,
                                        );
                                        let _ = resp_tx.send(potential_tokens);
                                    }
                                    UpdateSequences::ActiveBlocks { resp_tx } => {
                                        let active_blocks = active_sequences.active_blocks();
                                        let _ = resp_tx.send(active_blocks);
                                    }
                                    UpdateSequences::ActiveTokens { resp_tx } => {
                                        let active_tokens = active_sequences.active_tokens();
                                        let _ = resp_tx.send(active_tokens);
                                    }
                                    UpdateSequences::Shutdown => {
                                        break;
                                    }
                                }
                            }
                            None => {
                                // Channel closed, exit
                                break;
                            }
                        }
441
                    }
442
443
444
445
                    // Handle cancellation
                    _ = cancel_token.cancelled() => {
                        tracing::debug!("Worker task cancelled");
                        break;
446
                    }
447
448
449
450
451
452
453
454
455
456
457
458
459
                }
            }
        });

        (request_tx, handle)
    }

    /// Background task to subscribe to active sequence events and update all workers
    async fn subscribe_to_events(
        senders: Arc<DashMap<WorkerId, tokio::sync::mpsc::UnboundedSender<UpdateSequences>>>,
        request_to_worker: Arc<DashMap<RequestId, WorkerId>>,
        component: Component,
        router_id: Uuid,
460
        cancel_token: CancellationToken,
461
462
463
464
465
    ) -> Result<()> {
        let mut subscriber = component
            .subscribe_with_type::<ActiveSequenceEvent>(ACTIVE_SEQUENCES_SUBJECT)
            .await?;

466
467
468
469
470
471
472
473
        loop {
            tokio::select! {
                // Handle incoming events
                result = subscriber.next() => {
                    let Some(result) = result else {
                        // Stream ended
                        break;
                    };
474

475
476
477
478
                    let Ok(event) = result else {
                        tracing::error!(
                            "Error receiving active sequence event: {}",
                            result.unwrap_err()
479
                        );
480
481
482
483
484
485
                        continue;
                    };

                    // Skip events emitted by itself
                    if event.router_id == router_id {
                        continue;
486
                    }
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530

                    match &event.data {
                        ActiveSequenceEventData::AddRequest {
                            token_sequence,
                            isl,
                            overlap,
                        } => {
                            request_to_worker.insert(event.request_id.clone(), event.worker_id);

                            if let Some(sender) = senders.get(&event.worker_id) {
                                // For replicated events, we create a dummy response channel since we don't need to handle expired requests
                                let (resp_tx, _) = tokio::sync::oneshot::channel();
                                let _ = sender.send(UpdateSequences::AddRequest {
                                    request_id: event.request_id.clone(),
                                    token_sequence: token_sequence.clone(),
                                    isl: *isl,
                                    overlap: *overlap,
                                    resp_tx,
                                });
                            } else {
                                tracing::warn!(
                                    "Worker {} not found, cannot process AddRequest",
                                    event.worker_id
                                );
                            }
                        }
                        ActiveSequenceEventData::Free => {
                            if let Some((_, worker_id)) = request_to_worker.remove(&event.request_id)
                                && let Some(sender) = senders.get(&worker_id)
                            {
                                let _ = sender.send(UpdateSequences::Free {
                                    request_id: event.request_id.clone(),
                                });
                            }
                        }
                        ActiveSequenceEventData::MarkPrefillCompleted => {
                            if let Some(worker_id) = request_to_worker.get(&event.request_id)
                                && let Some(sender) = senders.get(&*worker_id)
                            {
                                let _ = sender.send(UpdateSequences::MarkPrefillCompleted {
                                    request_id: event.request_id.clone(),
                                });
                            }
                        }
531
                    }
532
                }
533
534
535
536
                // Handle cancellation
                _ = cancel_token.cancelled() => {
                    tracing::debug!("Subscription task cancelled");
                    break;
537
538
                }
            }
539
        }
540

541
        Ok(())
542
543
544
    }

    /// Update the set of workers, adding and removing as needed
545
546
547
    pub fn update_workers(&self, new_worker_ids: Vec<WorkerId>) {
        let current_workers: HashSet<WorkerId> =
            self.senders.iter().map(|entry| *entry.key()).collect();
548
549
550
551
552
553
554
555
556
557
558
559
        let new_workers: HashSet<WorkerId> = new_worker_ids.into_iter().collect();

        let workers_to_remove: Vec<WorkerId> =
            current_workers.difference(&new_workers).copied().collect();
        let workers_to_add: Vec<WorkerId> =
            new_workers.difference(&current_workers).copied().collect();

        // Remove workers
        for worker_id in &workers_to_remove {
            tracing::warn!("Removing worker {}", worker_id);

            // Send shutdown command to the worker
560
            if let Some((_, sender)) = self.senders.remove(worker_id) {
561
562
                let _ = sender.send(UpdateSequences::Shutdown);
            }
563
564
            if let Some((_, handle)) = self.handles.remove(worker_id) {
                handle.abort();
565
            }
566
567
568
569

            // Clean up request_to_worker mappings for this worker
            self.request_to_worker
                .retain(|_request_id, mapped_worker_id| *mapped_worker_id != *worker_id);
570
571
572
573
574
575
        }

        // Add new workers
        for worker_id in &workers_to_add {
            tracing::warn!("Adding worker {}", worker_id);

576
577
578
579
            let (sender, handle) = Self::start_worker(
                self.block_size,
                self.component.drt().runtime().child_token(),
            );
580
581
582
583
584
            self.senders.insert(*worker_id, sender);
            self.handles.insert(*worker_id, handle);
        }
    }

585
586
    pub async fn add_request(
        &self,
587
        request_id: RequestId,
588
        token_sequence: Option<Vec<SequenceHash>>,
589
        isl: usize,
590
        overlap: u32,
591
        worker_id: WorkerId,
592
    ) -> Result<()> {
593
        if !self.senders.contains_key(&worker_id) {
594
595
596
            return Err(anyhow::anyhow!("Worker ID {worker_id} not found"));
        }

597
598
599
        // Create response channel
        let (resp_tx, resp_rx) = tokio::sync::oneshot::channel();

600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
        // Publish event only if replica_sync is enabled
        if self.replica_sync {
            let event = ActiveSequenceEvent {
                request_id: request_id.clone(),
                worker_id,
                data: ActiveSequenceEventData::AddRequest {
                    token_sequence: token_sequence.clone(),
                    isl,
                    overlap,
                },
                router_id: self.router_id,
            };
            self.component
                .publish(ACTIVE_SEQUENCES_SUBJECT, &event)
                .await?;
615
616
        }

617
        // Update local state
618
619
        self.request_to_worker.insert(request_id.clone(), worker_id);

620
621
622
        self.senders
            .get(&worker_id)
            .unwrap()
623
624
625
            .send(UpdateSequences::AddRequest {
                request_id,
                token_sequence,
626
                isl,
627
                overlap,
628
                resp_tx,
629
            })
630
631
            .map_err(|_| anyhow::anyhow!("Failed to send add_request command to worker"))?;

632
633
634
635
636
637
638
639
640
641
        // Wait for response and handle removed requests
        let removed_requests = resp_rx
            .await
            .map_err(|_| anyhow::anyhow!("Failed to receive response from worker"))?;

        // Remove expired requests from request_to_worker mapping
        for expired_id in &removed_requests {
            self.request_to_worker.remove(expired_id);
        }

642
        Ok(())
643
644
    }

645
    pub async fn free(&self, request_id: &RequestId) -> Result<()> {
646
647
648
        let worker_id = self
            .request_to_worker
            .get(request_id)
649
650
            .map(|entry| *entry)
            .ok_or_else(|| anyhow::anyhow!("Request ID not found in request_to_worker mapping"))?;
651

652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
        // Publish event only if replica_sync is enabled
        if self.replica_sync {
            let event = ActiveSequenceEvent {
                request_id: request_id.clone(),
                worker_id,
                data: ActiveSequenceEventData::Free,
                router_id: self.router_id,
            };
            self.component
                .publish(ACTIVE_SEQUENCES_SUBJECT, &event)
                .await?;
        }

        // Update local state
        self.senders
            .get(&worker_id)
            .unwrap()
669
670
671
            .send(UpdateSequences::Free {
                request_id: request_id.clone(),
            })
672
            .map_err(|_| anyhow::anyhow!("Failed to send free command to worker"))?;
673
674

        self.request_to_worker.remove(request_id);
675
676

        Ok(())
677
678
    }

679
    /// Mark prefill as completed for a request
680
    pub async fn mark_prefill_completed(&self, request_id: &RequestId) -> Result<()> {
681
682
683
        let worker_id = self
            .request_to_worker
            .get(request_id)
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
            .map(|entry| *entry)
            .ok_or_else(|| anyhow::anyhow!("Request ID not found in request_to_worker mapping"))?;

        // Publish event only if replica_sync is enabled
        if self.replica_sync {
            let event = ActiveSequenceEvent {
                request_id: request_id.clone(),
                worker_id,
                data: ActiveSequenceEventData::MarkPrefillCompleted,
                router_id: self.router_id,
            };
            self.component
                .publish(ACTIVE_SEQUENCES_SUBJECT, &event)
                .await?;
        }
699

700
701
702
703
        // Update local state
        self.senders
            .get(&worker_id)
            .unwrap()
704
            .send(UpdateSequences::MarkPrefillCompleted {
705
706
                request_id: request_id.clone(),
            })
707
708
709
710
711
            .map_err(|_| {
                anyhow::anyhow!("Failed to send mark_prefill_completed command to worker")
            })?;

        Ok(())
712
713
714
715
716
717
718
719
    }

    /// Get the number of workers
    pub fn num_workers(&self) -> usize {
        self.senders.len()
    }

    /// Generic method to query all workers with a given command
720
    async fn query_workers<T: Send + 'static>(
721
        &self,
722
        token_sequence: Option<Vec<SequenceHash>>,
723
724
725
726
727
        command_fn: impl Fn(
            Option<Arc<Vec<SequenceHash>>>,
            tokio::sync::oneshot::Sender<T>,
        ) -> UpdateSequences,
    ) -> HashMap<WorkerId, T> {
728
729
730
731
732
        let mut results = HashMap::new();
        let token_sequence_shared = token_sequence.map(Arc::new);
        let mut receivers = Vec::new();

        // Send queries to all workers in parallel
733
734
735
736
        for entry in self.senders.iter() {
            let worker_id = *entry.key();
            let sender = entry.value();
            let (resp_tx, resp_rx) = tokio::sync::oneshot::channel();
737
            receivers.push((worker_id, resp_rx));
738
739
740
            if let Err(e) = sender.send(command_fn(token_sequence_shared.clone(), resp_tx)) {
                tracing::error!("Failed to send command to worker {}: {}", worker_id, e);
            }
741
742
743
744
        }

        // Collect results from all workers
        for (worker_id, receiver) in receivers {
745
746
747
748
749
750
751
752
753
754
755
            match tokio::time::timeout(tokio::time::Duration::from_secs(1), receiver).await {
                Ok(Ok(result)) => {
                    results.insert(worker_id, result);
                }
                Ok(Err(_)) => {
                    tracing::error!("Worker {} dropped response channel", worker_id);
                }
                Err(_) => {
                    tracing::error!("Timeout waiting for response from worker {}", worker_id);
                }
            }
756
757
758
759
760
761
        }

        results
    }

    /// Query all workers for the number of new blocks that would be added by a token sequence
762
    pub async fn new_blocks(&self, token_sequence: Vec<SequenceHash>) -> HashMap<WorkerId, usize> {
763
764
765
766
767
768
769
        self.query_workers(Some(token_sequence), |ts, resp_tx| match ts {
            Some(ts) => UpdateSequences::NewBlocks {
                token_sequence: ts,
                resp_tx,
            },
            None => unreachable!("token_sequence should always be Some for new_blocks"),
        })
770
        .await
771
772
773
    }

    /// Query all workers for the total number of blocks (new + active) that would be used by a token sequence
774
775
776
777
    pub async fn potential_blocks(
        &self,
        token_sequence: Vec<SequenceHash>,
    ) -> HashMap<WorkerId, usize> {
778
779
780
781
782
783
784
        self.query_workers(Some(token_sequence), |ts, resp_tx| match ts {
            Some(ts) => UpdateSequences::PotentialBlocks {
                token_sequence: ts,
                resp_tx,
            },
            None => unreachable!("token_sequence should always be Some for potential_blocks"),
        })
785
        .await
786
787
    }

788
    /// Query all workers for the potential tokens (new + active) that would be used by a token sequence with overlap
789
    pub async fn potential_blocks_and_tokens(
790
        &self,
791
        token_sequence: Option<Vec<SequenceHash>>,
792
        isl: usize,
793
794
795
796
        overlaps: OverlapScores,
    ) -> (HashMap<WorkerId, usize>, HashMap<WorkerId, usize>) {
        let mut potential_blocks = HashMap::new();
        let mut potential_tokens = HashMap::new();
797
        let token_sequence_shared = token_sequence.map(Arc::new);
798
799
800
        let mut receivers = Vec::new();

        // Send queries to all workers in parallel
801
802
803
804
        for entry in self.senders.iter() {
            let worker_id = *entry.key();
            let sender = entry.value();
            let (resp_tx, resp_rx) = tokio::sync::oneshot::channel();
805
806
            receivers.push((worker_id, resp_rx));

807
808
809
810
811
812
813
814
815
816
817
818
            if let Err(e) = sender.send(UpdateSequences::PotentialBlocksAndTokens {
                token_sequence: token_sequence_shared.clone(),
                isl,
                overlap: overlaps.scores.get(&worker_id).copied().unwrap_or(0),
                resp_tx,
            }) {
                tracing::error!(
                    "Failed to send potential_tokens command to worker {}: {}",
                    worker_id,
                    e
                );
            }
819
820
821
822
        }

        // Collect results from all workers
        for (worker_id, receiver) in receivers {
823
824
825
826
827
828
829
830
831
832
833
834
            match tokio::time::timeout(tokio::time::Duration::from_secs(1), receiver).await {
                Ok(Ok((blocks, tokens))) => {
                    potential_blocks.insert(worker_id, blocks);
                    potential_tokens.insert(worker_id, tokens);
                }
                Ok(Err(_)) => {
                    tracing::error!("Worker {} dropped response channel", worker_id);
                }
                Err(_) => {
                    tracing::error!("Timeout waiting for response from worker {}", worker_id);
                }
            }
835
836
837
838
839
        }

        (potential_blocks, potential_tokens)
    }

840
    /// Query all workers for their current number of active blocks
841
    pub async fn active_blocks(&self) -> HashMap<WorkerId, usize> {
842
        self.query_workers(None, |_, resp_tx| UpdateSequences::ActiveBlocks { resp_tx })
843
            .await
844
    }
845
846

    /// Query all workers for their current number of active tokens
847
    pub async fn active_tokens(&self) -> HashMap<WorkerId, usize> {
848
        self.query_workers(None, |_, resp_tx| UpdateSequences::ActiveTokens { resp_tx })
849
            .await
850
    }
851
852
853
854
}

impl Drop for ActiveSequencesMultiWorker {
    fn drop(&mut self) {
855
856
857
        // Send shutdown to all workers
        for entry in self.senders.iter() {
            let _ = entry.value().send(UpdateSequences::Shutdown);
858
859
        }

860
861
862
        // Abort all tasks
        for entry in self.handles.iter() {
            entry.value().abort();
863
864
865
866
867
868
869
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
870
    use dynamo_runtime::{DistributedRuntime, Runtime};
871
    use std::sync::Arc;
872

873
    #[tokio::test]
874
    #[ignore]
875
    async fn test_multi_worker_cross_instance_sync() -> Result<()> {
876
877
878
        // Initialize logging once
        dynamo_runtime::logging::init();

879
880
        let block_size = 4; // arbitrary block size

881
882
883
        // Create runtime and distributed runtime
        let runtime = Runtime::from_current()?;
        let distributed = DistributedRuntime::from_settings(runtime.clone()).await?;
884

885
886
887
888
889
890
891
        // Create namespace and shared component for both seq_managers
        let namespace = distributed.namespace("test_cross_instance_sync")?;
        let component = namespace
            .component("sequences")?
            .service_builder()
            .create()
            .await?;
892

893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
        // Create multi-worker sequence managers with ALL workers [0, 1, 2]
        // Both use the same component to ensure event synchronization works
        let worker_ids = vec![0, 1, 2];
        let seq_manager_1 = Arc::new(ActiveSequencesMultiWorker::new(
            component.clone(),
            block_size,
            worker_ids.clone(),
            true,
            Uuid::new_v4().to_string(),
        ));
        let seq_manager_2 = Arc::new(ActiveSequencesMultiWorker::new(
            component,
            block_size,
            worker_ids,
            true,
            Uuid::new_v4().to_string(),
        ));

        // Give some time for the subscription loops to start
        tokio::time::sleep(tokio::time::Duration::from_millis(200)).await;

        // PHASE 1: Add requests using both seq_manager_1 and seq_manager_2

        // Add request_0 to worker 0: sequence [0, 1, 2]
        seq_manager_1
            .add_request(
                "request_0".to_string(),
                Some(vec![0, 1, 2]),
                12, // ISL (3 blocks * 4 block_size)
                0,  // no overlap
                0,  // worker_id
            )
            .await?;
926

927
928
929
930
931
932
933
934
935
936
        // Add request_1 to worker 1: sequence [3, 4]
        seq_manager_1
            .add_request(
                "request_1".to_string(),
                Some(vec![3, 4]),
                8, // ISL (2 blocks * 4 block_size)
                0, // no overlap
                1, // worker_id
            )
            .await?;
937

938
939
940
941
942
943
944
945
946
947
        // Add request_2 to worker 2: sequence [0, 1, 2, 3] using seq_manager_2
        seq_manager_2
            .add_request(
                "request_2".to_string(),
                Some(vec![0, 1, 2, 3]),
                16, // ISL (4 blocks * 4 block_size)
                0,  // no overlap
                2,  // worker_id
            )
            .await?;
948

949
950
        // Give some time for synchronization
        tokio::time::sleep(tokio::time::Duration::from_millis(300)).await;
951

952
953
954
        // Query seq_manager_1 to verify it sees all requests including request_2 from seq_manager_2
        let blocks_phase1 = seq_manager_1.active_blocks().await;
        let tokens_phase1 = seq_manager_1.active_tokens().await;
955

956
        // Verify that seq_manager_1 sees all requests including request_2 from thread 2
957
        assert_eq!(
958
959
            blocks_phase1[&0], 3,
            "Worker 0 should have 3 active blocks (from request_0)"
960
        );
961
        assert_eq!(
962
963
            blocks_phase1[&1], 2,
            "Worker 1 should have 2 active blocks (from request_1)"
964
965
        );
        assert_eq!(
966
967
            blocks_phase1[&2], 4,
            "Worker 2 should have 4 active blocks (from request_2 added by seq_manager_2)"
968
969
        );
        assert_eq!(
970
971
            tokens_phase1[&0], 12,
            "Worker 0 should have 12 active tokens"
972
        );
973
        assert_eq!(tokens_phase1[&1], 8, "Worker 1 should have 8 active tokens");
974
        assert_eq!(
975
976
            tokens_phase1[&2], 16,
            "Worker 2 should have 16 active tokens (from request_2 added by seq_manager_2)"
977
        );
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094

        // PHASE 2: Free requests using opposite sequence managers, verify on seq_manager_2

        // Free request_2 (which was added by seq_manager_2) using seq_manager_1
        seq_manager_1.free(&"request_2".to_string()).await?;

        // Free request_0 and request_1 (which were added by seq_manager_1) using seq_manager_2
        seq_manager_2.free(&"request_0".to_string()).await?;
        seq_manager_2.free(&"request_1".to_string()).await?;

        // Give some time for synchronization
        tokio::time::sleep(tokio::time::Duration::from_millis(300)).await;

        // Query seq_manager_2 to verify everything is empty
        let blocks_phase2 = seq_manager_2.active_blocks().await;
        let tokens_phase2 = seq_manager_2.active_tokens().await;

        // Verify phase 2 results - everything should be empty
        for worker_id in 0..=2 {
            assert_eq!(
                blocks_phase2[&worker_id], 0,
                "Worker {} should have 0 active blocks after all requests freed",
                worker_id
            );
            assert_eq!(
                tokens_phase2[&worker_id], 0,
                "Worker {} should have 0 active tokens after all requests freed",
                worker_id
            );
        }

        Ok(())
    }

    #[tokio::test]
    #[ignore]
    async fn test_multi_worker_no_token_sequence_sync() -> Result<()> {
        // Initialize logging once
        dynamo_runtime::logging::init();

        let block_size = 4; // arbitrary block size

        // Create runtime and distributed runtime
        let runtime = Runtime::from_current()?;
        let distributed = DistributedRuntime::from_settings(runtime.clone()).await?;

        // Create namespace and shared component for both seq_managers
        let namespace = distributed.namespace("test_no_token_seq_sync")?;
        let component = namespace
            .component("sequences")?
            .service_builder()
            .create()
            .await?;

        // Create multi-worker sequence managers with ALL workers [0, 1, 2]
        // Both use the same component to ensure event synchronization works
        let worker_ids = vec![0, 1, 2];
        let seq_manager_1 = Arc::new(ActiveSequencesMultiWorker::new(
            component.clone(),
            block_size,
            worker_ids.clone(),
            true,
            Uuid::new_v4().to_string(),
        ));
        let seq_manager_2 = Arc::new(ActiveSequencesMultiWorker::new(
            component,
            block_size,
            worker_ids,
            true,
            Uuid::new_v4().to_string(),
        ));

        // Give some time for the subscription loops to start
        tokio::time::sleep(tokio::time::Duration::from_millis(200)).await;

        // PHASE 1: Add requests (without token sequences) using both seq_managers

        // Add request_0 to worker 0 with no token sequence
        seq_manager_1
            .add_request(
                "request_0".to_string(),
                None, // No token sequence
                12,   // ISL (12 tokens)
                0,    // no overlap
                0,    // worker_id
            )
            .await?;

        // Add request_1 to worker 1 with no token sequence
        seq_manager_1
            .add_request(
                "request_1".to_string(),
                None, // No token sequence
                8,    // ISL (8 tokens)
                0,    // no overlap
                1,    // worker_id
            )
            .await?;

        // Add request_2 to worker 2 with no token sequence using seq_manager_2
        seq_manager_2
            .add_request(
                "request_2".to_string(),
                None, // No token sequence
                16,   // ISL (16 tokens)
                0,    // no overlap
                2,    // worker_id
            )
            .await?;

        // Give some time for synchronization
        tokio::time::sleep(tokio::time::Duration::from_millis(300)).await;

        // Query seq_manager_1 to verify it sees all requests including request_2 from seq_manager_2
        let tokens_phase1 = seq_manager_1.active_tokens().await;

        // Verify that seq_manager_1 sees all requests including request_2 from thread 2
1095
        assert_eq!(
1096
1097
            tokens_phase1[&0], 12,
            "Worker 0 should have 12 active tokens"
1098
        );
1099
        assert_eq!(tokens_phase1[&1], 8, "Worker 1 should have 8 active tokens");
1100
        assert_eq!(
1101
1102
            tokens_phase1[&2], 16,
            "Worker 2 should have 16 active tokens (from request_2 added by seq_manager_2)"
1103
        );
1104

1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
        // PHASE 2: Free requests using opposite sequence managers, verify on seq_manager_2

        // Mark prefill completed and free request_2 (which was added by seq_manager_2) using seq_manager_1
        seq_manager_1
            .mark_prefill_completed(&"request_2".to_string())
            .await?;
        seq_manager_1.free(&"request_2".to_string()).await?;

        // Mark prefill completed and free requests 0 and 1 (which were added by seq_manager_1) using seq_manager_2
        seq_manager_2
            .mark_prefill_completed(&"request_0".to_string())
            .await?;
        seq_manager_2
            .mark_prefill_completed(&"request_1".to_string())
            .await?;
        seq_manager_2.free(&"request_0".to_string()).await?;
        seq_manager_2.free(&"request_1".to_string()).await?;

        // Give some time for synchronization
        tokio::time::sleep(tokio::time::Duration::from_millis(300)).await;

        // Query seq_manager_2 to verify everything is empty
        let tokens_phase2 = seq_manager_2.active_tokens().await;

        // Verify phase 2 results - everything should be empty
        for worker_id in 0..=2 {
            assert_eq!(
                tokens_phase2[&worker_id], 0,
                "Worker {} should have 0 active tokens after all requests freed",
                worker_id
            );
        }

1138
        Ok(())
1139
1140
    }
}