You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# SGLang Router v0.1.0: Dynamic Scaling and Fault Tolerance
2
+
3
+
We have released `sglang-router` v0.1.0 equipped with dynamic scaling and fault tolerance! It is essential for the router to be able to dynamically scale the number of workers and handle worker failures. To achieve this, we have implemented the following features:
4
+
5
+
## 1. Dynamic scaling: The router can dynamically scale the number of workers based on the request load.
6
+
7
+
We offer `/add_worker` and `/remove_worker` APIs to dynamically add or remove workers from the router.
8
+
9
+
-`/add_worker`
10
+
11
+
Usage:
12
+
13
+
```bash
14
+
$ curl -X POST http://localhost:30000/add_worker?url=http://worker_url_1
0 commit comments