Modern multiplayer backends are modular. You might already use Amazon’s GameLift Servers FlexMatch, or build your matchmaking on Heroic Labs’ Nakama Server.
Instead of replacing these systems, ODIN Fleet integrates with them.
This article explains:
- What becomes possible when you combine ODIN Fleet with external matchmaking systems
- How the architecture works on a high level
- Where to find full step-by-step implementation guides
What’s Possible
Modern multiplayer architectures don’t need to bundle everything into one provider.
With ODIN Fleet, you can separate two core responsibilities:
- 🧠 Matchmaking system → decides who plays together
- 🖥 ODIN Fleet → runs the dedicated game servers
This separation gives you flexibility without sacrificing scalability.
Why This Matters for Decision Makers and Developers
Infrastructure independence
Use AWS matchmaking features or Nakama logic — without being locked into their compute layer.
Clear cost control
Matchmaking and server infrastructure scale differently. Separating them gives better transparency and optimization potential.
Long-term flexibility
You can evolve or replace your matchmaking system without redesigning your server deployment model.
Clean architecture
Matchmaking stays in your backend.
Game servers run independently on ODIN Fleet.
Works with your stack
Already using:
- Amazon GameLift Anywhere
- Amazon GameLift FlexMatch
- Nakama
You don’t need to rewrite anything — you simply connect ODIN Fleet as the compute layer.
The Core Idea
Across all setups:
- Matchmaking remains intelligent and provider-specific
- ODIN Fleet provides scalable, global compute
- Systems communicate through clearly defined interfaces
- Players connect directly to ODIN-hosted servers
This results in a modern multiplayer backend that is:
Composable. Replaceable. Scalable.
How It Works Technically
Let’s look at the structure without diving too deep.
1️⃣ ODIN Fleet as the Compute Layer
ODIN Fleet runs your dedicated game server as a Docker container.
Each server:
- Exposes a public game port
- Can receive environment variables
- Can update metadata (e.g., idle/occupied)
- Can integrate SDKs like GameLift
ODIN Fleet does not do matchmaking.
It runs your game reliably and globally.
2️⃣ External Matchmaking Layer
Depending on your setup:
With GameLift Anywhere (+ FlexMatch)
FlexMatch handles via agents. ODIN provides.
- Your game server includes the GameLift Server SDK
- A GameLift Agent runs inside the game server’s docker container
- AWS handles matchmaking and session placement
- ODIN provides the actual compute resources to run your game server
- Dynamic scaling based on real-time player counts to save costs
With Nakama
Nakama matches via modules.
ODIN runs.
- Nakama implements matchmaking logic
- A FleetManager module connects Nakama to ODIN Fleet
- Nakama lists available servers
- Game servers update their state via metadata
3️⃣ State Synchronization
All integrations rely on simple state communication:
- Server becomes available → marked as
idle - Match starts → marked as
occupied - Match ends → marked as
idle - Scale up or down on demand
This keeps orchestration deterministic and transparent.
Full Implementation Guides
If you want to go deeper, we provide complete technical guides:
🔹 GameLift FlexMatch (builds on Anywhere) + ODIN Fleet
Step-by-step setup including:
- Unreal Server SDK integration
- GameLift Agent in Docker
- Backend example
- Rule sets & Placement queues
- SNS notifications
- Client integration
- Autoscaling
👉 https://docs.4players.io/fleet/guides/gamelift-flexmatch/
GitHub repository: https://github.com/4Players/OdinFleet_GameLift_Unreal (Game Server) https://github.com/4Players/Odin_GameLift_GameBackendService (Agent & Autoscaling)
🔹 Nakama Fleet Manager
Includes:
- Go-based FleetManager module
- ODIN Fleet API integration
- Metadata-based orchestration
- Example implementation
👉 https://docs.4players.io/fleet/guides/nakama-fleetmanager/
GitHub repository: https://github.com/4Players/odin-nakama-fleet-manager
🔹 Other Matchmaking System?
No worries - let’s talk!
👉 https://odin.4players.io/company/contact_us/
Ready to Build?
Explore the full documentation:
👉 https://docs.4players.io/fleet/
Or talk to us about your backend architecture:
👉 https://odin.4players.io/company/contact_us/
Let’s build scalable multiplayer systems —
with flexible matchmaking and independent infrastructure.

