Skip to content
Open
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
2 changes: 2 additions & 0 deletions sdks/graphql/manage-pods.mdx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---

Check warning on line 1 in sdks/graphql/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

sdks/graphql/manage-pods.mdx#L1

Try to keep the Coleman–Liau Index grade (9.24) below 9.

Check warning on line 1 in sdks/graphql/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

sdks/graphql/manage-pods.mdx#L1

Try to keep the Flesch reading ease score (65.58) above 70.

Check warning on line 1 in sdks/graphql/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

sdks/graphql/manage-pods.mdx#L1

Try to keep the LIX score (35.75) below 35.
title: "Manage Pods"
description: "Create, start, stop, and query Pods using the GraphQL API. Review authentication, operations, request patterns, and examples for this Runpod SDK."
---
Expand All @@ -18,10 +18,12 @@
| Get Pod by ID | `pod(input: {podId: "..."})` |
| List GPU types | `gpuTypes` |

## Create a Pod

Check warning on line 21 in sdks/graphql/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

sdks/graphql/manage-pods.mdx#L21

'Create a Pod' should use sentence-style capitalization.

Pods provide guaranteed compute at a fixed price.

The `podFindAndDeployOnDemand` mutation searches for an available machine that matches your input, then deploys a Pod on it. Fields prefixed with `min` (such as `minVcpuCount` and `minMemoryInGb`) set minimum requirements that a machine must meet. They don't set fixed allocations. The vCPU and memory your Pod receives depend on the machine Runpod selects.

Check warning on line 25 in sdks/graphql/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

sdks/graphql/manage-pods.mdx#L25

Use parentheses judiciously.

