Bob Williams posted on Thu, 11 Sep 2014 10:56:14 +0100 as excerpted: > So if a RAID1/two disk system uses the disks symmetrically, why did my > balance command take 22 hours? That's what puzzles me, as my > understanding of RAID1 is that the disk use *is* symmetrical.
What you're missing is what balance actually /does/. Balance will take every chunk it sees, data or metadata (with metadata including system as well), and rewrite it to a new location. In simplest conception that's /all/ it does. So your 22 hours was the time it took to rewrite-shift, effectively, the entire filesystem, one chunk at a time, from one location to another. Now it so happens that in the process balance does a bunch of other stuff too, like combine partially empty blocks of the same type during the rewrite, filling them up such that the rewritten version likely takes fewer chunks than the original, thus having the effect of freeing the extra chunks back to unallocated space that's now again free to be used for data or metadata instead of tied up in chunks that are one or the other but can't be switched. And after adding/deleting devices, that rewrite process balances out usage between devices. And with the convert option (used with -d or -m, below) that rewrite can be used to convert the rewritten chunks to some other raid layout than the original. And with the -d and -m options (along with -s), you can limit the chunks balance looks at to data or metadata (the latter including system as well, -s) instead of all chunks. And with the usage option (along with -d or -m, above), you can limit the chunks looked at to those under a particular percentage fill, thus allowing to do the chunk consolidation more efficiently without taking time to do ALL chunks of that type as it would otherwise do. But bottom line, balance is a chunk rewriter, and you told it to rewrite everything on the filesystem, so that's exactly what it did. And with nearly a TB of data on spinning rust, that took awhile, about 22 hours "awhile"! -- Duncan - List replies preferred. No HTML msgs. "Every nonfree program has a lord, a master -- and if you use the program, he is your master." Richard Stallman -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html