Runtime filesystem consistency checking
Runtime filesystem consistency checking
Posted Apr 4, 2012 9:22 UTC (Wed) by epa (subscriber, #39769)In reply to: Runtime filesystem consistency checking by dgm
Parent article: Runtime filesystem consistency checking
Or maybe the point is that larger filesystems necessarily require more random accesses and hence more disk seeks when you fsck them. Larger RAM would mitigate this but I don't know whether increased RAM for caching has kept pace with filesystem sizes enough. An fsck expert would be able to give some numbers.
Posted Apr 4, 2012 10:27 UTC (Wed)
by khim (subscriber, #9252)
[Link] (7 responses)
Actually the original poster was wrong: seeks are no more expensive. They have the same cost, but you need more of them. Even if you'll grown filesystem data structures to reduce fragmentation undeniable fact is that number is tracks is growing and time to read a single track is constant. This means that time needed to read the whole disk from the beginning to the end is growing.
Posted Apr 4, 2012 12:17 UTC (Wed)
by epa (subscriber, #39769)
[Link] (6 responses)
Posted Apr 4, 2012 12:59 UTC (Wed)
by khim (subscriber, #9252)
[Link] (5 responses)
More or less. This means that when you go from Linux 0.1 (with typical size of HDD 200-300MB) to Linux 3.0 (with typical size of HDD 2-4TB) filesystem slows by a factor of 100, not by a factor of 10'000. But 100x slowdown is still a lot.
Posted Apr 4, 2012 16:01 UTC (Wed)
by wazoox (subscriber, #69624)
[Link] (4 responses)
Posted Apr 4, 2012 19:41 UTC (Wed)
by khim (subscriber, #9252)
[Link] (3 responses)
Contemporary 4TB HDDs are especially slow because they use 5 plates (where your 1TB disks probably used 2 or 3). This means that not only you see the slowdown from growing number of tracks, you see additional slowdown from growing number of plates! Thankfully in this direction 5 is the limit: I doubt we'll see return of 30 plates monsters like the infamous Winchester… all 3.5" HDDs to date had 5 plates or less.
Posted Apr 5, 2012 9:18 UTC (Thu)
by misiu_mp (guest, #41936)
[Link] (2 responses)
Posted Apr 5, 2012 10:00 UTC (Thu)
by khim (subscriber, #9252)
[Link] (1 responses)
Good idea. Sadly it's about ten years too late. Today's tracks are too small: when the head is on a track on one plate all other heads are not on this same track. In fact they are not on track at all. They just randomly drift between 2-3 tracks adjacent to each other. That's why you can only use one head actively (how can we use even one if it's all is so unstable? well, it's easy: there are active scheme which dynamically moves head to keep it on track). Latency of seeks - yes, number of tracks - no. If you use the same plates then filesystem on a single plate HDD will be roughly five times faster then filesystem on five plates HDD. The main reason we don't see many of them is cost. They are more expensive to produce and since they are less reliable they incur more warranty overhead. They are also slower, but this secondary problem.
Posted Apr 13, 2012 8:47 UTC (Fri)
by ekj (guest, #1524)
[Link]
Runtime filesystem consistency checking
Runtime filesystem consistency checking
Runtime filesystem consistency checking
Runtime filesystem consistency checking
The individual 4 TB drive needs more than 9 hours to simply fill it up sequentially.
We'll need to index blocks on our spinning rust on SSD cache before long :)
Runtime filesystem consistency checking
Runtime filesystem consistency checking
If data is written cylinder-wise, the latency should be similar to one-plate disk.
If it is written plate-wise, the latency should vary up and down in relation to block numbers. Its possible the average latency would still be comparable.
The only clear negative about multi-platter systems is the increased inertia of the head assembly. It's not so clear whether it has a practical implication.
Apart from this unclear performance implication, there is of course the decreased reliability and increased cost of multi-platter solutions. That is the main reason we don't see that many of them.
Runtime filesystem consistency checking
More plates means more heads, with possibility for concurrency - that should increase sequential transfer speed.
If data is written cylinder-wise, the latency should be similar to one-plate disk.
That is the main reason we don't see that many of them.
Runtime filesystem consistency checking