From owner-freebsd-current@FreeBSD.ORG Fri Jan 2 06:21:48 2009 Return-Path: Delivered-To: freebsd-current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EDCB3106564A for ; Fri, 2 Jan 2009 06:21:48 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk1.360sip.com [72.236.70.240]) by mx1.freebsd.org (Postfix) with ESMTP id B76B58FC17 for ; Fri, 2 Jan 2009 06:21:48 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.28.129] (d75-157-251-204.bchsia.telus.net [75.157.251.204]) (authenticated bits=0) by sippysoft.com (8.13.8/8.13.8) with ESMTP id n026Lkxd089136 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 1 Jan 2009 22:21:47 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Message-ID: <495DB269.5030803@FreeBSD.org> Date: Thu, 01 Jan 2009 22:21:29 -0800 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 2.0.0.19 (Windows/20081209) MIME-Version: 1.0 To: Joel Jacobson References: <3D76E927-AD4F-4B6E-83E8-44379814FD98@panasas.com> In-Reply-To: <3D76E927-AD4F-4B6E-83E8-44379814FD98@panasas.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-current@FreeBSD.org Subject: Re: gstripe performance oddity X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jan 2009 06:21:49 -0000 Joel Jacobson wrote: > i tried sending this to freebsd-geom but got no response, so i'll try a > higher traffic superset list... > > i have a bit of a weird issue, which i suspect is a configuration > problem, and was looking for a little advice. i have an LSI JBOD box > with a bunch of SAS drives that i would like to gstripe together. each > drive individually seems to be able to do about 80 MB/sec streaming > write, and doing parallel dd's gives me the 160 MB/sec i would expect. > if i gstripe them together with a 256k stripe width, i only see 80 > MB/sec, though. > > if, however, i newfs/mount it as ufs and then dd myself a big file, that > gets me about 120-130 MB/sec. > > why does mounting matter? You will see dd write speed increase on stripe only if you are using block size (bs=XX) larger than stripe size, so that you should try dd bs=512k or something and see if it helps. -Maxim