Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Rust Router Python Binding #1891

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions rust/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[build-system]
requires = ["maturin>=1.5.1,<2.0"]
build-backend = "maturin"

[project]
name = "sglang_router"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
]
dynamic = ["version"]

[tool.maturin]
bindings = 'pyo3'
72 changes: 44 additions & 28 deletions rust/readme.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
# SGLang Router
# SGLang Router (Experimental)

SGLang router is a standalone module implemented in Rust to achieve data parallelism across SGLang instances.

### Installation
## Installation

WIP. Ideally just

```bash
pip install sglang-router
```

## Development

### Rust

1. Install Rust

```bash
# Install rustup (Rust installer and version manager)
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Expand All @@ -18,6 +29,7 @@ cargo --version
```

2. Build the router

```bash
# Navigate to the rust directory
cd ./rust
Expand All @@ -42,7 +54,36 @@ Options:
-V, --version Print version
```

### Setting Up Workers
### Python Binding

1. Create a virtual environment

```bash
$ python -m venv .venv
$ source .venv/bin/activate
```

2. Install python dependencies

```bash
$ pip install maturin
$ pip install patchelf
```

3. Install rust python binding

```bash
$ maturin develop
🔗 Found pyo3 bindings
🐍 Found CPython 3.10 at /home/jobuser/resources/sglang/rust/.venv/bin/python
📡 Using build options bindings from pyproject.toml
Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.11s
📦 Built wheel for CPython 3.10 to /tmp/.tmpJb65sc/sglang_router-0.0.0-cp310-cp310-linux_x86_64.whl
✏️ Setting installed package as editable
🛠 Installed sglang_router-0.0.0
```

## Usage

1. Launch worker instances
```bash
Expand All @@ -65,28 +106,3 @@ python -m sglang.launch_server \
```bash
./target/debug/router --worker-urls http://127.0.0.1:30000,http://127.0.0.1:30002
```

**Note**: This module is still experimental. Please expect active changes and updates.

### Python bindings

```bash
$ cargo build --release
$ maturin build -i /usr/bin/python
$ pip install <path to wheel>
```


### Development

1. Run test

```
$ cargo test
```

2. Run lint

```
$ cargo fmt
```
3 changes: 2 additions & 1 deletion rust/test_bindings.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import router
import sglang_router as router

# Create a Router instance with:
# - host: the address to bind to (e.g., "127.0.0.1")
Expand All @@ -11,6 +11,7 @@
"http://localhost:30000",
"http://localhost:30002",
],
policy="random"
)

# Start the router - this will block and run the server
Expand Down
Loading