Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andrewn6/juggler
experimental load balancer
https://github.com/andrewn6/juggler
Last synced: 6 days ago
JSON representation
experimental load balancer
- Host: GitHub
- URL: https://github.com/andrewn6/juggler
- Owner: andrewn6
- Created: 2023-04-29T19:36:34.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-05-16T15:59:38.000Z (over 1 year ago)
- Last Synced: 2024-12-31T07:44:26.791Z (8 days 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`