router.rs 16.3 KB
Newer Older
1
use crate::tree::Tree;
2
3
4
use actix_web::http::header::{HeaderValue, CONTENT_TYPE};
use actix_web::{HttpRequest, HttpResponse};
use bytes::Bytes;
Byron Hsu's avatar
Byron Hsu committed
5
use futures_util::{StreamExt, TryStreamExt};
6
use log::{debug, info};
7
use std::collections::HashMap;
8
use std::fmt::Debug;
9
use std::sync::atomic::AtomicUsize;
10
use std::sync::{Arc, Mutex, RwLock};
11
12
use std::thread;
use std::time::Duration;
13
14

#[derive(Debug)]
15
16
pub enum Router {
    RoundRobin {
17
        worker_urls: Arc<RwLock<Vec<String>>>,
18
        current_index: AtomicUsize,
19
20
    },
    Random {
21
        worker_urls: Arc<RwLock<Vec<String>>>,
22
    },
23
24
    CacheAware {
        /*
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
            Cache-Aware Load Balancing Router

            This router combines two strategies to optimize both cache utilization and request distribution:

            1. Cache-Aware Routing (Approximate Tree)
            2. Load Balancing (Shortest Queue with Balance Thresholds)

            The router dynamically switches between these strategies based on load conditions:
            - Uses load balancing when the system is imbalanced
            - Uses cache-aware routing when the system is balanced

            A system is considered imbalanced if both conditions are met:
            1. (max - min) > abs_threshold
            2. max > rel_threshold * min

            Strategy Details:

            1. Cache-Aware Routing (Approximate Tree)
            -------------------------------------------
            This strategy maintains an approximate radix tree for each worker based on request history,
            eliminating the need for direct cache state queries. The tree stores raw text characters
            instead of token IDs to avoid tokenization overhead.

            Process:
            a. For each request, find the worker with the highest prefix match
            b. If match rate > cache_threshold:
            Route to the worker with highest match (likely has relevant data cached)
            c. If match rate ≤ cache_threshold:
            Route to the worker with smallest tree size (most available cache capacity)
            d. Background maintenance:
            Periodically evict least recently used leaf nodes to prevent memory overflow

            2. Load Balancing (Shortest Queue)
            -------------------------------------------
            This strategy tracks pending request counts per worker and routes new requests
            to the least busy worker when the system is detected to be imbalanced.

            Configuration Parameters:
            ------------------------
            1. cache_threshold: (float, 0.0 to 1.0)
            Minimum prefix match ratio to use highest-match routing.
            Below this threshold, routes to worker with most available cache space.

            2. balance_abs_threshold: (integer)
            Absolute difference threshold for load imbalance detection.
            System is potentially imbalanced if (max_load - min_load) > abs_threshold

            3. balance_rel_threshold: (float)
            Relative ratio threshold for load imbalance detection.
            System is potentially imbalanced if max_load > min_load * rel_threshold
            Used in conjunction with abs_threshold to determine final imbalance state.

            4. eviction_interval_secs: (integer)
            Interval between LRU eviction cycles for the approximate trees.

            5. max_tree_size: (integer)
            Maximum nodes per tree. When exceeded, LRU leaf nodes are evicted
            during the next eviction cycle.
83
        */
84
        worker_urls: Arc<RwLock<Vec<String>>>,
85
86
87
        tree: Arc<Mutex<Tree>>,
        running_queue: Arc<Mutex<HashMap<String, usize>>>,
        processed_queue: Arc<Mutex<HashMap<String, usize>>>,
88
        cache_threshold: f32,
89
90
91
        balance_abs_threshold: usize,
        balance_rel_threshold: f32,
        _eviction_thread: Option<thread::JoinHandle<()>>,
92
93
94
    },
}

