Skip to content
  • Our Product
    • Namazu Elements
      • What is Elements?
      • Why open source?
      • Docs
        • Namazu Elements in Five Minutes or Less
        • RESTful APIs Library
        • Security Model
        • Accessing the Web UI (CMS)

    Our Product

    A logomark with three layered rhombuses adorning the lettermark that says Elements in bold all-caps sans-serif letters.
    • What is Namazu Elements? Discover our easy-to-use backend network solution built for online games. Rapidly enables full-scale multiplayer games or online solo adventures.
    • Why open source? Is there a truly open source server backend for connected games? There is now. Download and run a local copy of Namazu Elements and try it for yourself.
    Download Namazu Elements

    Get started

    • Quick start Read our Elements 5-minute quick start guide
    • Documentation Read our developer docs for learning more about Elements
    • RESTful APIs A full list of core API specs for working with the Elements framework
    • Security An overview of the server-authoritative security model of Elements
    • Accessing the CMS Manage your game with ease via the Namazu Elements CMS.

    Co-development Reimagined

    • Best real-time game backends in 2026 If you're researching an alternative to your current backend solution, we've prepared a report of all of the backend solutions on the market in 2026 and how Namazu Elements compares.
      Co-dev

    Recent Posts

    • The watercolor-styled Namazu Studios logo over a giant namazu lurking in the depth
      Namazu Studios Featured in San Diego Business Journal
      22 Sep 2025 Press
    • Namazu Elements 3.1 Released – Service Layer Fixes, Secure APIs, and Steam Bug Fix
      22 Apr 2025 Release Notes
  • Case Studies
  • About Us
  • News
  • Services
  • Book a call
namazu-studios-logo
Book a call
Popular Search Roblox

Getting Started

  • Namazu Elements in Five Minutes or Less
  • Overview
  • Accessing the Web UI (CMS)
  • CMS Feature Overview

Fundamentals

  • Why You Need a Server (and What “Authoritative” Means)
  • Elements as a Game Runtime
  • Where Your Authoritative Code Runs
  • Lifecycles and Flows

General Concepts

  • Custom Elements
  • Data Models
  • Security Model
  • N-Tier Architecture

Namazu Elements Core Features

  • Email Service
  • Applications
  • Sessions
  • Users and Profiles
  • Digital Goods
  • Progress and Missions
  • Progress and Missions (3.4+)
  • Leaderboards
  • Matchmaking – Comprehensive Guide
  • Friends
  • Followers
  • Product Bundles and SKUs
  • Item Ledger
  • Receipts
  • Reward Issuances
  • Save Data
  • Metadata
  • Metadata (3.4+)
  • Queries
  • User Authentication / Sign In
    • What is a User?
    • Email Verification
    • User Authentication in Elements
    • Account Linking
    • Setting Up Twitch OIDC Login (Backend)
    • OIDC Login for Thick Clients (Browser Redirect Flow)
    • Auth Schemes
      • Auth Schemes
      • OAuth2
      • OIDC
  • Features
    • Web3
      • Wallets
      • Vaults
      • Omni Chain Support
      • Smart Contracts
        • Smart Contracts
  • Queries
    • Advanced Operators
    • Object Graph Navigation
    • Boolean Queries
    • Base Query Syntax
  • Advanced Operators
    • .name
    • .ref

Your Game Code - Adding Custom Elements

  • Custom Code Overview
  • Windows Setup
  • Mac OS Setup
  • Ubuntu Linux Setup
  • Element Anatomy: A Technical Deep Dive
  • Introduction to Guice and Jakarta in Elements
  • Structuring your Element
  • Events
  • Packaging an Element with Maven
  • Deploying an Element
  • Preparing for code generation
  • Properties
  • Websockets
  • RESTful APIs
  • Direct MongoDB Access (3.5+)
  • Building the Example Element: A Complete Walkthrough
  • Building the Kotlin Example Element: A Complete Walkthrough

Configuration

  • Configuring External URLs for Deployment
  • Matchmaking – Comprehensive Guide
  • Direct Database Access and Batch Configuration
  • Connecting Namazu Elements to a TLS-Enabled MongoDB Replica Set
  • Batch Samples
    • Mission Upload Bash Script Sample
    • Item Upload Bash Script Sample

RESTful APIs

  • Importing into Postman
  • RESTful APIs Library
  • Swagger and Swagger UI

