RAID 4アレイのチャンクサイズを変更するコマンドの例
RAID 4アレイの「チャンクサイズ」を変更するコマンドの例です。ここでは例として、アレイの「チャンクサイズ」を128KiBから64KiBに変更します。
環境について
以下のアレイを作成した環境でコマンドを実行しています。1.論理ボリュームの確認
比較のため現状の論理ボリュームの情報を確認します。赤字の箇所から、現在の「チャンクサイズ」は128KiBであることが分かります。
ubuntu@ubuntu-vb-1404:~$ sudo mdadm --detail /dev/md/RAID4Array
/dev/md/RAID4Array:
Version : 1.2
Creation Time : Mon May 5 16:38:14 2014
Raid Level : raid4
Array Size : 204544 (199.78 MiB 209.45 MB)
Used Dev Size : 102272 (99.89 MiB 104.73 MB)
Raid Devices : 3
Total Devices : 3
Persistence : Superblock is persistent
Update Time : Mon May 5 16:38:20 2014
State : clean
Active Devices : 3
Working Devices : 3
Failed Devices : 0
Spare Devices : 0
Chunk Size : 128K
Name : ubuntu-vb-1404:RAID4Array (local to host ubuntu-vb-1404)
UUID : 5dc78b39:e78ab1c2:e2badd0d:cd30d4a7
Events : 18
Number Major Minor RaidDevice State
0 8 51 0 active sync /dev/sdd3
1 8 67 1 active sync /dev/sde3
3 8 83 2 active sync /dev/sdf3
/dev/md/RAID4Array:
Version : 1.2
Creation Time : Mon May 5 16:38:14 2014
Raid Level : raid4
Array Size : 204544 (199.78 MiB 209.45 MB)
Used Dev Size : 102272 (99.89 MiB 104.73 MB)
Raid Devices : 3
Total Devices : 3
Persistence : Superblock is persistent
Update Time : Mon May 5 16:38:20 2014
State : clean
Active Devices : 3
Working Devices : 3
Failed Devices : 0
Spare Devices : 0
Chunk Size : 128K
Name : ubuntu-vb-1404:RAID4Array (local to host ubuntu-vb-1404)
UUID : 5dc78b39:e78ab1c2:e2badd0d:cd30d4a7
Events : 18
Number Major Minor RaidDevice State
0 8 51 0 active sync /dev/sdd3
1 8 67 1 active sync /dev/sde3
3 8 83 2 active sync /dev/sdf3
2.チャンクサイズを変更する
以下のコマンドを実行し、「チャンクサイズ」を64KiBに変更します。コマンドやオプションの説明は「アレイのチャンクサイズを変更するコマンドの説明」を参考にしてください。
sudo mdadm --grow /dev/md/RAID4Array --chunk=64 --backup-file=/root/RAID4ArrayBackup.reshape
3.コマンドの実行結果
コマンドの実行結果は特にありません。
ubuntu@ubuntu-vb-1404:~$ sudo mdadm --grow /dev/md/RAID4Array --chunk=64 --backup-file=/root/RAID4ArrayBackup.reshape
ubuntu@ubuntu-vb-1404:~$
ubuntu@ubuntu-vb-1404:~$
4.再形成中の論理ボリュームの確認
再形成中の論理ボリュームの情報を確認します。「チャンクサイズ」が128KiBから64KiBに変更中であることが分かります。
ubuntu@ubuntu-vb-1404:~$ sudo mdadm --detail /dev/md/RAID4Array
/dev/md/RAID4Array:
Version : 1.2
Creation Time : Mon May 5 16:38:14 2014
Raid Level : raid4
Array Size : 204544 (199.78 MiB 209.45 MB)
Used Dev Size : 102272 (99.89 MiB 104.73 MB)
Raid Devices : 3
Total Devices : 3
Persistence : Superblock is persistent
Update Time : Mon May 5 16:40:33 2014
State : clean, reshaping
Active Devices : 3
Working Devices : 3
Failed Devices : 0
Spare Devices : 0
Chunk Size : 128K
Reshape Status : 63% complete
New Chunksize : 64K
Name : ubuntu-vb-1404:RAID4Array (local to host ubuntu-vb-1404)
UUID : 5dc78b39:e78ab1c2:e2badd0d:cd30d4a7
Events : 172
Number Major Minor RaidDevice State
0 8 51 0 active sync /dev/sdd3
1 8 67 1 active sync /dev/sde3
3 8 83 2 active sync /dev/sdf3
/dev/md/RAID4Array:
Version : 1.2
Creation Time : Mon May 5 16:38:14 2014
Raid Level : raid4
Array Size : 204544 (199.78 MiB 209.45 MB)
Used Dev Size : 102272 (99.89 MiB 104.73 MB)
Raid Devices : 3
Total Devices : 3
Persistence : Superblock is persistent
Update Time : Mon May 5 16:40:33 2014
State : clean, reshaping
Active Devices : 3
Working Devices : 3
Failed Devices : 0
Spare Devices : 0
Chunk Size : 128K
Reshape Status : 63% complete
New Chunksize : 64K
Name : ubuntu-vb-1404:RAID4Array (local to host ubuntu-vb-1404)
UUID : 5dc78b39:e78ab1c2:e2badd0d:cd30d4a7
Events : 172
Number Major Minor RaidDevice State
0 8 51 0 active sync /dev/sdd3
1 8 67 1 active sync /dev/sde3
3 8 83 2 active sync /dev/sdf3
5.再形成完了時の論理ボリュームの確認
再形成完了時の論理ボリュームの情報を確認します。「チャンクサイズ」が64KiBに変更されたことが分かります。
ubuntu@ubuntu-vb-1404:~$ sudo mdadm --detail /dev/md/RAID4Array
/dev/md/RAID4Array:
Version : 1.2
Creation Time : Mon May 5 16:38:14 2014
Raid Level : raid4
Array Size : 204544 (199.78 MiB 209.45 MB)
Used Dev Size : 102272 (99.89 MiB 104.73 MB)
Raid Devices : 3
Total Devices : 3
Persistence : Superblock is persistent
Update Time : Mon May 5 16:40:38 2014
State : clean
Active Devices : 3
Working Devices : 3
Failed Devices : 0
Spare Devices : 0
Chunk Size : 64K
Name : ubuntu-vb-1404:RAID4Array (local to host ubuntu-vb-1404)
UUID : 5dc78b39:e78ab1c2:e2badd0d:cd30d4a7
Events : 266
Number Major Minor RaidDevice State
0 8 51 0 active sync /dev/sdd3
1 8 67 1 active sync /dev/sde3
3 8 83 2 active sync /dev/sdf3
/dev/md/RAID4Array:
Version : 1.2
Creation Time : Mon May 5 16:38:14 2014
Raid Level : raid4
Array Size : 204544 (199.78 MiB 209.45 MB)
Used Dev Size : 102272 (99.89 MiB 104.73 MB)
Raid Devices : 3
Total Devices : 3
Persistence : Superblock is persistent
Update Time : Mon May 5 16:40:38 2014
State : clean
Active Devices : 3
Working Devices : 3
Failed Devices : 0
Spare Devices : 0
Chunk Size : 64K
Name : ubuntu-vb-1404:RAID4Array (local to host ubuntu-vb-1404)
UUID : 5dc78b39:e78ab1c2:e2badd0d:cd30d4a7
Events : 266
Number Major Minor RaidDevice State
0 8 51 0 active sync /dev/sdd3
1 8 67 1 active sync /dev/sde3
3 8 83 2 active sync /dev/sdf3