Changes for page ZFS Administration - Part I - VDEVs


on 2024-09-01 08:54


on 2024-09-01 08:52
Summary
Details
- Page properties
-
- Content
-
... ... @@ -37,17 +37,14 @@ 37 37 38 38 Let's start by creating a simple zpool wyth my 4 drives. I could create a zpool named "tank" with the following command: 39 39 40 -{{code language="bash session"}} 41 -# zpool create tank sde sdf sdg sdh 42 -{{/code}} 40 +{{{# zpool create tank sde sdf sdg sdh}}} 43 43 44 44 In this case, I'm using four disk VDEVs. Notice that I'm not using full device paths, although I could. Because VDEVs are always dynamically striped, this is effectively a RAID-0 between four drives (no redundancy). We should also check the status of the zpool: 45 45 46 -{{code language="bash session"}} 47 -# zpool status tank 44 +{{{# zpool status tank 48 48 pool: tank 49 49 state: ONLINE 50 - 47 + scan: none requested 51 51 config: 52 52 53 53 NAME STATE READ WRITE CKSUM ... ... @@ -57,26 +57,21 @@ 57 57 sdg ONLINE 0 0 0 58 58 sdh ONLINE 0 0 0 59 59 60 -errors: No known data errors 61 -{{/code}} 57 +errors: No known data errors}}} 62 62 63 63 Let's tear down the zpool, and create a new one. Run the following before continuing, if you're following along in your own terminal: 64 64 65 -{{code language="bash session"}} 66 -# zpool destroy tank 67 -{{/code}} 61 +{{{# zpool destroy tank}}} 68 68 69 - 70 70 == A simple mirrored zpool == 71 71 72 72 In this next example, I wish to mirror all four drives (/dev/sde, /dev/sdf, /dev/sdg and /dev/sdh). So, rather than using the disk VDEV, I'll be using "mirror". The command is as follows: 73 73 74 -{{code language="bash session"}} 75 -# zpool create tank mirror sde sdf sdg sdh 67 +{{{# zpool create tank mirror sde sdf sdg sdh 76 76 # zpool status tank 77 77 pool: tank 78 78 state: ONLINE 79 - 71 + scan: none requested 80 80 config: 81 81 82 82 NAME STATE READ WRITE CKSUM ... ... @@ -87,8 +87,7 @@ 87 87 sdg ONLINE 0 0 0 88 88 sdh ONLINE 0 0 0 89 89 90 -errors: No known data errors 91 -{{/code}} 82 +errors: No known data errors}}} 92 92 93 93 Notice that "mirror-0" is now the VDEV, with each physical device managed by it. As mentioned earlier, this would be analogous to a Linux software RAID "/dev/md0" device representing the four physical devices. Let's now clean up our pool, and create another. 94 94