Return-Path: Delivered-To: apmail-hbase-user-archive@www.apache.org Received: (qmail 91507 invoked from network); 26 Sep 2010 20:38:55 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 26 Sep 2010 20:38:55 -0000 Received: (qmail 8222 invoked by uid 500); 26 Sep 2010 20:38:54 -0000 Delivered-To: apmail-hbase-user-archive@hbase.apache.org Received: (qmail 8156 invoked by uid 500); 26 Sep 2010 20:38:54 -0000 Mailing-List: contact user-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@hbase.apache.org Delivered-To: mailing list user@hbase.apache.org Received: (qmail 8148 invoked by uid 99); 26 Sep 2010 20:38:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 26 Sep 2010 20:38:54 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of ryanobjc@gmail.com designates 209.85.214.169 as permitted sender) Received: from [209.85.214.169] (HELO mail-iw0-f169.google.com) (209.85.214.169) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 26 Sep 2010 20:38:46 +0000 Received: by iwn33 with SMTP id 33so5730166iwn.14 for ; Sun, 26 Sep 2010 13:38:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=xOIbxxN+gx8WmF/SDYFrJaLZfchZk7+qtDtqS97V7eM=; b=pavwTRz4u801K+CRvXQO9o4Qy1NEMyzEzJC/MvyXxvLvF3+PKb/PiqP5IFu2Beo2mP 2BLFjIUqEKvMbN3SrEMDpQV9Pmg5F3vh7X9MiIYg0Rx4LPeqSzu5B9zHSwtJXEKEHNv3 Yh0XSjVZZaamG1AG5hfjYmMTbj/91w12SPJH4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=vTA/4yL/SjX/9aADy/EkpNSlRZfcy57efKpmpsgjHUMdRlwdreKntD7VbDdkxM6pt1 /bn/mX5ywo+qyXxN4zGpy8YkyoL1QNpIsNaBrK3EsZBzxtp0thdheJgndsPgW+pY6P+D oQAy/4C6CXV7Jfm9qEZMtQml1rLu/tdR+I0Us= MIME-Version: 1.0 Received: by 10.231.11.69 with SMTP id s5mr8022950ibs.38.1285533505406; Sun, 26 Sep 2010 13:38:25 -0700 (PDT) Received: by 10.231.12.140 with HTTP; Sun, 26 Sep 2010 13:38:25 -0700 (PDT) In-Reply-To: References: Date: Sun, 26 Sep 2010 13:38:25 -0700 Message-ID: Subject: Re: anybody running ycsb? From: Ryan Rawson To: user@hbase.apache.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org hey, there are a lot of settings which all affect speed, you might want to make sure you are running the exact config the paper is. for example "readallfields".. if you have a wide column setting it to 'true' will go much slower (since you are returning a lot more data) than if you set it to false. Also there are known bottlenecks in our HTable client, which exist to reduce the # of socket connections, but you can get higher performance with multiple VMs, although that is more complex. Also dont forget hardware.. .make sure your HW is the same as the papers. Good luck! -ryan On Sat, Sep 25, 2010 at 8:19 AM, Tao Xie wrote: > I want to reproduce the results in the ycsb paper. I =A0run hbase 0.20.6 = and > hadoop 0.20.2. My cluster is like this: > > 1 Node as HMaster + ZK > > 6 Nodes as DN, RS > > 1 Node as Hbase client. > > I think this environment is something like the one used by the paper. > > When I run tests like workloadb with 100 threads, I get at most 2500 ops/= sec > throughput and read latency is about 40~50 ms, which is much higher than = the > paper results (about 10+ ms). I wonder if anybody is running ycsb too and > can give me some hints. > > > > Thanks in advance. >