Skip to content

Commit 45e5aab

Browse files
committed
Improved the Machine spec and limits page
1 parent 8d3b803 commit 45e5aab

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

docs/limits.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,9 @@ If you're creating schedules for your user you will definitely need to request m
4949
| Task outputs | Must not exceed 10MB |
5050

5151
Payloads and outputs that exceed 512KB will be offloaded to object storage and a presigned URL will be provided to download the data when calling `runs.retrieve`. You don't need to do anything to handle this in your tasks however, as we will transparently upload/download these during operation.
52+
53+
### Machines
54+
55+
The default machine is `small-1x` which has 0.5 vCPU and 0.5 GB of RAM. You can optionally configure a higher spec machine which will increase the cost of running the task but can also improve the performance of the task if it is CPU or memory bound.
56+
57+
See the [machine configurations](/machines#machine-configurations) for more details.

docs/machines.mdx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ export const config: TriggerConfig = {
3030

3131
## Machine configurations
3232

33-
| Preset | vCPU | Memory |
34-
| --------- | ---- | ------ |
35-
| micro | 0.25 | 0.25 |
36-
| small-1x | 0.5 | 0.5 |
37-
| small-2x | 1 | 1 |
38-
| medium-1x | 1 | 2 |
39-
| medium-2x | 2 | 4 |
40-
| large-1x | 4 | 8 |
41-
| large-2x | 8 | 16 |
33+
| Preset | vCPU | Memory | Disk space |
34+
| ------------------- | ---- | ------ | ---------- |
35+
| micro | 0.25 | 0.25 | 10GB |
36+
| small-1x (default) | 0.5 | 0.5 | 10GB |
37+
| small-2x | 1 | 1 | 10GB |
38+
| medium-1x | 1 | 2 | 10GB |
39+
| medium-2x | 2 | 4 | 10GB |
40+
| large-1x | 4 | 8 | 10GB |
41+
| large-2x | 8 | 16 | 10GB |
4242

4343
You can view the Trigger.dev cloud pricing for these machines [here](https://trigger.dev/pricing#computePricing).

0 commit comments

Comments
 (0)