Creating a Volume from a Snapshot
You can create a volume from a snapshot. This new volume contains the same data as the original volume at the time the snapshot was created. This enables you to make a copy of a volume within the same Region or within another one, or to extend the storage capacity of a previously created volume.
Creating a Volume from a Snapshot Using Cockpit v1
-
Click Storage > Snapshots.
You can also click Volumes, then Create .
-
Click the snapshot you want to create a volume from.
The snapshot is selected. -
Click Create Volume .
The CREATE VOLUME FROM dialog box appears. -
In the Name field, type a name for the volume.
This action adds a Name tag of 255 characters maximum. You can use any character, including accented letters.
-
In the Size field, type a size in gibibytes (GiB) for the volume, or select it using the arrows.
The size of the volume must be at least equal to the size of the selected snapshot.
-
In the Type list, select a volume type:
-
standard
for a Magnetic volume -
io1
for an Enterprise volume -
gp2
for a Performance volume
For more information about the different types of volumes, see About Volumes > Volume Types and IOPS.
-
-
(
io1
volumes only) In the IOPS field, type the number of IOPS for the volume or select it using the arrows.The maximum number of IOPS allowed for
io1
volumes is 13000 with a maximum performance ratio of 300 IOPS per gibibyte. -
In the Availability Zone list, select the Availability Zone in which you want to create the volume.
By default, the Availability Zone A is selected.
-
In the Count field, type the number of volumes you want to create or select it using the arrows.
-
Click Create.
A volume is created from the selected snapshot and now appears on the Volumes page.To identify your resources more easily, you can add tags to them. For more information, see Tagging Your Resources.
You can immediately use this volume and access the data stored on it, as data is loaded as soon as it is requested.
Creating a Volume from a Snapshot Using Cockpit v2-beta
-
Click inside the Snapshots dashboard to make checkboxes appear.
-
Check the box of the snapshot you want to create a volume from.
The snapshot is selected and an action menu appears. -
Click
Create Volume.
The CREATE VOLUME dialog box appears. -
In the Name field, type a name for the volume.
This action adds a Name tag of 255 characters maximum. You can use any character, including accented letters.
-
In the Size field, type a size in gibibytes (GiB) for the volume, or select it using the arrows.
The size of the volume must be at least equal to the size of the selected snapshot.
-
In the Type list, select a volume type:
-
standard
for a Magnetic volume -
io1
for an Enterprise volume -
gp2
for a Performance volume
For more information about the different types of volumes, see About Volumes > Volume Types and IOPS.
-
-
(
io1
volumes only) In the IOPS field, type the number of IOPS for the volumes or select it using the arrows.The maximum number of IOPS allowed for
io1
volumes is 13000 with a maximum performance ratio of 300 IOPS per gibibyte. -
In the Subregion list, select the Subregion in which you want to create the volume.
By default, the Subregion A is selected.
-
In the Count field, type the number of volumes you want to create or select it using the arrows.
-
Click Create Volume.
The volume is created.To identify your resources more easily, you can add tags to them. For more information, see Tagging Your Resources.
You can immediately use this volume and access the data stored on it, as data is loaded as soon as it is requested.
Creating a Volume from a Snapshot Using OSC CLI
See the CreateVolume command sample in the documentation of the OUTSCALE API. |
Creating a Volume from a Snapshot Using AWS CLI
To create a volume from a snapshot, use the create-volume command following this syntax:
$ aws ec2 create-volume \
--profile YOUR_PROFILE \
--snapshot-id snap-87654321 \
--size 50 \
--volume-type io1 \
--iops 500 \
--availability-zone eu-west-2a \
--endpoint https://fcu.eu-west-2.outscale.com
This command contains the following attributes that you need to specify:
-
(optional)
profile
: The named profile you want to use, created when configuring AWS CLI. For more information, see Installing and Configuring AWS CLI. -
snapshot-id
: The ID of the snapshot from which you want to create the volume. -
(optional)
size
: The size of the volume you want to create in gibibytes (GiB).The size of the volume must be at least equal to the size of the selected snapshot.
If not specified, the volume is created with a size equal to the snapshot one.
-
(optional)
volume-type
: The type of volume you want to create (standard
|io1
|gp2
). For more information about volume types, see About Volumes > Volume Types and IOPS.If not specified, a standard (Magnetic) volume is created.
-
iops
: The number of IOPS.This parameter is needed only when you create an io1 (Enterprise) volume.
-
availability-zone
: The Availability Zone in which you want to create the volume. -
endpoint
: The endpoint corresponding to the Region you want to send the request to.
The create-volume command returns the following elements:
-
AvailabilityZone
: The Availability Zone of the volume. -
Tags
: One or more tags associated with the volume. This element contains the following information:-
Key
: The key of the tag. -
Value
: The value of the tag.
-
-
VolumeType
: The type of the volume. For more information, see About Volumes > Volume Types and IOPS. -
VolumeId
: The ID of the newly created volume. -
State
: The state of the volume (attaching
|detaching
|attached
|detached
). -
Iops
: The number of IOPS for the volume. -
SnapshotId
: The ID of the snapshot from which the volume was created. -
CreateTime
: The time at which the creation of the volume was initiated. -
Size
: The size of the volume, in gibibytes (GiB).
{
"AvailabilityZone": "eu-west-2a",
"Tags": [],
"VolumeType": "io1",
"VolumeId": "vol-12345678",
"State": "creating",
"Iops": 500,
"SnapshotId": "snap-87654321",
"CreateTime": "2016-02-05T13:39:00.620Z",
"Size": 50
}
A volume is created from the specified snapshot.
Related Pages
Corresponding API Methods
AWS™ and Amazon Web Services™ are trademarks of Amazon Technologies, Inc or its affiliates in the United States and/or other countries.