Volumes in VoltageGPU provide persistent storage for your GPU rental containers, ensuring your important data remains safe even if your rental pod is unexpectedly terminated.
Volumes are backed by secure cloud storage and can be attached to any of your pods, giving you reliable data persistence across different rental sessions.
When you attach a volume to your pod, it becomes available at the /mnt directory inside your container, allowing you to easily store and retrieve your data, models, datasets, and other important files.
VoltageGPU volumes are implemented using cloud storage technology that seamlessly integrates with your rental containers. When you create a volume, it's allocated in our secure cloud storage infrastructure and can be mounted to any of your active pods.
Your data remains available even when pods are terminated.
Attach the same volume to different pods as needed.
Volumes are automatically mounted at /mnt when attached to a pod.
Volumes automatically scale with your storage needs.
Your volume will be created and ready to attach to any of your pods.
When deploying a new pod:
Once your pod is successfully deployed, the volume will be automatically mounted at /mnt inside your container.
After your pod starts with an attached volume:
# Navigate to your volume
cd /mnt
# List contents
ls -la
# Your persistent data is available hereVolume billing is based on actual storage usage and is charged hourly:
Volumes continue to incur storage charges even when not attached to any pod. This ensures your data remains persistent and available whenever you need it.
# Recommended directory structure in /mnt
/mnt/
├── datasets/ # Input data and datasets
├── models/ # Trained models and weights
├── checkpoints/ # Training checkpoints
├── outputs/ # Results and generated files
└── backups/ # Important file backupsVolume operations may be slower than local storage as data is synced with external cloud storage.
Your volume and all data remain completely intact. You can attach the same volume to a new pod and access all your files immediately.
Currently, each volume can only be attached to one pod at a time. However, you can detach and reattach volumes to different pods as needed.
Volumes automatically scale with your storage needs. You can store as much data as required without pre-defining size limits.
You're only charged for the actual data stored on your volumes, not the allocated space.
Volumes maintain your data persistently, which requires ongoing storage infrastructure. This ensures your data is always available when you need it.
Remove unnecessary files, compress large datasets, and delete unused volumes to optimize your storage costs.
Volumes are only accessible from within your rental pods at the /mnt directory. This ensures security and proper access control.
Ensure the volume was properly selected during pod deployment. If the issue persists, restart your pod or contact support.
Persistent storage for your datasets, models, and checkpoints.