General ZFS pool shrinking will likely be coming to Illumos
Here is some great news. It started with this tweet from Alex Reece (which I saw via @bdha):
Finally got around to posting the device removal writeup for my first open source talk on #openzfs device removal! <link>
'Device removal' sounded vaguely interesting but I wasn't entirely sure why it called for a talk, since ZFS can already remove devices. Still, I'll read ZFS related things when I see them go by on Twitter, so I did. And my eyes popped right open.
This is really about being able to remove vdevs from a pool. In its current state I think the code requires all vdevs to be bare disks, which is not too useful for real configurations, but now that the big initial work has been done I suspect that there will be a big rush of people to improve it to cover more cases once it goes upstream to mainline Illumos (or before). Even being able to remove bare disks from pools with mirrored vdevs would be a big help for the 'I accidentally added a disk as a new vdev instead of as a mirror' situation that comes up periodically.
(This mistake is the difference between 'zpool add POOL DEV1 DEV2
'
and 'zpool add POOL mirror DEV1 DEV2
'. You spotted the one word
added to the second command, right?)
While this is not quite the same thing as an in-place reshape of your pool, a fully general version of this would let you move a pool from, say, mirroring to raidz provided that you had enough scratch disks for the transition (either because you are the kind of place that has them around or because you're moving to new disks anyways and you're just arranging them differently).
(While you can do this kind of 'reshaping' today by making a
completely new pool and using zfs send
and zfs receive
, there
are some advantages to being able to do it transparently and without
interruptions while people are actively using the pool).
This feature has been a wishlist item for ZFS for so long that I'd long since given up on ever seeing it. To have even a preliminary version of it materialize out of the blue like this is simply amazing (and I'm a little bit surprised that this is the first I heard of it; I would have expected an explosion of excitement as the news started going around).
(Note that there may be an important fundamental limitation about this that I'm missing in my initial enthusiasm and reading. But still, it's the best news about this I've heard for, well, years.)
Comments on this page:
|
|