Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Evaluate / Production features #2778

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions docs/evaluate/production-features/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
id: index
title: Temporal's production deployment features
description: Explore your deployment options for production traffic with Temporal, offering both Self-hosted and Temporal Cloud solutions.
sidebar_label: Production features
tags:
- production-deployment
- production-features
- temporal-cloud
- temporal-self-hosted
keywords:
- temporal service deployment
- self-host temporal service
- temporal cloud benefits
- production traffic management
- high availability workflows
- multi-tenant temporal service
- workflow state retention
- temporal community support
- temporal cloud vs self-hosted
- workflow history export
---

When your application is ready to start serving production traffic, you have two options.

1. Self-host a Temporal Service
2. Use Temporal Cloud

| Feature | Temporal Cloud | Self-hosted |
| ---------------------------------- | -------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- |
| **Multi-tenant** | ✅ Up to 100 Namespaces | ✅ Unlimited Namespaces |
| **High availability and failover** | ✅ [Multi-region Namespaces](/evaluate/production-features/temporal-cloud/high-availability) | ✅ [Global Namespaces & Multi-Cluster Replication](/evaluate/production-features/self-hosted/high-availability) |
| **Application state persistence** | ✅ 30-90 day Retention | ✅ Unlimited |
| **Long term state retention** | ✅ Workflow History Export | ✅ Archival |
| **Community support** | ✅ Slack, Forum | ✅ Slack, Forum |
| **Paid support** | ✅ Prioritized responses | ✖️ |
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
id: high-availability
title: High availability - Self-hosted Temporal production feature
description: Explore your deployment options for production traffic with Temporal, offering both Self-hosted and Temporal Cloud solutions.
sidebar_label: High availability
tags:
- production-deployment
- production-features
- self-hosted-temporal
---
10 changes: 10 additions & 0 deletions docs/evaluate/production-features/self-hosted/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
id: index
title: Temporal's production deployment features
description: Explore your deployment options for production traffic with Temporal, offering both Self-hosted and Temporal Cloud solutions.
sidebar_label: Production features
tags:
- production-deployment
- production-features
- temporal-self-hosted
---
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
id: high-availability
title: High availability - Temporal Cloud production feature
description: Explore your deployment options for production traffic with Temporal, offering both Self-hosted and Temporal Cloud solutions.
sidebar_label: High availability
tags:
- production-deployment
- production-features
- temporal-cloud
---
10 changes: 10 additions & 0 deletions docs/evaluate/production-features/temporal-cloud/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
id: index
title: Temporal's production deployment features
description: Explore your deployment options for production traffic with Temporal, offering both Self-hosted and Temporal Cloud solutions.
sidebar_label: Production features
tags:
- production-deployment
- production-features
- temporal-cloud
---
31 changes: 31 additions & 0 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,37 @@ module.exports = {
"evaluate/development-features/throughput-composability",
],
},
{
type: "category",
label: "Production features",
collapsed: true,
link: {
type: "doc",
id: "evaluate/production-features/index",
},
items: [
{
type: "category",
label: "Temporal Cloud",
collapsed: true,
link: {
type: "doc",
id: "evaluate/production-features/temporal-cloud/index",
},
items: ["evaluate/production-features/temporal-cloud/high-availability"],
},
{
type: "category",
label: "Self-hosted",
collapsed: true,
link: {
type: "doc",
id: "evaluate/production-features/self-hosted/index",
},
items: ["evaluate/production-features/self-hosted/high-availability"],
},
],
},
"security",
"evaluate/release-stages",
{
Expand Down