From owner-freebsd-stable@FreeBSD.ORG Sat Aug 7 12:25:05 2010 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 44C1D1065673 for ; Sat, 7 Aug 2010 12:25:05 +0000 (UTC) (envelope-from freebsd-stable@m.gmane.org) Received: from lo.gmane.org (lo.gmane.org [80.91.229.12]) by mx1.freebsd.org (Postfix) with ESMTP id EA4E98FC1E for ; Sat, 7 Aug 2010 12:25:04 +0000 (UTC) Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1OhiSV-0004EH-AS for freebsd-stable@freebsd.org; Sat, 07 Aug 2010 14:25:03 +0200 Received: from 89-164-124-179.dsl.iskon.hr ([89.164.124.179]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 07 Aug 2010 14:25:03 +0200 Received: from ivoras by 89-164-124-179.dsl.iskon.hr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 07 Aug 2010 14:25:03 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-stable@freebsd.org From: Ivan Voras Date: Sat, 07 Aug 2010 13:57:17 +0200 Lines: 33 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: 89-164-124-179.dsl.iskon.hr User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.1.9) Gecko/20100317 Thunderbird/3.0.4 In-Reply-To: Subject: Re: 8-STABLE Slow Write Speeds on ESXI 4.0 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Aug 2010 12:25:05 -0000 On 7.8.2010 3:21, Joshua Boyd wrote: > Hello, > > I'm experiencing slow write speeds on 8-STABLE running on an ESXI 4.0 > server, despite whatever tunables I've thrown at it. Read speeds are slower > than they should be, but acceptable. Note, this is a thick provisioned disk, > not thin. > > Speeds on Windows hosts are as expected for an MD3000 DAS, 250MB/s or so. > > [root@git ~]# dd if=/dev/da0 of=/dev/null bs=1M count=500 > 500+0 records in > 500+0 records out > 524288000 bytes transferred in 3.304514 secs (158658118 bytes/sec > > [root@git ~]# dd if=/dev/zero of=/var/testfile bs=1M count=500 > 500+0 records in > 500+0 records out > 524288000 bytes transferred in 52.083421 secs (10066313 bytes/sec) I assume you are using UFS and SU? What tunables have you tried? It's unlikely they will help, but try: vfs.read_max=32 for read speeds (but test using the UFS file system, not as a raw device like above), and: vfs.hirunningspace=8388608 vfs.lorunningspace=4194304 for writes. Again, it's unlikely but I'm interested in results you achieve.