Add-Ons

  • Crossplay
    • Crossfire Client Libraries (JVM & Browser)
    • Crossfire Protocol Reference
    • Crossfire: Custom Matchmaking Algorithms
    • Namazu Crossfire (Multiplayer)
    • Deploying Namazu Crossfire in your game
  • Roblox
    • Roblox Overview
    • Secure Player Authentication & Registration
    • Global Matchmaking
    • Roblox Security Best Practices
  • Container on Demand
    • Namazu Conductor
    • Namazu Conductor Admin API
    • Configuring Namazu Conductor Providers
  • Commerce
    • Stripe
      • Stripe
      • Configuring the Stripe Element
      • Stripe REST API Reference
      • Stripe REST API Reference

Game Engine & Client Support

  • Unity
    • Elements Unity Plugin
    • Unity Crossfire Plugin
  • Gamemaker
    • Incorporating GMEXT-Elements into a GameMaker Project

Troubleshooting

  • Common Issues with Docker
  • Local SDK
    • Unable to deploy application : dev.getelements.elements.sdk.exception.SdkElementNotFoundException
    • Could not load class : java.lang.NoClassDefFoundError
  • Namazu Elements Community Edition
    • Common Issues with Docker
    • Unable to deploy application : dev.getelements.elements.sdk.exception.SdkElementNotFoundException
    • Running in the IDE
      • Exception in monitor thread while connecting to server localhost:27017
      • Could not deployAvailableApplications Jetty server Failed to bind to /0.0.0.0:8080 Address already in use

Releases

  • 3.8 Release Notes
  • 3.7 Release Notes
  • 3.6 Release Notes
  • 3.5 Release Notes
  • 3.4 Release Notes
  • 3.3 Release Notes
  • 3.2 Release Notes
  • 3.1 Release Notes
View Categories
  • Home
  • Docs
  • Add-Ons
  • Container on Demand
  • Namazu Conductor

Namazu Conductor

Est. read time: 3 min read

AI Doc Summarizer Doc Summary
AI Doc Summarizer Thinking Thinking

Namazu Conductor is an Element that provides a unified container/Session orchestration API for the Namazu Elements SDK. It abstracts a set of provider-specific game-server orchestration platforms — EdgeGap, AWS ECS, Kubernetes, and Unity Multiplay — behind a single OrchestrationService interface, so your authoritative code can launch, monitor, and stop game server workloads without depending on which platform actually hosts them.


Overview #

Every orchestration platform Conductor supports has its own idea of a “Profile” (a build config, a task definition, a pod template, a fleet), its own placement model (region, IP, lat/long), and its own scoping concept (namespace, cluster). Conductor normalizes these into a small, common set of types — JobProfile, JobRequest, JobExecution, JobPlacement, and JobScope — and exposes them through one OrchestrationService interface per provider. Your code targets that interface; which provider actually launches the workload is a deployment-time configuration decision, not a code change.

Each provider ships as its own Element, bound behind a Guice PrivateModule that exposes only OrchestrationService to the REST of the platform. You deploy the provider Element(s) relevant to your infrastructure — you don’t need Kubernetes, ECS, EdgeGap, and Multiplay support all loaded at once.


Key Features #

  • One OrchestrationService interface across EdgeGap, AWS ECS, Kubernetes, and Unity Multiplay
  • Launch, poll, list, and stop jobs (game server instances) through a common request/response model
  • Portable placement hints (region, IP, latitude/longitude) and scoping (namespace, cluster) that each provider honors where it has an equivalent concept, and silently ignores where it doesn’t
  • Live stdin/stdout/stderr streaming for a running job via streamStdio — native on Kubernetes, and available on EdgeGap and ECS through a small sidecar (see Streaming Job Stdio in Namazu Conductor)
  • A superuser-only cross-provider admin REST API and dashboard panel for listing, launching, and stopping jobs (see Namazu Conductor Admin API)

Module Structure #

ModulePurpose
apiCore interfaces and data types: OrchestrationService, JobRequest, JobExecution, JobProfile, JobPlacement, JobScope, JobStatus, JobStdio
edgegapEdgeGap REST API v1 implementation
ecsAWS ECS implementation (AWS SDK v2; Fargate and EC2 launch types)
kubernetesKubernetes implementation (Fabric8 client; maps PodTemplate resources to profiles, launching Pod or batch/v1 Job workloads)
multiplayUnity Multiplay implementation (fleet allocations via the Unity Services API)
adminSuperuser REST API and dashboard panel for listing/launching/stopping jobs across every deployed provider Element
debugLocal runner — boots a local MongoDB replica set, then the Elements runtime with whichever provider Elements you’ve configured

