CONCEPT Cited by 1 source
FlexClone instant volume copy¶
Definition¶
FlexClone is NetApp ONTAP's copy-on-write volume cloning technology. It creates an instant, writable copy of an existing volume (or snapshot) by sharing data blocks with the parent — consuming near-zero additional storage at creation time. New blocks are allocated only when writes diverge from the parent's data.
Available as a native capability of Amazon FSx for NetApp ONTAP on AWS.
Key properties¶
- Instant creation: under 2 minutes regardless of volume size (only metadata is copied)
- Storage-efficient: the clone shares existing data blocks with the parent; only modified blocks consume new space
- Operationally independent: a FlexClone created from a SnapMirror snapshot does not interrupt or interfere with ongoing SnapMirror replication
- Writable: the clone is a full read-write volume (can be presented as read-only at the application layer by choice)
- Point-in-time consistent: represents an exact snapshot of the parent at creation time
DR application¶
In S&P Global's DR architecture, FlexClone is the rapid-failover mechanism: 1. A scheduled automation identifies the latest SnapMirror snapshot in the DR region 2. A FlexClone is created from that snapshot (< 2 minutes) 3. The clone's LUNs are presented to the read-only SQL Server instance in the DR region 4. Application traffic is directed to the read-only instance
Because the clone is pre-provisioned daily, actual failover is reduced to an application traffic redirect — not a storage-level rebuild. The < 15-minute SLA is easily met because the clone already exists.
(Source: sources/2026-07-07-aws-sp-globals-disaster-recovery-fsx-netapp-ontap)
Relationship to copy-on-write¶
FlexClone is a storage-volume-tier realization of the copy-on-write principle — structurally the same idea as CoW in filesystems (Btrfs, ZFS snapshots), process forking (Unix fork()), and table-format compaction (Iceberg/Hudi/Delta). The level of abstraction differs: FlexClone operates at the ONTAP volume / LUN layer, not at the file or record layer.
Seen in¶
- sources/2026-07-07-aws-sp-globals-disaster-recovery-fsx-netapp-ontap — FlexClone from SnapMirror snapshot enables sub-15-minute read-only DR failover for S&P Global's Capital IQ platform.
Related¶
- concepts/snapmirror-replication — provides the snapshots FlexClone operates on
- concepts/copy-on-write-merge — the general CoW principle at a different layer
- patterns/snapshot-clone-rapid-failover — the DR pattern FlexClone enables
- systems/amazon-fsx-for-netapp-ontap — the managed platform exposing FlexClone