Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754696AbYFKNzK (ORCPT ); Wed, 11 Jun 2008 09:55:10 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751485AbYFKNy6 (ORCPT ); Wed, 11 Jun 2008 09:54:58 -0400 Received: from www.church-of-our-saviour.org ([69.25.196.31]:57245 "EHLO thunker.thunk.org" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1750859AbYFKNy5 (ORCPT ); Wed, 11 Jun 2008 09:54:57 -0400 Date: Wed, 11 Jun 2008 09:54:43 -0400 From: Theodore Tso To: Holger Kiehl Cc: linux-ext4@vger.kernel.org, linux-kernel Subject: Re: Performance of ext4 Message-ID: <20080611135443.GK8397@mit.edu> Mail-Followup-To: Theodore Tso , Holger Kiehl , linux-ext4@vger.kernel.org, linux-kernel References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.15+20070412 (2007-04-11) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: tytso@mit.edu X-SA-Exim-Scanned: No (on thunker.thunk.org); SAEximRunCond expanded to false Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3220 Lines: 59 On Wed, Jun 11, 2008 at 08:02:32AM +0000, Holger Kiehl wrote: > > Doing some performance test between ext3 and ext4 I noticed that ext4 > is not much faster or in some cases slower then ext3. Two years ago when > I tested ext4 it was a lot faster then ext3 (see my mail: > http://lkml.org/lkml/2006/6/6/65). Doing some simple tests with bonnie++ > I got the following results: Hi Holger, You didn't say exactly which version of the kernel/ext4 you were testing, but a recent change which we made to ext4, but which hasn't been made to ext3 yet is that barrier support has been enabled to improve filesystem safety; unfortunately this does imply with it a slight performance slowdown, which would be more pronounced on benchmarks with small filesystems. So when you mount the filesystem for ext3 and ext4 for benchmarking purposes, you should consistently use a mount options of barrier=1 or barrier=0. With ext4, you can use the mount option "barrier=1,journal_async_commit" which should ameliorate part of the performance decrease. The reason why it is not yet the default is it requires support from e2fsprogs that has not been released except in development git branches; but as long as you don't require running e2fsck on uncleanly shutdown systems (probably not necessary if you are just benchmarking), you can use journal_async_commit in good health. Another change which might help out the bonnie benchmark, but which again requires the latest version of e2fsprogs is to create the filesystem with flex_bg filesystem feature. In fact, for convenience's sake, if you are using the latest development version of e2fsprogs, you can just use the command "mke2fs -t ext4dev /dev/hdXX" and it will set up the filesystem with the correct filesystem features for ext4. (The "ext4dev" sets the test_fs feature, and is basically there so it's clear we are still trying to finish up ext4 support.) > 2 years ago I used 2.6.16.8 but the hardware is still the same. So what has > happened with the performance of ext4? I noticed that 2 years ago I could > use extents+mballoc+delalloc, now there is only extents+mballoc in the > current kernels. Could delalloc make the big difference? I saw that > in Andrew Morton mm tree delalloc is included. Unfortunately when I tried > using > 2.6.26-rc2-mm1 a sync would never return and there where lot of other > odd things, so I could not do any tests with delalloc. As Aneesh has mentioned, there were some bugs in version of ext4's delalloc caused by insufficient testing of the ext4 patch queue some changes to our locking strategy went in. That's been fixed in the latest patch queue, and we're in the process of cleaning up delalloc before merging it into the mainline kernel. (When you tested ext4 two years ago, none of this was yet in mainline, so it's not a matter of things delalloc "disappearing", but rather that we've been slow getting to the point where it was ready for merging. - Ted -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/