You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/evaluate/temporal-cloud/pricing.mdx
+114-20
Original file line number
Diff line number
Diff line change
@@ -35,44 +35,96 @@ It is flexible, transparent, and predictable so you know your costs and never pa
35
35
36
36
This page introduces the elements of Temporal Cloud pricing for [actions](#action), [storage](#storage), and [services/support](#support).
37
37
It gives you the information you need to estimate costs for your implementation.
38
-
For more accurate estimates, [reach out to our team](https://pages.temporal.io/contact-us). Once you have an account, you can view your cost and billing details in the account directly. For more information, view [Billing and Cost](/cloud/billing-and-cost).
38
+
For more exact estimates, [reach out to our team](https://pages.temporal.io/contact-us). Once you have an account, you can view your cost and billing details in the account directly. For more information, view [Billing and Cost](/cloud/billing-and-cost).
39
39
40
40
## Action pricing {#action}
41
41
42
-
**What is an Action?**
42
+
**What's an Action?**
43
43
44
44
Actions serve as the primary unit of consumption-based pricing for Temporal Cloud.
45
45
Temporal Actions are the building blocks for Workflow Executions.
46
46
When you execute a Temporal Workflow, its Actions create the ongoing state and progress of your Temporal Application.
47
47
48
48
Actions are collected and billed monthly for each Namespace.
49
-
The base rate is $25 per one million Actions per month (across all Namespaces).
49
+
The base rate is $25 per one million Actions per month.
50
+
This rate applies across all Namespaces.
50
51
You will be billed for a prorated portion of the Actions you use.
51
52
If you use fewer than one million Actions per month, your bill for Actions will be less than $25 for that month.
52
53
53
54
| Actions |$25 per one million (prorated) |
54
55
| ------- | ---------------------------------- |
55
56
56
-
Temporal Cloud also offers a credit system.
57
+
### Credit System {#credit-system}
58
+
59
+
**How does Temporal Cloud's credit system work?**
60
+
61
+
Temporal Cloud offers a credit system.
57
62
Credits provide an additional discount schedule for billable Actions and [storage](#storage).
58
63
Credits do not expire.
59
64
60
-
The credits applied to a Temporal Cloud Account include volume-based discounts for each Namespace.
61
-
Pricing may not be uniform per Namespace.
62
-
For example, under one credit commitment, a Namespace may use up to 300 million Actions priced at $23.25 per million Actions.
63
-
Another Namespace with over 300 million Actions benefits from a reduced rate of $18.80 per million Actions for any Actions beyond the 300 million mark.
64
-
65
-
The following table outlines the tiers for the credits system:
65
+
Credits applied to a Temporal Cloud Account unlock volume-based discounts.
66
+
Discounts are applied separately to each Namespace so pricing may not be uniform between Namespaces. This table shows our credit tiers and thresholds:
66
67
67
68
| Actions (Per Million Actions per Namespace) | Cost |
- The account would be charged a total of $13,060 for the month:
111
+
112
+
```
113
+
$2,325 for the first Namespace + $10,735 for the second Namespace = $13,060 (invoice total)
114
+
```
115
+
116
+
If you have additional questions about credits and volume-based discounts, please see our [Services and Support](https://docs.temporal.io/cloud/support) page or reach out to [our team](https://pages.temporal.io/contact-us).
117
+
118
+
:::note
119
+
120
+
Read more about billing cycles, invoices, and payments on our [Billing and cost](/cloud/billing-and-cost) page.
121
+
122
+
:::
123
+
124
+
### Actions and operations {#action-and-operations}
125
+
126
+
**How are Actions counted?**
127
+
76
128
The following operations result in Actions:
77
129
78
130
**Workflows**
@@ -122,7 +174,7 @@ The following operations result in Actions:
122
174
**Schedules**
123
175
124
176
[Schedules](/workflows#schedule) allows you to "schedule" a Workflow to start at a particular time.
125
-
Each execution of a Schedule will accrue three actions:
177
+
Each execution of a Schedule accrues three actions:
126
178
127
179
-**Schedule Start**.
128
180
This accounts for two actions.
@@ -162,6 +214,7 @@ Both kinds of storage have fixed costs.
162
214
| Active |$0.042 |
163
215
164
216
If you purchase Temporal Cloud credits (as [outlined earlier](#action)), active storage costs are tiered and measured in gigabyte-hours.
217
+
Like Action pricing, each storage tier applies per Namespace.
165
218
166
219
|**Active Storage (Per GB Hour Per Namespace)**|**Cost (USD)**|
@@ -172,7 +225,46 @@ If you purchase Temporal Cloud credits (as [outlined earlier](#action)), active
172
225
| Over 400,000 up to 1,500,000 |$0.013 |
173
226
| Over 1,500,000 |$0.010 |
174
227
175
-
## Multi-region Namespace pricing {#multi-region}
228
+
### Calculating Storage costs
229
+
230
+
**How does tiered invoicing work?**
231
+
232
+
Consider an account eligible for volume discounts that uses two Namespaces.
233
+
In this example, one Namespace used 5000 GBh of active storage during a calendar month.
234
+
A second used 14000 GBh of Active Storage during the same calendar month.
235
+
Here's how Active Storage will be billed for these two Namespaces:
236
+
237
+
- The first Namespace is charged entirely at the $0.039 tier:
238
+
239
+
```
240
+
5000 GBh ⨉ $0.039 per GBh = $117 (total Active Storage cost for first Namespace)
241
+
```
242
+
243
+
- The second Namespace is charged at the $0.039 tier for the first 7000 GBh, and at the $0.031 tier for the remaining 7000 GBh.
244
+
245
+
```
246
+
7000 GBh ⨉ $0.039 per GBh = $273
247
+
7000 GBh ⨉ $0.031 per GBh = $217
248
+
$273 + $217 = $490 (total Active Storage cost for second Namespace)
249
+
```
250
+
251
+
- The account would be charged $753 for the month:
252
+
253
+
```
254
+
$273 for Namespace 1 + $490 for Namespace 2 = $753 Active Storage cost
255
+
```
256
+
257
+
If you have additional questions about credits and volume-based discounts, please see our [Services and Support](https://docs.temporal.io/cloud/support) page or reach out to [our team](https://pages.temporal.io/contact-us).
258
+
259
+
:::note
260
+
261
+
Read more about billing cycles, invoices, and payments on our [Billing and cost](/cloud/billing-and-cost) page.
0 commit comments