What does Temporal cost when self-hosted?

Quick Answer: Self-hosted Temporal is free under the MIT license — the only cost is the infrastructure to run Temporal Server, its persistence layer (PostgreSQL or Cassandra), and optional Elasticsearch for advanced visibility. As of July 2026, a small production deployment on AWS typically costs about $480-$790/month (server nodes, managed Postgres, optional Elasticsearch, and workers). The managed alternative, Temporal Cloud, starts at the Essentials plan from $100/month (1 million Actions, billed as the greater of $100 or 5% of usage) and is usage-priced on Actions above that — self-hosting wins on cost mainly at high, steady volume where you already run the infrastructure.

Self-Hosted Temporal Licensing

Temporal Server and the official SDKs (Go, Java, TypeScript, Python, PHP, .NET) are released under the MIT license. There is no license fee for running Temporal in production, including in commercial SaaS products. The cost is entirely infrastructure and operations.

Infrastructure cost drivers (AWS, July 2026)

  • Temporal Server cluster: stateless; production usually runs 3+ nodes for HA. Three m6i.xlarge instances run roughly $200/month (1-year reserved) to $330/month on-demand.
  • Persistence layer: PostgreSQL or Cassandra. An RDS PostgreSQL db.m6g.large with 200 GB is ~$180/month; a three-node Cassandra cluster for high write throughput is ~$900/month.
  • Elasticsearch (optional): recommended for advanced visibility queries; a three-node OpenSearch cluster starts ~$180/month.
  • Workers: your application servers running workflows/activities — a small deployment is ~$100/month combined.

Typical small deployment total

Component Monthly (AWS, July 2026)
Temporal Server (3 nodes) $200-$330
PostgreSQL (db.m6g.large, 200 GB) $180
Elasticsearch (3× t3.medium.search) $180
Workers (2 instances) $100
Total $660-$790/month

Without Elasticsearch (standard visibility only), the total falls to roughly $480-$610/month.

Comparison with Temporal Cloud

The managed Temporal Cloud starts at the Essentials plan from $100/month (billed as the greater of $100 or 5% of usage; includes 1 million Actions, 1 GB active / 40 GB retained storage, 99.9% SLA), with Business from $500/month and usage priced on Actions (~$50/million) above the bundle. Cloud includes operational responsibilities self-hosters must handle themselves — cluster upgrades, persistence scaling, Elasticsearch lifecycle, SRE on-call, multi-region replication, and SOC 2 posture.

When self-hosting makes sense

Self-hosting is economical when the team already runs Kubernetes and has SRE capacity, or at high, steady volume where Cloud's per-Action pricing exceeds infrastructure cost. Teams processing hundreds of millions of Actions per month frequently find self-hosted Temporal cheaper even after SRE time. Smaller teams usually find the managed Essentials plan worth the premium until volume justifies dedicated operational investment.

Editor's Note: The honest version of self-hosted-versus-Cloud for Temporal is an SRE question, not a license one — the license is free (MIT), but a production cluster (server nodes, Postgres or Cassandra, optional Elasticsearch, monitoring, upgrades, on-call) is real, ongoing work. Re-checked July 2026: a small self-hosted deployment runs about $480-$790/month on AWS, while Temporal Cloud now starts at Essentials $100/month (1M Actions) — so below serious volume the managed plan is usually cheaper than the SRE time self-hosting consumes; self-hosting wins at high, steady Action volume where you already operate the infrastructure. — Rafal Fila, ShadowGen

Related Questions

Written & reviewed by Rafal Fila · Last updated:

Related Tools

Related Rankings

Dive Deeper

comparison

Keystroke vs n8n in 2026: Agent-Built TypeScript vs the Visual Canvas

Keystroke, launched in July 2026 by Y Combinator W24 company Sprint Labs, is a code-first automation platform where AI coding agents write workflows as TypeScript in the user's repository. n8n, founded in 2019, is the most widely deployed source-available visual workflow platform, with 200,000+ users and a $2.5 billion valuation. This comparison covers the agent-authored versus canvas building models, durable execution, licensing (Elastic License 2.0 vs the Sustainable Use License), verified July 2026 pricing including Keystroke's usage metering, and the maturity gap between a days-old platform and an established ecosystem.

comparison

QuantumBPM vs Camunda 2026: Single-Binary Challenger vs the BPMN Incumbent

QuantumBPM (launched 2026, Coroid s.r.o., Slovakia) packages a BPMN 2.0 runtime and DMN 1.5 decision engine into one Go binary backed by Temporal and PostgreSQL. Camunda (Berlin, founded 2013) is the category incumbent: Camunda 7 (Apache 2.0, in maintenance) and the Zeebe-based Camunda 8 platform. This comparison covers product structure, architecture, DMN TCK conformance with recording dates, deployment, pricing, and vendor maturity, verified July 2026.

case-study

Migrating 23 Make Scenarios to Self-Hosted n8n: a 3-Week Breakdown

Anonymized retrospective of a DTC ecommerce brand migrating 23 Make scenarios to a self-hosted n8n instance over three weeks. Tooling cost dropped from $348/month on Make Teams to roughly $12/month on a Hetzner VPS, but credential and webhook recreation consumed about 40% of total project time.