95
#[derive(Debug)]
96
97
98
pub enum PolicyConfig {
    RandomConfig,
    RoundRobinConfig,
99
    CacheAwareConfig {
100
        cache_threshold: f32,
101
102
        balance_abs_threshold: usize,
        balance_rel_threshold: f32,
103
104
        eviction_interval_secs: u64,
        max_tree_size: usize,
105
106
107
    },
}

108
109
fn get_text_from_request(body: &Bytes, route: &str) -> String {
    // convert body to json
110
    let json = serde_json::from_slice::<serde_json::Value>(body).unwrap();
111

112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
    if route == "generate" {
        // get the "text" field
        let text = json.get("text").and_then(|t| t.as_str()).unwrap_or("");
        return text.to_string();
    } else if route == "v1/chat/completions" {
        // get the messages field as raw text
        if let Some(messages) = json.get("messages") {
            // Convert messages back to a string, preserving all JSON formatting
            return serde_json::to_string(messages).unwrap_or_default();
        }
    } else if route == "v1/completions" {
        let prompt = json.get("prompt").and_then(|t| t.as_str()).unwrap_or("");
        return prompt.to_string();
    }

    return "".to_string();
}
129
impl Router {
130
131
    pub fn new(worker_urls: Vec<String>, policy_config: PolicyConfig) -> Self {
        match policy_config {
132
133
134
            PolicyConfig::RandomConfig => Router::Random {
                worker_urls: Arc::new(RwLock::new(worker_urls)),
            },
135
            PolicyConfig::RoundRobinConfig => Router::RoundRobin {
136
                worker_urls: Arc::new(RwLock::new(worker_urls)),
137
138
                current_index: std::sync::atomic::AtomicUsize::new(0),
            },
139
            PolicyConfig::CacheAwareConfig {
140
                cache_threshold,
141
142
                balance_abs_threshold,
                balance_rel_threshold,
143
144
                eviction_interval_secs,
                max_tree_size,
145
            } => {
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
                let mut running_queue = HashMap::new();
                for url in &worker_urls {
                    running_queue.insert(url.clone(), 0);
                }

                let mut processed_queue = HashMap::new();
                for url in &worker_urls {
                    processed_queue.insert(url.clone(), 0);
                }

                let tree = Arc::new(Mutex::new(Tree::new()));
                let running_queue = Arc::new(Mutex::new(running_queue));
                let processed_queue = Arc::new(Mutex::new(processed_queue));

                // Create background eviction thread
                let tree_clone = Arc::clone(&tree);
                let processed_queue_clone = Arc::clone(&processed_queue);
163
                let running_queue_clone = Arc::clone(&running_queue);
164
165
166
167
168
169
170
                let eviction_thread = thread::spawn(move || {
                    loop {
                        // Sleep for the specified interval
                        thread::sleep(Duration::from_secs(eviction_interval_secs));

                        let locked_tree_clone = tree_clone.lock().unwrap();
                        // Run eviction
171
                        locked_tree_clone.evict_tenant_by_size(max_tree_size);
172
173
174

                        // Print the process queue
                        let locked_processed_queue = processed_queue_clone.lock().unwrap();
175
                        info!("Processed Queue: {:?}", locked_processed_queue);
176
177
178

                        // Print the running queue
                        let locked_running_queue = running_queue_clone.lock().unwrap();
179
                        info!("Running Queue: {:?}", locked_running_queue);
180
181
                    }
                });
182
183

                for url in &worker_urls {
184
                    tree.lock().unwrap().insert(&"".to_string(), url);
185
186
                }

187
                Router::CacheAware {
188
                    worker_urls: Arc::new(RwLock::new(worker_urls)),
189
190
191
                    tree,
                    running_queue,
                    processed_queue,
192
                    cache_threshold,
193
194
                    balance_abs_threshold,
                    balance_rel_threshold,
195
                    _eviction_thread: Some(eviction_thread),
196
197
                }
            }
198
199
200
        }
    }

201
202
    pub fn get_first(&self) -> Option<String> {
        match self {
203
204
            Router::RoundRobin { worker_urls, .. }
            | Router::Random { worker_urls }
205
            | Router::CacheAware { worker_urls, .. } => {
206
                if worker_urls.read().unwrap().is_empty() {
207
208
                    None
                } else {
209
                    Some(worker_urls.read().unwrap()[0].clone())
210
211
                }
            }
212
213
214
        }
    }

215
216
217
218
219
    pub async fn dispatch(
        &self,
        client: &reqwest::Client,
        req: HttpRequest,
        body: Bytes,
220
        route: &str,
221
    ) -> HttpResponse {
222
        let text = get_text_from_request(&body, route);
223

224
225
226
227
228
        let worker_url = match self {
            Router::RoundRobin {
                worker_urls,
                current_index,
            } => {
229
                let idx = current_index
230
231
232
                    .fetch_update(
                        std::sync::atomic::Ordering::SeqCst,
                        std::sync::atomic::Ordering::SeqCst,
233
                        |x| Some((x + 1) % worker_urls.read().unwrap().len()),
234
                    )
235
                    .unwrap();
236
                worker_urls.read().unwrap()[idx].clone()
237
            }
238

239
240
241
            Router::Random { worker_urls } => worker_urls.read().unwrap()
                [rand::random::<usize>() % worker_urls.read().unwrap().len()]
            .clone(),
242

243
            Router::CacheAware {
244
                worker_urls,
245
246
247
                tree,
                running_queue,
                processed_queue,
248
                cache_threshold,
249
250
                balance_abs_threshold,
                balance_rel_threshold,
251
252
                ..
            } => {
253
                // TODO: delay scheduling if cache hit rate is high because it may cause imbalance. prioritize low hit rate ones
254

Byron Hsu's avatar
Byron Hsu committed
255
                let tree = tree.lock().unwrap();
256
                let mut running_queue = running_queue.lock().unwrap();
257

258
259
260
261
262
263
264
265
266
267
268
269
                // Get current load statistics
                let max_load = *running_queue.values().max().unwrap_or(&0);
                let min_load = *running_queue.values().min().unwrap_or(&0);

                // Load is considered imbalanced if:
                // 1. (max - min) > abs_threshold AND
                // 2. max > rel_threshold * min
                let is_imbalanced = max_load.saturating_sub(min_load) > *balance_abs_threshold
                    && (max_load as f32) > (min_load as f32 * balance_rel_threshold);

                let selected_url = if is_imbalanced {
                    // Log load balancing trigger and current queue state
270
                    info!(
271
272
273
274
275
276
277
278
279
280
281
                        "Load balancing triggered due to workload imbalance:\n\
                        Max load: {}, Min load: {}\n\
                        Current running queue: {:?}",
                        max_load, min_load, running_queue
                    );

                    // Use shortest queue routing when load is imbalanced
                    running_queue
                        .iter()
                        .min_by_key(|(_url, &count)| count)
                        .map(|(url, _)| url.clone())
282
                        .unwrap_or_else(|| worker_urls.read().unwrap()[0].clone())
283
284
                } else {
                    // Use cache-aware routing when load is balanced
285
286
287
                    let (matched_text, matched_worker) = tree.prefix_match(&text);
                    let matched_rate =
                        matched_text.chars().count() as f32 / text.chars().count() as f32;
288

289
290
291
292
                    if matched_rate > *cache_threshold {
                        matched_worker.to_string()
                    } else {
                        tree.get_smallest_tenant()
293
                    }
294
                };
295

296
297
                // Update queues and tree
                *running_queue.get_mut(&selected_url).unwrap() += 1;
298

299
300
301
302
303
                *processed_queue
                    .lock()
                    .unwrap()
                    .get_mut(&selected_url)
                    .unwrap() += 1;
304
305
306
                tree.insert(&text, &selected_url);

                selected_url
307
308
            }
        };
309

310
311
312
        let is_stream = serde_json::from_slice::<serde_json::Value>(&body)
            .map(|v| v.get("stream").and_then(|s| s.as_bool()).unwrap_or(false))
            .unwrap_or(false);
313

314
        let res = match client
315
            .post(format!("{}/{}", worker_url.clone(), route))
316
317
318
319
320
321
322
323
324
325
326
327
328
329
            .header(
                "Content-Type",
                req.headers()
                    .get("Content-Type")
                    .and_then(|h| h.to_str().ok())
                    .unwrap_or("application/json"),
            )
            .body(body.to_vec())
            .send()
            .await
        {
            Ok(res) => res,
            Err(_) => return HttpResponse::InternalServerError().finish(),
        };
330

331
332
        let status = actix_web::http::StatusCode::from_u16(res.status().as_u16())
            .unwrap_or(actix_web::http::StatusCode::INTERNAL_SERVER_ERROR);
333

334
        if !is_stream {
335
336
            // For non-streaming requests, get response first
            let response = match res.bytes().await {
337
                Ok(body) => HttpResponse::build(status).body(body.to_vec()),
338
339
340
341
                Err(e) => {
                    let error_msg = format!("Failed to get response body: {}", e);
                    HttpResponse::InternalServerError().body(error_msg)
                }
342
343
344
345
346
347
348
349
350
            };

            // Then decrement running queue counter if using CacheAware
            if let Router::CacheAware { running_queue, .. } = self {
                if let Ok(mut queue) = running_queue.lock() {
                    if let Some(count) = queue.get_mut(&worker_url) {
                        *count = count.saturating_sub(1);
                    }
                }
351
            }
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374

            response
        } else if let Router::CacheAware { running_queue, .. } = self {
            let running_queue = Arc::clone(running_queue);
            let worker_url = worker_url.clone();

            HttpResponse::build(status)
                .insert_header((CONTENT_TYPE, HeaderValue::from_static("text/event-stream")))
                .streaming(
                    res.bytes_stream()
                        .map_err(|_| {
                            actix_web::error::ErrorInternalServerError("Failed to read stream")
                        })
                        .inspect(move |bytes| {
                            let bytes = bytes.as_ref().unwrap();
                            if bytes
                                .as_ref()
                                .windows(12)
                                .any(|window| window == b"data: [DONE]")
                            {
                                let mut locked_queue = running_queue.lock().unwrap();
                                let count = locked_queue.get_mut(&worker_url).unwrap();
                                *count = count.saturating_sub(1);
375
                                debug!("streaming is done!!")
376
377
378
                            }
                        }),
                )
379
380
381
382
        } else {
            HttpResponse::build(status)
                .insert_header((CONTENT_TYPE, HeaderValue::from_static("text/event-stream")))
                .streaming(res.bytes_stream().map_err(|_| {
383
                    actix_web::error::ErrorInternalServerError("Failed to read stream")
384
                }))
385
386
        }
    }
387
388
389
390
391
392
393
394
395
396
397
398

    pub fn add_worker(&self, worker_url: String) {
        match self {
            Router::RoundRobin { worker_urls, .. }
            | Router::Random { worker_urls }
            | Router::CacheAware { worker_urls, .. } => {
                let mut urls = worker_urls.write().unwrap();
                info!("Added worker: {}", worker_url);
                urls.push(worker_url);
            }
        }
    }
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417

    pub fn remove_worker(&self, worker_url: String) {
        match self {
            Router::RoundRobin { worker_urls, .. }
            | Router::Random { worker_urls }
            | Router::CacheAware { worker_urls, .. } => {
                let mut urls = worker_urls.write().unwrap();
                let index = urls.iter().position(|url| url == &worker_url).unwrap();
                urls.remove(index);
                info!("Removed worker: {}", worker_url);
            }
        }

        // if cache aware, remove the worker from the tree
        if let Router::CacheAware { tree, .. } = self {
            tree.lock().unwrap().remove_tenant(&worker_url);
            info!("Removed worker from tree: {}", worker_url);
        }
    }
418
}