From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1R10p5-00017g-N7 for garchives@archives.gentoo.org; Tue, 06 Sep 2011 18:56:39 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A91D821C32F; Tue, 6 Sep 2011 18:56:25 +0000 (UTC) Received: from mail-bw0-f53.google.com (mail-bw0-f53.google.com [209.85.214.53]) by pigeon.gentoo.org (Postfix) with ESMTP id 73DD121C06F for ; Tue, 6 Sep 2011 18:55:17 +0000 (UTC) Received: by bkbzs8 with SMTP id zs8so7720782bkb.40 for ; Tue, 06 Sep 2011 11:55:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=FHBcdgmLiTNgAunXlceUwQ1BtDPuZNWMLj2djFKFRb8=; b=oICOBCWjuzHPwwuyH0LUoNpMOE+gua6hCa9oX1tvT966zCd4CqFYg5d1z0aFb/gnWT wB3GyiYuYNe5N2JaQl4SdVx166j77txhEqqGrT8NPkctydtFigtpUL0dugOn7g2SCMtY 5fXuYD9FBpV0mpd6UePyETsN0FV4z9DUbW754= Received: by 10.204.138.200 with SMTP id b8mr3097502bku.0.1315335316566; Tue, 06 Sep 2011 11:55:16 -0700 (PDT) Received: from [10.1.1.201] ([87.251.152.251]) by mx.google.com with ESMTPS id v16sm1347709bkd.6.2011.09.06.11.55.14 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 06 Sep 2011 11:55:15 -0700 (PDT) Message-ID: <4E666C9C.8000605@gmail.com> Date: Tue, 06 Sep 2011 22:55:24 +0400 From: Permjacov Evgeniy User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.20) Gecko/20110904 Lightning/1.0b3pre Thunderbird/3.1.12 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 To: gentoo-user@lists.gentoo.org Subject: Re: [gentoo-user] Filesystem with lowest CPU load, acceptable emerge performance, and stable? References: In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Archives-Salt: X-Archives-Hash: bea2f206c70f885bc84f1004d0fdcba0 On 09/06/2011 09:26 PM, Pandu Poluan wrote: > So, can anyone recommend me a filesystem that fulfills my following needs: > > Scenario: vFirewall (virtual Firewall) that is going to be deployed at > my IaaS Cloud Provider. > > Disk I/O Characteristic: Occasional writes during 'normal' usage, > once-a-week eix-sync + emerge -avuD > > Priority: Stable (i.e., less chance of corruption), least CPU usage. > > My Google-Fu seems to indicate either XFS or JFS; what do you think? > > Rgds, > > The best fs for emerge is tmpfs on TMP_PORTDIR. I run box with tmpfs on both /var/tmp and /tmp and happy with it -) For fs CPU usage is nothing, IO usage is a real problem and weak point. Thus, you are free to choose any fs with full journaling. ext3 allows full journaling as option, as well as ext4 and ext4 is little faster if tuned properly. JFS/XFS journals metadata only. Remember that journaling makes writes (i.e. emerge) a bit slower.