Storage

What is Snapshot?

Definition

A snapshot is a point-in-time copy of a virtual machine disk, taken instantly and stored on the same infrastructure. Snapshots protect against your own mistakes and are ideal before an upgrade. They are not backups: if the underlying storage is lost, the snapshots go with it.

Why Snapshot matters

Snapshots protect against your own mistakes and are ideal before an upgrade. They are not backups: if the underlying storage is lost, the snapshots go with it.

Snapshot in practice

Look at the snapshot list before you touch anything: it shows disk state, not memory state. Take one right before a kernel upgrade or a config change; it costs seconds and no downtime. Restoring rolls back the filesystem, so anything written after the snapshot is lost. A snapshot shared on the same host means a failed disk takes the snapshot with it. Treat it as undo, not insurance.

What people get wrong about Snapshot

People assume snapshots are backups. They are not. Snapshot sits on the same infrastructure, so storage loss kills both. The published definition says it outright, but the error persists. Correct: use snapshots for rollback after risky changes; use the nightly encrypted backups for disaster recovery.

Snapshot — common questions

Does taking a snapshot pause my server?

No. Snapshots are taken instantly without pausing the instance. You can keep serving traffic while the snapshot is created. That is the point: it is a point-in-time copy that does not interrupt your workload.

What is the difference between a snapshot and a backup?

A snapshot lives on the same infrastructure as the instance. If that storage is lost, the snapshot is gone too. A backup, like our nightly encrypted ones, copies data to a second jurisdiction. Snapshots are for quick rollback; backups are for real recovery.

More from storage

NVMe
NVMe is a storage protocol that connects solid-state drives directly over PCIe, reaching roughly 500,000 random IOPS with sub-100-microsecond latency.
IOPS
IOPS measures how many individual read or write operations a storage device completes per second.
RAID 10
RAID 10 mirrors data across pairs of drives and stripes across the mirrors, giving both redundancy and high performance at the cost of half the raw capacity.