Server Pools
A pool is a group of servers that OrbisManager treats as one unit. Instead of routing players to a specific server, you route them to a pool — and OrbisManager picks the best available server automatically.
Pools are useful for:
- Scaling game servers (send players to the least busy one)
- High availability (if one server goes down, players go to another)
- Using as a fallback target
Creating a pool
Click + New Pool and fill in:
- Name — A label for this pool (e.g.
Survival Servers,Minigame Pool) - Slug — A short identifier used internally (auto-generated)
- Load balancing strategy — How OrbisManager picks a server (see below)
- Sticky sessions — Whether the same player always goes to the same server
- Initial members — Optionally add servers right away
Load balancing strategies
| Strategy | How it works | Best for |
|---|---|---|
| Weighted Round-Robin | Distributes players in turn, respecting server weights | General use |
| Least Connections | Sends players to the server with the fewest active players | Even distribution |
| Random | Picks a server at random | Simple setups |
| IP Hash | Same player IP always goes to the same server | Session consistency |
Sticky sessions
When sticky sessions are enabled, a player who has been to a server before will always be sent back to the same one — as long as it's available.
Useful when your game servers store temporary player state (like ongoing matches or inventory caches).
Skip offline servers
With Skip Offline enabled, OrbisManager automatically excludes servers that are offline or unreachable from the pool. Players will never be sent to a dead server.
This is enabled by default and recommended to keep on.
Server weights
Each server in a pool has a weight that controls how often it receives players. A server with weight 2 receives twice as many players as one with weight 1.
You can also use Auto Weight, which sets the weight automatically based on the server's max player count.
Adding servers to a pool
Open a pool and use the Add server dropdown at the bottom to add existing servers. You can adjust each server's weight individually.