You typically deploy admin alongside whichever provider module(s) match your infrastructure. None of the modules depend on each other at runtime beyond sharing the api module’s types.


Core Concepts #

JobProfile #

A JobProfile is a provider-specific job template, identified by a string id. What backs a Profile differs per provider: an EdgeGap app + version, an ECS task definition family, a Kubernetes PodTemplate, or a Multiplay fleet + build configuration. Call OrchestrationService.getAvailableProfiles() to discover the profiles a given provider currently exposes, or findAvailableProfile(id) to look up one by id.

JobRequest and JobExecution #

Calling OrchestrationService.execute(request: JobRequest) launches a job. A JobRequest carries:

  • Profile — the JobProfile to launch
  • command / args — optional command and argument overrides (provider support varies — see Configuring Namazu Conductor Providers)
  • environment — optional environment variable overrides
  • placement — a list of JobPlacement hints
  • scope — a list of JobScope overrides

execute() returns a JobExecution: an id, a status (see below), a list of endpoints the job is reachable on (each a host/port/protocol triple), and an opaque provider-specific details payload. Use getFutureForStatus() / getStageForStatus() to wait for a job to reach a particular JobStatus, listExecutions() to see everything currently tracked, and stop() to terminate a job.

Note

Hold on to the exact JobExecution returned by execute() (or one derived from it via getFutureForStatus/getStageForStatus) if you plan to call streamStdio() later. On EdgeGap and ECS, the credential needed to open a stdio Session travels on that object’s details field and isn’t recoverable from listExecutions().

JobStatus #

Every job reports one of four statuses: PENDING (accepted, not yet running), RUNNING, COMPLETED (exited or was stopped normally), or FAILED.

JobPlacement #

JobPlacement is a hint about where a job should run. A JobRequest can carry any number of them; each provider honors the ones it understands and silently ignores the REST, so the same request can be sent to multiple providers without branching your code per platform.

  • RegionPlacement(id) — a provider-native region/zone identifier
  • IpPlacement(ip) — a target IP address
  • LatitudeLongitudePlacement(latitude, longitude) — a geographic coordinate

See Configuring Namazu Conductor Providers for which placement types each provider actually acts on.

JobScope #

JobScope overrides where, within a provider, a job is launched — for providers that have such a concept.

  • NamespaceScope(namespace) — Kubernetes; overrides the default namespace a workload is created in
  • ClusterScope(cluster) — ECS; overrides the default cluster a task is launched into

Providers without an equivalent concept — EdgeGap, whose scoping is fully determined by the Profile’s app/version, and Multiplay — silently ignore any JobScope entries.


Related Pages #

  • Configuring Namazu Conductor Providers — attributes, placement/scope support, and provider-specific behavior for EdgeGap, ECS, Kubernetes, and Multiplay
  • Streaming Job Stdio in Namazu Conductor — how streamStdio() works natively on Kubernetes and via the namazu-stdio-bridge sidecar on EdgeGap/ECS
  • Namazu Conductor Admin API — the cross-provider superuser REST API and dashboard panel
What are your Feelings
Still stuck? How can we help?

How can we help?

Updated on August 14, 2026
Configuring Namazu Conductor ProvidersNamazu Conductor Admin API
Table of Contents
  • Overview
  • Key Features
  • Module Structure
  • Core Concepts
    • JobProfile
    • JobRequest and JobExecution
    • JobStatus
    • JobPlacement
    • JobScope
  • Related Pages
  • Documentation
  • Terms of Service
  • Privacy Policy
  • Contact us
  • Linkedin
  • Join our Discord

Namazu Studios LLC is powered by Namazu Elements, an open source modular backend framework for connected games.

Namazu Elements
  • Download
  • About Elements
  • Open source
  • Documentation
  • Support
Namazu Studios
  • Case Studies
  • About Us
  • News
Best realtime game backends 2026
Get in Touch
  • info@namazustudios.com
  • Book a call
  • (619) 862-2890
  • Linkedin
  • Discord

©2008-2026 Namazu Studios. All Rights Reserved.