<Tabs>
<Tab title="cURL">
```bash
Expand Down Expand Up @@ -83,9 +85,9 @@
</Tab>
</Tabs>

### Filter by CUDA version

Check warning on line 88 in sdks/graphql/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

sdks/graphql/manage-pods.mdx#L88

'Filter by CUDA version' should use sentence-style capitalization.

Check warning on line 88 in sdks/graphql/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

sdks/graphql/manage-pods.mdx#L88

Spell out 'CUDA', if it's unfamiliar to the audience.

Use `allowedCudaVersions` to restrict Pods to machines with specific CUDA versions.

Check warning on line 90 in sdks/graphql/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

sdks/graphql/manage-pods.mdx#L90

Spell out 'CUDA', if it's unfamiliar to the audience.

<Tabs>
<Tab title="cURL">
Expand Down Expand Up @@ -123,7 +125,7 @@
</Tab>
</Tabs>

## Start a Pod

Check warning on line 128 in sdks/graphql/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

sdks/graphql/manage-pods.mdx#L128

'Start a Pod' should use sentence-style capitalization.

Resume a stopped Pod using the `podResume` mutation.

Expand Down Expand Up @@ -164,7 +166,7 @@
</Tab>
</Tabs>

You can also filter by CUDA version when starting a Pod:

Check warning on line 169 in sdks/graphql/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

sdks/graphql/manage-pods.mdx#L169

Spell out 'CUDA', if it's unfamiliar to the audience.

```graphql
mutation {
Expand All @@ -179,7 +181,7 @@
}
```

## Stop a Pod

Check warning on line 184 in sdks/graphql/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

sdks/graphql/manage-pods.mdx#L184

'Stop a Pod' should use sentence-style capitalization.

Stopping a Pod releases the GPU while preserving your volume data.

Expand Down Expand Up @@ -218,9 +220,9 @@
</Tab>
</Tabs>

## Query Pods

Check warning on line 223 in sdks/graphql/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

sdks/graphql/manage-pods.mdx#L223

'Query Pods' should use sentence-style capitalization.

### List all Pods

Check warning on line 225 in sdks/graphql/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

sdks/graphql/manage-pods.mdx#L225

'List all Pods' should use sentence-style capitalization.

<Tabs>
<Tab title="cURL">
Expand Down Expand Up @@ -305,7 +307,7 @@
</Tab>
</Tabs>

### Get Pod by ID

Check warning on line 310 in sdks/graphql/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

sdks/graphql/manage-pods.mdx#L310

'Get Pod by ID' should use sentence-style capitalization.

<Tabs>
<Tab title="cURL">
Expand Down Expand Up @@ -384,11 +386,11 @@
</Tab>
</Tabs>

## Query GPU types

Check warning on line 389 in sdks/graphql/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

sdks/graphql/manage-pods.mdx#L389

'Query GPU types' should use sentence-style capitalization.

List available GPU types to find the `gpuTypeId` needed when creating Pods.

### List all GPU types

Check warning on line 393 in sdks/graphql/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

sdks/graphql/manage-pods.mdx#L393

'List all GPU types' should use sentence-style capitalization.

<Tabs>
<Tab title="cURL">
Expand Down Expand Up @@ -439,7 +441,7 @@
</Tab>
</Tabs>

### Get GPU type details

Check warning on line 444 in sdks/graphql/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

sdks/graphql/manage-pods.mdx#L444

'Get GPU type details' should use sentence-style capitalization.

Query a specific GPU type to see pricing and availability.

Expand Down Expand Up @@ -492,7 +494,7 @@
</Tab>
</Tabs>

### Check GPU availability

Check warning on line 497 in sdks/graphql/manage-pods.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

sdks/graphql/manage-pods.mdx#L497

'Check GPU availability' should use sentence-style capitalization.

Use the `stockStatus` field to check availability before creating a Pod. Values include `High`, `Medium`, `Low`, and `None`.

Expand Down
2 changes: 2 additions & 0 deletions serverless/endpoints/endpoint-configurations.mdx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---

Check warning on line 1 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L1

Try to keep the Automated Readability Index (9.10) below 8.

Check warning on line 1 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L1

Try to keep the SMOG grade (11.23) below 10.

Check warning on line 1 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L1

Try to keep the Flesch reading ease score (46.80) above 70.

Check warning on line 1 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L1

Try to keep the LIX score (44.85) below 35.

Check warning on line 1 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L1

Try to keep the Flesch–Kincaid grade level (9.61) below 8.

Check warning on line 1 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L1

Try to keep the Coleman–Liau Index grade (12.52) below 9.
title: "Endpoint settings"
sidebarTitle: "Endpoint settings"
description: "Reference guide for all Serverless endpoint settings and parameters. Review configuration and operations guidance for Runpod Serverless."
Expand All @@ -17,27 +17,27 @@

| Setting | Default | Description |
|---------|---------|-------------|
| **Active workers** | 0 | Always-on workers (eliminates cold starts) |

Check warning on line 20 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L20

Use parentheses judiciously.
| **Max workers** | 3 | Maximum concurrent workers |
| **GPUs per worker** | 1 | GPU count per worker instance |
| **Idle timeout** | 5s | Time before idle worker shuts down |

Check warning on line 23 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L23

Put a nonbreaking space between the number and the unit in '5s'.
| **Execution timeout** | 600s (10 min) | Max job duration |

Check warning on line 24 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L24

Put a nonbreaking space between the number and the unit in '600s'.

Check warning on line 24 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L24

Use parentheses judiciously.
| **Job TTL** | 24h | Total job lifespan in system |

Check warning on line 25 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L25

Spell out 'TTL', if it's unfamiliar to the audience.

Check warning on line 25 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L25

Put a nonbreaking space between the number and the unit in '24h'.
| **FlashBoot** | Enabled | Faster cold starts via state retention |

## General configuration

### Endpoint name

Display name for identifying your endpoint in the console. Does not affect the endpoint ID used for API requests.

Check warning on line 32 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L32

Use 'doesn't' instead of 'Does not'.

### Endpoint type

**Queue-based endpoints** use a built-in queueing system with guaranteed execution and automatic retries. Ideal for async tasks, batch processing, and long-running jobs. Implemented using [handler functions](/serverless/workers/handler-functions).

**Load balancing endpoints** route traffic directly to workers, bypassing the queue. Designed for low-latency applications like real-time <InferenceTooltip /> or custom REST APIs. See [Load balancing endpoints](/serverless/load-balancing/overview).

Check warning on line 38 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L38

Spell out 'REST', if it's unfamiliar to the audience.

### GPU configuration

Check warning on line 40 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L40

'GPU configuration' should use sentence-style capitalization.

Determines the hardware tier for your workers. Select multiple GPU categories to create a prioritized fallback list. If your first choice is unavailable, Runpod automatically uses the next option. Selecting multiple types improves availability during high demand.

Expand All @@ -47,7 +47,7 @@

Specify up to three GPU types in priority order when configuring an endpoint. Runpod uses this ranking to distribute workers across available GPUs, improving availability during high demand.

For endpoints with five or more workers, Runpod distributes workers across your selected GPU priorities. Most workers run on your primary GPU type, with fewer assigned to secondary and tertiary selections. This reduces throttling when your primary GPU is constrained.

Check warning on line 50 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L50

Use the Oxford comma in ', with fewer assigned to secondary and tertiary selections.'.

Check warning on line 50 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L50

In general, use active voice instead of passive voice ('is constrained').

For endpoints with fewer than five workers, all workers use the highest-priority GPU type available.

Expand All @@ -61,16 +61,18 @@

Maximum concurrent instances your endpoint can scale to. Acts as a cost safety limit and concurrency cap. Set ~20% higher than expected max concurrency to handle traffic spikes smoothly.

### GPUs per worker

Check warning on line 64 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L64

'GPUs per worker' should use sentence-style capitalization.

Number of GPUs assigned to each worker instance. Default is 1. Generally prioritize fewer high-end GPUs over multiple lower-tier GPUs.

### Auto-scaling type

**Queue delay**: Adds workers when requests wait longer than the threshold (default: 4 seconds). Best when slight delays are acceptable for higher utilization.

Check warning on line 70 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L70

'Adds' should be in lowercase.

Check warning on line 70 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L70

Use parentheses judiciously.

Check warning on line 70 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L70

Avoid the unverifiable claim 'Best'.

**Request count**: More aggressive scaling based on pending + active work. Formula: `Math.ceil((requestsInQueue + requestsInProgress) / scalerValue)`. Use scaler value of 1 for max responsiveness. Recommended for LLM workloads or frequent short requests.

Check warning on line 72 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L72

'More' should be in lowercase.

Check warning on line 72 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L72

Spell out 'LLM', if it's unfamiliar to the audience.

For both scaling types, the scaler value must be a whole number of 1 or greater (default: 4). Fractional values like 0.5 are not accepted.

Check warning on line 74 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L74

Use parentheses judiciously.

Check warning on line 74 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L74

Use 'aren't' instead of 'are not'.

## Lifecycle and timeouts

### Idle timeout
Expand All @@ -80,24 +82,24 @@
### Idle endpoint scale-down

Runpod automatically scales down endpoints that go a long time without any requests, so unused endpoints don't keep consuming your account balance.
* After 3 days with no requests, the endpoint's max workers is reduced to 2 and Runpod sends you an email notification.

Check warning on line 85 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L85

In general, use active voice instead of passive voice ('is reduced').
* After 7 days with no requests, max workers is set to 0.

Check warning on line 86 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L86

In general, use active voice instead of passive voice ('is set').

This scale-down is automatic and system-driven, and the timer is based on request activity, so any incoming request resets it.

Check warning on line 88 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L88

In general, use active voice instead of passive voice ('is based').

Once an endpoint has been scaled down this way, it stays at its reduced max workers until you raise the value yourself. To use the endpoint again, increase its max workers in the Runpod console. To prevent an endpoint from scaling down in the first place, make sure it continues to receive requests.

Check warning on line 90 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L90

In general, use active voice instead of passive voice ('been scaled').

### Execution timeout

Maximum duration for a single job. When exceeded, the job fails and the worker stops. Keep enabled to prevent runaway jobs. Default: 600s (10 min). Range: 5s to 7 days.

Check warning on line 94 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L94

Put a nonbreaking space between the number and the unit in '600s'.

Check warning on line 94 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L94

Use parentheses judiciously.

Check warning on line 94 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L94

Put a nonbreaking space between the number and the unit in '5s'.

Configure in **Advanced** settings, or override per-request via `executionTimeout` in the [job policy](/serverless/endpoints/send-requests#execution-policies).

### Job TTL (time-to-live)

Check warning on line 98 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L98

'Job TTL (time-to-live)' should use sentence-style capitalization.

Check warning on line 98 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L98

Spell out 'TTL', if it's unfamiliar to the audience.

Check warning on line 98 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L98

Use parentheses judiciously.

Total lifespan of a job in the system. When TTL expires, job data is deleted regardless of state (queued, running, or completed). Default: 24 hours. Range: 10s to 7 days.

Check warning on line 100 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L100

Spell out 'TTL', if it's unfamiliar to the audience.

Check warning on line 100 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L100

In general, use active voice instead of passive voice ('is deleted').

Check warning on line 100 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L100

Use parentheses judiciously.

Check warning on line 100 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L100

Put a nonbreaking space between the number and the unit in '10s'.

The timer starts at submission, not execution. If a job queues for 45 minutes with a 1-hour TTL, only 15 minutes remain for execution.

Check warning on line 102 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L102

Spell out 'TTL', if it's unfamiliar to the audience.

<Warning>
TTL is a hard limit. If it expires while a job is running, the job is immediately removed and status checks return 404. Set TTL to cover both expected queue time and execution time.
Expand All @@ -110,16 +112,16 @@
| Request type | Retention | Notes |
|--------------|-----------|-------|
| Async (`/run`) | 30 min | Retrieve via `/status/{job_id}` |
| Sync (`/runsync`) | 1 min | Returned in response; also available via `/status/{job_id}` |

Check warning on line 115 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L115

Use semicolons judiciously.

Results are permanently deleted after retention expires.

## Performance features

### FlashBoot

Check warning on line 121 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L121

'FlashBoot' should use sentence-style capitalization.

Reduces cold starts by retaining worker state after spin-down, allowing faster "revival" than fresh boots. Most effective on endpoints with consistent traffic where workers frequently cycle between active and idle.
Both new GPU and CPU endpoints will have FlashBoot enabled by default, and you can edit existing endpoints to enable or disable FlashBoot.

Check warning on line 124 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L124

Avoid using 'will'.

Check warning on line 124 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L124

Use 'turn off' or 'off' instead of 'disable'.

### Model

Expand All @@ -135,10 +137,10 @@

[Network volumes](/storage/network-volumes) provide persistent storage across worker restarts. Tradeoffs: adds network latency and restricts your endpoint to the volume's data center. Use only when you need shared persistence or datasets exceeding container limits.

### CUDA version selection

Check warning on line 140 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L140

'CUDA version selection' should use sentence-style capitalization.

Check warning on line 140 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L140

Spell out 'CUDA', if it's unfamiliar to the audience.

Ensures workers run on <MachinesTooltip /> with compatible drivers. Select your required version plus all newer versions, since CUDA is backward compatible and a wider range increases available hardware.

Check warning on line 142 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L142

Spell out 'CUDA', if it's unfamiliar to the audience.

### Expose HTTP/TCP ports

Check warning on line 144 in serverless/endpoints/endpoint-configurations.mdx

View check run for this annotation

Mintlify / Mintlify Validation (runpod-b18f5ded) - vale-spellcheck

serverless/endpoints/endpoint-configurations.mdx#L144

'Expose HTTP/TCP ports' should use sentence-style capitalization.

Exposes the worker's public IP and port for direct external communication. Required for persistent connections like WebSockets.
Loading