https://github.com/andrewn6/juggler
experimental load balancer
https://github.com/andrewn6/juggler
Last synced: about 1 month ago
JSON representation
experimental load balancer
- Host: GitHub
- URL: https://github.com/andrewn6/juggler
- Owner: andrewn6
- Created: 2023-04-29T19:36:34.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-16T15:59:38.000Z (about 3 years ago)
- Last Synced: 2025-02-21T09:13:31.732Z (over 1 year ago)
- Language: Rust
- Homepage:
- Size: 90.4 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Juggler
Experimental load balancer tool, distributes incoming traffic accross multiple backend servers.
It is written in Rust using [Hyper](https://hyper.rs) library.
## Install
*Make sure rust is installed before using Juggler!*
Clone the repository.
```
git clone https://github.com/anddddrew/juggler
```
Build the codebase
```
cargo build
```
Start the load balancing server
```
./start.sh
```
*Note: you may want to modify the start script above to your usecase*
## Roadmap
Currently this tool is very basic and only supports the `round robin` & `weighted round robin` algorithm, I also want to make a CLI out of this so you can download it and use it locally on your system to test your application like this:
`juggler -p 3000 -s http://localhost:8000 -s http://localhost:8001`