You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
paragraph: This guide provides step-by-step instructions to help you migrate your existing Block Storage volumes and snapshots to Scaleway's new Block Storage management system.
8
8
tags: instance snapshot volume b_ssd sbs
9
9
dates:
10
-
validation: 2024-08-07
10
+
validation: 2024-10-10
11
11
posted: 2024-08-07
12
12
categories:
13
13
- compute
14
14
---
15
15
16
16
Scaleway is transitioning the management of Block Storage volumes and snapshots from compute teams to storage teams to enhance performance and reliability.
17
-
While the characteristics of your migrated volumes and snapshots will remain unchanged, they will now be managed by Scaleway's new storage management system.
18
-
This guide provides the steps needed to migrate your volumes and snapshots smoothly.
17
+
While the characteristics of your migrated volumes and snapshots will remain unchanged, Scaleway's new storage management system will now manage them.
18
+
This guide provides the steps needed to migrate your volumes and snapshots using either the [Scaleway Command Line Interface (CLI)](/developer-tools/scaleway-cli/quickstart/) tool (recommended) or via the [Instances API](https://www.scaleway.com/en/developers/api/instance/#path-volumes-migrate-a-volume-andor-snapshots-to-sbs-scaleway-block-storage).
19
+
20
+
<Messagetype="tip">
21
+
The easiest way to migrate your Block Storage volumes and snapshots is by using the [Scaleway Command Line Interface (CLI)](/developer-tools/scaleway-cli/quickstart/) tool.
22
+
</Message>
19
23
20
24
<Macroid="requirements" />
21
25
@@ -28,62 +32,155 @@ This guide provides the steps needed to migrate your volumes and snapshots smoot
28
32
This process applies only to Block SSD (`b_ssd`) volumes.
29
33
</Message>
30
34
31
-
1. Plan the migration by using the following `curl` command:
When you migrate a volume, the volume and any snapshots created from the volume will be migrated.
39
+
</Message>
40
+
1. Retrieve the ID of your Block Storage volume using the `scw instance volume list` command. This command returns a list of your volumes, as shown below:
41
+
```
42
+
$ scw instance volume list
43
+
ID STATE SERVER ID SERVER NAME
44
+
369feb53-165f-437d-875e-188725df462b available
45
+
```
46
+
2. Plan the volume migration with the `scw instance volume plan-migration <VOLUME_ID>` command. This command provides the state of the volume and a unique `ValidationKey`, which is needed to start the migration.
The volume migration is complete. You can now manage the migrated volume from the [Block Storage Volumes section](https://console.scaleway.com/block-storage/volumes) in the Scaleway console.
69
+
70
+
</TabsTab>
71
+
<TabsTablabel="API">
72
+
<Messagetype="note">
73
+
When you migrate a volume using the API, the volume and any snapshots created from the volume will be migrated.
74
+
</Message>
75
+
76
+
1. Plan the migration by using the following `curl` command:
The response includes the source volume of the snapshot and any snapshots created from this volume, including the `snapshot_id` provided by the user. It also returns a `validation_key`.
74
-
75
-
2. Confirm the migration using the following `curl` command:
2. Plan the migration with the `scw instance snapshot plan-migration <SNAPSHOT_ID>` command. This command returns the state of the snapshot and a unique `ValidationKey`, which is necessary to start the migration.
The snapshot migration is complete. You can now manage the migrated snapshot from the [Block Storage Snapshot section](https://console.scaleway.com/block-storage/volumes) in the Scaleway console.
151
+
</TabsTab>
152
+
<TabsTablabel="API">
153
+
<Messagetype="note">
154
+
When you migrate a snapshot using the API, the source volume of the snapshot and any snapshots created from this volume will also be migrated.
155
+
</Message>
156
+
157
+
1. Plan the migration by using the following `curl` command:
The response includes the source volume of the snapshot and any snapshots created from this volume, including the `snapshot_id` provided by the user. It also returns a `validation_key`.
169
+
170
+
2. Confirm the migration using the following `curl` command:
To learn more about managing your migrated Block Storage volumes from the Scaleway console, refer to the [Block Storage - Console documentation](/storage/block/quickstart/). Additionally, you can manage your Block Storage volumes using the [Scaleway Block Storage API](https://www.scaleway.com/en/developers/api/block/).
186
+
To learn more about managing your migrated Block Storage volumes from the Scaleway console, refer to the [Block Storage - Console documentation](/storage/block/quickstart/). Additionally, you can manage your Block Storage volumes using the [Scaleway Block Storage API](https://www.scaleway.com/en/developers/api/block/).
0 commit comments