CoreWeave GPU and CPU Nodes provide high-performance, Node-local ephemeral storage on NVMe RAID, mounted atDocumentation Index
Fetch the complete documentation index at: https://docs.coreweave.com/llms.txt
Use this file to discover all available pages before exploring further.
/mnt/local. Use this storage for temporary data such as intermediate training artifacts, caches, render outputs, or logs.
Pod container filesystems (the writable layer created by the container runtime) and Kubernetes emptyDir volumes are stored on this NVMe-backed storage by default, via kubelet and containerd directories under /mnt/local.
Local storage applies to workloads running on CoreWeave Kubernetes Service (CKS). Data is non-persistent and may be lost when a Pod is deleted or when the Node reboots (for example, during maintenance or failure).
Recommended: emptyDir volumes
emptyDir is the standard Kubernetes mechanism for Node-local scratch space. An emptyDir volume is created when a Pod is scheduled onto a node and is deleted automatically when the Pod is removed.
On CoreWeave, emptyDir volumes are:
-
Backed by NVMe: Data is stored under the kubelet Pod directories on
/mnt/local, which is an encrypted NVMe RAID array dedicated to ephemeral workload storage. This provides high throughput and low latency for scratch workloads. -
Better for heavy writes: Writes to an
emptyDirvolume go directly to the underlying filesystem, avoiding the copy-on-write overhead of the container image overlay filesystem. For large or write-heavy scratch data, preferemptyDirover writing to arbitrary paths in the container root filesystem.
Setting the amount of local ephemeral storage
The amount of available local ephemeral storage depends on the Node type. For information on ephemeral storage size per instance type, see GPU instances and CPU-only instances. If you require a large amount (above20Gi) of ephemeral storage, include the size requirement in the workload’s resource request.
The following example shows where to set the size limit for an emptyDir volume:
Advanced: hostPath volumes
In most cases,emptyDir is the right choice for scratch storage. Use hostPath only when you explicitly need to access a specific path on the Node’s filesystem (for example, a legacy application that expects a hard-coded directory under /mnt/local).
The following example shows where to set a hostPath volume:
hostPath:
- Understand the trade-offs:
hostPathbypasses Kubernetes storage isolation and couples your Pod to a particular Node layout. Volumes are not cleaned up automatically, and you are responsible for managing path uniqueness, cleanup, and avoiding conflicts with other workloads. - Remember data is ephemeral: Data on
/mnt/localis encrypted at rest and tied to in-memory keys. When the Node reboots, those keys are discarded and data becomes inaccessible.