comparison

Temporal Cloud vs Self-Hosted 2026: True Cost and When Each Wins

Temporal Cloud is a managed durable execution service starting around $200/month at low volume with 99.9% SLA. Self-hosted Temporal is Apache 2.0 open source with realistic infrastructure cost of $2,500-$4,500/month plus operational labor. This 2026 guide covers the action-volume crossover, compliance triggers, and total cost of ownership.

Overview

Temporal is a durable execution platform that runs long-running, fault-tolerant workflows as code. Founded in 2019 by Maxim Fateev and Samar Abbas (the original authors of Uber Cadence), Temporal is offered as both a managed service (Temporal Cloud) and as an open-source server (Apache 2.0 license) that organizations can self-host. The decision between the two is one of the most common questions in workflow-engine adoption, and the right answer depends on workload scale, operational maturity, compliance requirements, and total cost of ownership.

As of May 2026, Temporal Cloud runs in multiple AWS and Google Cloud regions (US East/West, EU West/Central, AP Southeast/Northeast) with namespace-level isolation. The self-hosted Temporal Server is the same codebase, deployed as a set of services (frontend, history, matching, worker) backed by Cassandra, MySQL, or PostgreSQL.

Temporal Cloud

Temporal Cloud is a fully managed multi-tenant service. Customers create namespaces and connect workers (their workflow code) over mTLS. The Temporal team operates the persistence layer (Cassandra), the history shards, the matching service, and observability. SLA is 99.9% on Standard and 99.95% on the Mission Critical tier.

Pricing as of May 2026 is consumption-based with three components: Actions (workflow events) billed per million ($25/M Actions on the Standard tier), Active Storage (GB-month of running workflow state), and Retained Storage (GB-month of completed workflow history retained for replay). A typical small-medium production deployment lands in the $200-$2,000/month range; large deployments can exceed $50,000/month.

The Mission Critical tier (introduced 2024) adds higher SLA, dedicated support, and priority namespace placement at a roughly 2x consumption multiplier.

Self-Hosted Temporal

Self-hosted Temporal is the same open-source server, deployed on Kubernetes (recommended via the helm-charts repository) or on VMs. The components are stateless except for the database. Cassandra is the recommended persistence layer at scale; PostgreSQL works for smaller deployments. Operators run Temporal frontend, history, matching, and worker services, plus the optional UI and Elasticsearch for advanced visibility.

License cost is zero (Apache 2.0). The cost is entirely infrastructure and operational labor.

True Cost of Self-Hosting

A frequent mistake is treating self-hosted Temporal as "free." A realistic small-production self-host costs include:

  • Cassandra cluster: 3-node minimum for production. AWS r6i.2xlarge x3 plus EBS storage runs roughly $1,200-$1,800/month before storage and backups.
  • Temporal services: 4-6 EC2/EKS pods across frontend, history, matching, and workers. Roughly $300-$600/month.
  • Elasticsearch (for advanced visibility): 3-node cluster, roughly $500-$900/month, or AWS OpenSearch managed.
  • Backups, snapshots, monitoring (Prometheus/Grafana), logging (CloudWatch/Loki): $200-$500/month.
  • Engineering operational time: realistically 0.25-1.0 FTE depending on how much custom tooling, on-call rotation, and incident response is needed.

A small production self-host with reasonable reliability typically lands in the $2,500-$4,500/month infrastructure range plus operational labor. At higher action volume, this can be cheaper than Cloud; at low-to-moderate volume, Cloud is almost always cheaper once labor is included.

Latency and SLA

Temporal Cloud reports p95 schedule-to-start latency under 50ms for tasks within the same region as the worker. Self-hosted Temporal can match or beat this if the Cassandra cluster is provisioned correctly, but latency degrades quickly under unbalanced shard distribution or undersized history nodes.

Cloud SLA is 99.9% (Standard) or 99.95% (Mission Critical), with credits issued for SLA breaches. Self-hosted SLA is whatever the organization can engineer; achieving 99.9% requires multi-AZ Cassandra, automated failover, and tested disaster recovery runbooks.

When to Choose Temporal Cloud

  • Action volume below roughly 50M-100M actions/month
  • The team does not have Cassandra operational experience
  • Compliance requirements are met by Temporal Cloud (SOC 2 Type II, HIPAA available)
  • Engineering capacity is better spent on workflow logic than on operating durable execution infrastructure

When to Choose Self-Hosted

  • Compliance/data residency rules out multi-tenant cloud (defense, certain regulated industries, sovereign clouds)
  • Action volume is high enough that Cloud consumption pricing exceeds infrastructure cost by a significant margin
  • The team already operates Cassandra and Kubernetes at scale and the marginal operational cost is low
  • Workloads require deep customization of the Temporal server (custom search attributes, replication topologies, archival pipelines)

Crossover Point

A rough heuristic, current as of May 2026: self-hosted becomes cost-competitive at around 30-50M Actions/month for organizations that already operate Kubernetes and Cassandra; below that threshold, Cloud consumption pricing is almost always cheaper than the all-in cost of self-hosting (infrastructure plus operational labor). Organizations with strict data-residency or sovereignty requirements operate self-hosted regardless of cost.

