<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Helion-Prime Solutions blog &#187; filesystem</title>
	<atom:link href="http://blogs.helion-prime.com/tag/filesystem/feed" rel="self" type="application/rss+xml" />
	<link>http://blogs.helion-prime.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 18 Dec 2011 13:27:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>EXT4 in action</title>
		<link>http://blogs.helion-prime.com/2008/12/05/ext4-in-action.html</link>
		<comments>http://blogs.helion-prime.com/2008/12/05/ext4-in-action.html#comments</comments>
		<pubDate>Fri, 05 Dec 2008 09:59:54 +0000</pubDate>
		<dc:creator>alex.shapovalov</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[ext3]]></category>
		<category><![CDATA[ext4]]></category>
		<category><![CDATA[filesystem]]></category>
		<category><![CDATA[raiserfs]]></category>
		<category><![CDATA[xfs]]></category>

		<guid isPermaLink="false">http://blogs.helion-prime.com/?p=171</guid>
		<description><![CDATA[preamble As in new Linux 2.6.28 kernel ext4 file-system [http://en.wikipedia.org/wiki/Ext4] marked as stable it is time to decide if there is any sense to reformat our hard disks. comparisons Compared performance of the EXT3, EXT4, XFS, and ReiserFS file-systems. Conditions: Dual Intel Xeon E5320 Quad-Core &#8220;Clovertown&#8221; processors Tyan Tempest i5400XT motherboard 2GB of Kingston DDR2 [...]]]></description>
			<content:encoded><![CDATA[<h2>preamble</h2>
<p>As in new Linux 2.6.28 kernel ext4 file-system [<a href="http://en.wikipedia.org/wiki/Ext4">http://en.wikipedia.org/wiki/Ext4</a>] marked as stable it is time to decide if there is any sense to reformat our hard disks.</p>
<h2>comparisons</h2>
<p>Compared performance of the EXT3, EXT4, XFS, and ReiserFS file-systems.</p>
<p><strong>Conditions: </strong><br />
Dual Intel Xeon E5320 Quad-Core &#8220;Clovertown&#8221; processors<br />
Tyan Tempest i5400XT motherboard<br />
2GB of Kingston DDR2 FB-DIMM RAM<br />
160GB Western Digital WD1600YS-01SHB1 hard drive<br />
ASUS GeForce 9600GT 512MB graphics card.</p>
<p>Standard installation of  Fedora 10 x86_64, without Logical Volume Manager<br />
constant  SWAP size:  4GB<br />
The Serial ATA hard drive was using AHCI mode.</p>
<h2>Result</h2>
<p>operations per second on following graphs:</p>
<p><img class="alignnone size-full wp-image-180" title="seq_create" src="http://blogs.helion-prime.com/wp-content/uploads/2008/12/seq_create.png" alt="" width="345" height="219" /></p>
<p>Here  the number of sustained operations per second had dropped about 15% when changing  from EXT3 to EXT4. The fastest file-system was XFS followed by the ReiserFS with  a slight lead over EXT3.<br />
<br/></p>
<p><img class="alignnone size-full wp-image-179" title="read" src="http://blogs.helion-prime.com/wp-content/uploads/2008/12/read.png" alt="" width="345" height="219" /></p>
<p>The benefits of EXT4 were shown in a 4GB sequential create. EXT4  managed to push a 34% lead over EXT3 and sizable leads over XFS and ReiserFS.<br />
<br/></p>
<p><img class="alignnone size-full wp-image-178" title="random_delete" src="http://blogs.helion-prime.com/wp-content/uploads/2008/12/random_delete.png" alt="" width="345" height="219" /></p>
<p>EXT4 had continued to shine through with the 4GB sequential read.  XFS managed to outperform EXT4 at reading, but it was by a very slim margin. EXT3  and ReiserFS were nearly 40% slower.<br />
<br/><br/><br />
<b>And then some real examples:</b><br />
<br/><br />
<img class="alignnone size-full wp-image-177" title="lame" src="http://blogs.helion-prime.com/wp-content/uploads/2008/12/lame.png" alt="" width="345" height="219" /></p>
<p>To see what difference the file-system makes when encoding media  files, we had used LAME for WAV to MP3 conversion and FFmpeg for AVI to NTSC VCD.  When encoding our sample WAV file using LAME, all four file-systems took 52 seconds  with first and last place being just a fifth of a second difference.<br />
<br/><br />
<img class="alignnone size-full wp-image-176" title="gnupg" src="http://blogs.helion-prime.com/wp-content/uploads/2008/12/gnupg.png" alt="" width="345" height="218" /></p>
<p>If you are interested in encrypting files with GnuPG, the fastest  2GB file encryption occurred with EXT3 and XFS in a close second. This was followed  by ReiserFS and then EXT4.<br />
<br/><br />
<img class="alignnone size-full wp-image-175" title="ffmpeg" src="http://blogs.helion-prime.com/wp-content/uploads/2008/12/ffmpeg.png" alt="" width="345" height="218" /></p>
<p>While the LAME results were incredibly close, there was a greater  spread when looking at our FFmpeg numbers. Here the fastest file-system was EXT3,  which came out to be about 6% faster than EXT4. ReiserFS had finished with a close  second followed by XFS in third.<br />
<br/></p>
<h2>fast conclusion:</h2>
<p>EXT4 introduces Extents to replace the block mapping scheme used on earlier generations of the extended file-system, persistent pre-allocation, delayed allocation, precision timestamps, and journal check summing.</p>
<p>EXT4 is more scalable, more efficient through the use of Extents, supports larger disk capacities, can handle twice the number of sub-directories, is capable of handling online defragmentation[<a href="http://en.wikipedia.org/wiki/Defragmentation">http://en.wikipedia.org/wiki/Defragmentation</a>], and there is improved reliability via journal checksums. What perhaps is more important is that with the addition of these new features, the performance hasn&#8217;t regressed. Also, when testing the EXT4 file-system, we hadn&#8217;t run into any problems with stability, file corruption, or any other issues.<br />
<br/><br />
<i>based on phoronix results:</i><br/> [http://www.phoronix.com/scan.php?page=article&amp;item=ext4_benchmarks&amp;num=1]</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.helion-prime.com/2008/12/05/ext4-in-action.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

