From owner-freebsd-questions@FreeBSD.ORG Fri Aug 3 12:58:49 2007 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D5CC16A419 for ; Fri, 3 Aug 2007 12:58:49 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 3708513C4D9 for ; Fri, 3 Aug 2007 12:58:44 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.13.8/8.13.8) with ESMTP id l73CwWXE016173 for ; Fri, 3 Aug 2007 14:58:32 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.13.8/8.13.8/Submit) with ESMTP id l73CwWJP016170 for ; Fri, 3 Aug 2007 14:58:32 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 3 Aug 2007 14:58:32 +0200 (CEST) From: Wojciech Puchar To: freebsd-questions@freebsd.org Message-ID: <20070803145528.B16127@wojtek.tensor.gdynia.pl> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: UFS and spreading data X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Aug 2007 12:58:49 -0000 AFAIK UFS try to spread data quite evenly on disk to different cylinder group - for large files, so small files can get it's space near inodes etc.. but i would like to clear things up: i will set up say 3 disks with gconcat and make one partition for all data on it. then i will populate it with all things and use it. will the data be quite spread on disks, so accesses to different things could be done in parallel to 3 disks, or will it rather use space on one disk first, then on second then on third. i'm asking about it as i prefer gconcat over gstripe as i can add more disks to gconcat and do growfs then making system EASILY expandable.