Editor's Note: We have run both. A 2026 client engagement on a fintech compliance workflow stayed on self-hosted Temporal because their data-residency posture (EU-only, no US cloud egress) ruled out Cloud at the time. Cost was roughly $3,200/month infrastructure plus 0.4 FTE for operations, against an estimated $1,400/month on Cloud Standard at their action volume. The compliance constraint made the decision; without it, Cloud would have been the right call. A second 2026 client (mid-stage SaaS, 8M actions/month) moved from a self-host attempt to Cloud after realizing their on-call rotation could not absorb the operational load. Pattern: choose Cloud unless compliance, scale, or an existing Cassandra operations team makes self-host the cheaper option.

Written & reviewed by Rafal Fila · Last updated:

Tools Mentioned

Related Guides

guide

Client Portals vs Workflow Orchestration Platforms: What Changes When External Parties Act Inside a Process

What changes when a client or supplier has to act inside your process, not just watch it? This guide compares four client portals with four orchestration platforms on how outsiders get in, whether you pay for them and what the audit log records, from vendor sources read 14 and 15 September 2026.

comparison

Moxo vs Zapier in 2026: Human Approval Steps, External Participants and Pricing

Moxo and Zapier both put a person in front of an automated decision, from opposite ends: Moxo builds the process out of human steps and attaches AI, while Zapier pauses an automation for a reviewer through its Human in the Loop app. This guide compares approvers, rejection, AI approval, audit logs, governance and pricing, verified 14 and 15 September 2026.

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.

Related Rankings

Best Automation Platforms for AI Orchestration 2026

This ranking answers one question: how many real business applications can an AI agent act on out of the box? It evaluates nine platforms as of August 2026 on the reach they give an agent, not on the workflow logic they can express. That boundary is deliberate, because two neighbouring pages on this site answer different questions. Best Process Orchestration Platforms 2026 scores multi-step process control, error handling and state management. Best AI Agent Platforms 2026 scores building and hosting the agent itself. This page scores the layer between them: the connective tissue that lets an agent already built elsewhere reach the applications a business actually runs on. A platform that leads one of those pages can place low here, and two of them do. Scores derive from application and action catalogue counts, the exposure model each platform uses to publish those catalogues to an agent, setup effort, failure handling and cost per agent action. Every figure was retrieved from a vendor-owned surface on 11 August 2026 unless an earlier date is stated against it.

Best Durable Workflow Engines for Production in 2026

A ranked list of the best durable workflow engines for production deployments in 2026. Durable workflow engines persist execution state to a database so that long-running workflows survive process restarts, deployments, and infrastructure failures. The ranking covers Temporal, Prefect, Apache Airflow, Camunda, Windmill, and n8n. Tools were evaluated on production reliability, developer experience, scalability, open-source health, and documentation quality. The shortlist intentionally mixes code-first engines (Temporal, Prefect, Airflow) with hybrid visual platforms (Camunda, Windmill, n8n) to reflect how production teams actually choose workflow engines in 2026.

Common Questions

Can you automate a platform with no API using Zapier?

Not as a proper Zapier app. Zapier's help centre, updated 29 May 2026, says a private app can be built "for any service with a public API", and its fallbacks for a missing app are email parsing, RSS, webhooks, asking Zapier to add the app, or using a different app. Those let a no-API platform tell a Zap that something happened; none of them lets a Zap act inside the platform. The Zapier Agents Chrome extension can "run actions" on a page open in your own browser (help article updated 27 April 2026), but that is hands-on help, not a reusable Zap step.

How does Moxo keep humans in control when AI agents run a workflow?

Moxo keeps people on the decisions by design: approvals and other human steps are ones its product page says "only a person can close", and AI agents can fill preparer, advisor or reviewer slots around them (both read 15 September 2026). The checks on AI output are opt-in, though. In synthetic AutomationAtlas tests that day, an AI extract step's "Human review" and "Supervisor Agent" switches were both off by default, and the builder accepted the same role as a form's submitter and its approver.

What is Moxo?

Moxo AI (app.moxo.com) is a process orchestration platform from Moxo, formerly Moxtra, for work where several parties, approvals and documents meet. You build templates of human steps, AI steps and automations, each run is a Flow with its own data and status, and outsiders act through account-free Magic Links. Its only published price is Team, and the AI agents start on the custom-quoted Scale plan (moxo.com/pricing, 15 September 2026). It is not Moxo Classic, the older app.

How much does Moxo cost in 2026?

Moxo's only published price is Team: $500 a month in the monthly view or $5,000 a year in the yearly view, for 100 flows and $100 of AI a year with unlimited seats (moxo.com/pricing, 15 September 2026). Scale (500 flows and $500 of AI a year) and Enterprise are custom quotes. There is no free plan, no published overage rate and no stated trial length, and the dollar AI allowance has no published conversion to the credits Moxo's product logs.