From owner-freebsd-performance@FreeBSD.ORG Tue Aug 26 23:28:08 2003 Return-Path: Delivered-To: freebsd-performance@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD78D16A4BF for ; Tue, 26 Aug 2003 23:28:08 -0700 (PDT) Received: from silver.he.iki.fi (silver.he.iki.fi [193.64.42.241]) by mx1.FreeBSD.org (Postfix) with ESMTP id 241F243FE1 for ; Tue, 26 Aug 2003 23:28:07 -0700 (PDT) (envelope-from pete@he.iki.fi) Received: from he.iki.fi (h81.vuokselantie10.fi [193.64.42.129]) by silver.he.iki.fi (8.12.9/8.11.4) with ESMTP id h7R6Rd5L003552; Wed, 27 Aug 2003 09:27:45 +0300 (EEST) (envelope-from pete@he.iki.fi) Message-ID: <3F4C4F58.1060203@he.iki.fi> Date: Wed, 27 Aug 2003 09:27:36 +0300 From: Petri Helenius User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624 X-Accept-Language: en-us, en MIME-Version: 1.0 To: TeJun Huh References: <20030827004651.GA21881@atj.dyndns.org> In-Reply-To: <20030827004651.GA21881@atj.dyndns.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-performance@freebsd.org Subject: Re: Performance of freeBSD 5.1 X-BeenThere: freebsd-performance@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Performance/tuning List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Aug 2003 06:28:08 -0000 Did you disable INVARIANTS and WITNESS when running the tests? Pete TeJun Huh wrote: > Hello, > > I've been conducting performance tests using simple HTTP proxies and >web polygraph . Web polygraph is >believed to generate realistic Internet load (high number of sessions, >many idle, req rate independent of resp rate, and so on). I built >several equivalent HTTP proxies using various concurrency mechanisms >and comparing those on linux and freeBSD. > > The following result is obtained on p4 xeon 2.4g (UP kernels). >Custom version of Kqueue is used on Linux. FreeBSD 5.1 is updated to >the latest cvs tree three weeks ago (due to thread stability issues) >and compiled with GENERIC option. > > FreeBSD Linux > Select Kqueue Select Kqueue >rps 400 500 500 2500 > > I feel something is very wrong with FreeBSD kqueue result. Used >tuning parameters are > >* Loader tunables > >kern.maxusers="512" >kern.ipc.maxsockets="200000" >kern.ipc.nmbclusters="51200" >kern.ipc.nmbufs="102400" >net.inet.tcp.tcbhashsize="65536" > >* Sysctls > >sysctl -w net.inet.ip.portrange.first=1024 >sysctl -w net.inet.ip.portrange.last=65535 >sysctl -w kern.ipc.somaxconn=1024 >sysctl -w kern.maxfiles=200000 >sysctl -w kern.maxfilesperproc=200000 >sysctl -w kern.threads.max_threads_per_proc=100000 >sysctl -w kern.threads.max_groups_per_proc=8000 > > As soon as the test machine becomes available, I'm gonna run tests on >freeBSD 4.8 and compare the results. Any suggestions are welcomed. > >P.S. Please don't forget to CC me. TIA. > > >