Runtime filesystem consistency checking
Runtime filesystem consistency checking
Posted Apr 5, 2012 19:01 UTC (Thu) by cmccabe (guest, #60281)In reply to: Runtime filesystem consistency checking by dgm
Parent article: Runtime filesystem consistency checking
From a programmer's perspective, the growth in hard disk capacity has not been matched by a corresponding increase in either throughput or worst-case latency.
Because hard disk throughput has not kept pace, in a high performance setup, your only hope for reasonable throughput is to use RAID with striping. But RAID increases the minimum size that you can read-- before, that minimum was a sector-- with RAID, it's a stripe. This makes hard disks even less of a random-access medium, since you never want to be reading just a few bytes-- you want to read a whole RAID stripe at a time in order to be efficient.
Most programmers don't know about these details because the database does all this for you.
