创建 zpool 后,可以添加更多物理驱动器来镜像 vdev 吗?
例如,如果使用以下命令创建 zpool:
zpool create test_pool mirror /dev/sd0 /dev/sd1 mirror /dev/sd2 /dev/sd3
是否可以向 vdev 添加更多驱动器以增加其冗余度?也就是说,镜像驱动器的数量可以从 1 个增加到 2 个吗?
答案1
是的。可以。
类似下面的操作会添加到现有的镜像中并产生三重镜像,如上例所示:
zpool attach test_pool /dev/sd0 /dev/sd4
zpool attach test_pool /dev/sd2 /dev/sd5