惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
D
Docker
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 聂微东
MyScale Blog
MyScale Blog
H
Help Net Security
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
M
MIT News - Artificial intelligence
大猫的无限游戏
大猫的无限游戏
酷 壳 – CoolShell
酷 壳 – CoolShell
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
P
Proofpoint News Feed
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
Martin Fowler
Martin Fowler
Microsoft Security Blog
Microsoft Security Blog
T
Tailwind CSS Blog
aimingoo的专栏
aimingoo的专栏

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Temporal Pricing Teardown 2026
Vlad Nadymov · 2026-05-27 · via DEV Community

TL;DR

Temporal is MIT-licensed workflow orchestration with ~12k GitHub stars, used in production by Stripe, Snap, and Coinbase. Temporal Cloud starts at $100/month with no free production tier — a deliberate signal that this is serious infrastructure, not a prototyping toy.

  • Essentials at $100/month covers 1M actions, 1GB active storage, 40GB retained storage
  • Business at $500/month adds SAML SSO, 2.5M actions, 2.5GB active, 100GB retained
  • Enterprise starts at 10M actions, contact sales; pay-as-you-go is an alternative to flat plans
  • Startup program gives $6,000 in credits to sub-$30M-funded companies — roughly 5 years of Essentials
  • Billing by "actions" maps directly to workflow logic, which is more predictable than compute-time pricing

This post is a part of series on commercial open source software pricing. See full list of articles here.

Temporal is a workflow orchestration engine — it lets you write durable, fault-tolerant business processes in regular code. Your workflow can run for days, survive server crashes, and resume exactly where it left off. ~12k GitHub stars, used by Stripe, Snap, Coinbase, and a bunch of other companies where reliability actually matters. They raised a $300M Series D at a $5B valuation, which tells you something about how seriously the market takes this.

Plans

  • Essentials — $100/month: 1M actions, 1GB active storage, 40GB retained storage.
  • Business — $500/month: 2.5M actions, 2.5GB active, 100GB retained, SAML SSO.
  • Enterprise: Contact sales, starts at 10M actions.
  • Pay-as-you-go: Available as an alternative to flat plans.
  • Startup program: $6,000 in free credits for companies with less than $30M in funding.

"Actions" is the right billing unit — and it's not obvious why

Most infrastructure tools bill by compute time, users, or seats. Temporal bills by "Actions" — discrete operations between your application and Temporal Cloud (scheduling an activity, completing a task, processing a signal, etc.).

This is unusual because Actions directly map to how much work your workflows are doing, not how long a server ran or how many people accessed the dashboard. A simple linear workflow might use 5-10 actions. A complex multi-step business process with retries, timers, and signals might use hundreds per run.

The implication: you can model your costs based on your actual business logic. A company processing 10,000 orders/day with a 5-action checkout workflow needs ~50M actions/month. That maps to Enterprise territory. A startup running a 3-action onboarding workflow at 1,000 new users/month needs 3M actions — well inside Essentials.

This is actually more predictable than compute-based pricing, where a bad deployment or retry storm eats your budget. Actions scale linearly with your actual workload.

The $100 floor is a statement

The Essentials plan starts at $100/month. There's no free tier for production use (startup credits aside). This is intentional — Temporal Cloud is not positioning itself as a cheap commodity. It's an infrastructure layer for serious production workflows.

$100/month is cheap for what it does. But the pricing signal says: if you're still prototyping, self-host. If you're in production, $100 is a rounding error compared to the cost of your engineers debugging a workflow that died in a multi-step process.

Self-hosting is real — and hard

Temporal's OSS is MIT licensed and fully functional. Companies do run it in production. But Temporal itself (the server, the cluster, Cassandra or Elasticsearch as backends) is genuinely complex to operate. The self-hosted path is not "run docker-compose and forget it."

The Cloud pricing confidence comes from this: they know their users are technical enough to know the infra cost of running Temporal themselves. $100/month for a managed, SLA-backed cluster is cheap when you factor in the engineering hours to maintain it.

The startup program is generous

$6,000 in free credits for sub-$30M-funded companies is roughly 5 years of Essentials at full price, or 1 year of Business. That's long enough to get to meaningful scale before you're paying. Sensible growth-stage acquisition strategy.

License

MIT for the core Temporal server and SDKs. You can self-host, fork, and run it commercially without restrictions. The managed cloud product (Temporal Cloud) is obviously proprietary. Clean separation.

Worth paying for?

If you're running anything in production where workflow failures cost real money or real user pain — yes, absolutely. Self-hosting is technically free but operationally expensive. The $100/month Essentials plan is a bargain against 1-2 engineering hours of debugging a failed workflow. The startup credits make the entry math even easier.


How Temporal pricing scales

Temporal has no free production tier — it starts at $100/month, and SAML SSO forces the $500/month Business tier.

Temporal pricing by tier. SSO lives on Business at 5× Essentials.
Temporal pricing by tier. SSO lives on Business at 5× Essentials.

This post is a part of series on commercial open source software pricing. See full list of articles here.

I build Beton — open source revenue intelligence for B2B SaaS.

FAQ

Is Temporal open source?

Yes. The Temporal server and SDKs are MIT licensed — you can self-host, fork, and run it commercially without restrictions. Temporal Cloud, the managed product, is proprietary.

What's the cheapest Temporal Cloud plan?

Essentials at $100/month, which includes 1M actions, 1GB active storage, and 40GB retained storage. There is no free tier for production use beyond the startup credits program.

Why does Temporal bill by 'actions' instead of compute time or seats?

Actions are discrete operations between your application and Temporal Cloud — scheduling an activity, completing a task, processing a signal. They scale linearly with your actual workflow logic, which makes cost modeling more predictable than compute-based pricing where a retry storm can eat your budget.

Should I self-host Temporal instead of paying for Cloud?

You can — the OSS is MIT and fully functional. But operating the Temporal server with Cassandra or Elasticsearch backends is genuinely complex. For production workloads, $100/month for a managed, SLA-backed cluster is cheap against the engineering hours to maintain it yourself.