Skip to content

Commit

Permalink
WHIRR-287. Script for running YCSB on HBase (asavu)
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/incubator/whirr/trunk@1099277 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Andrei Savu committed May 3, 2011
1 parent 2bf1fc7 commit 98d2c1b
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGES.txt
Expand Up @@ -52,6 +52,8 @@ Trunk (unreleased changes)

WHIRR-289. Display role names in list-cluster command (asavu)

WHIRR-287. Script for running YCSB on HBase (asavu)

BUG FIXES

WHIRR-253. ZooKeeper service should only authorize ingress to ZooKeeper
Expand Down
49 changes: 49 additions & 0 deletions contrib/scripts/ycsb_quick_test.sh
@@ -0,0 +1,49 @@
#!/bin/bash
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Based on http://blog.lars-francke.de/2010/08/16/performance-testing-hbase-using-ycsb/
#

set -x -e

sudo rm -rf /tmp/ycsb
sudo mkdir -p /tmp/ycsb
cd /tmp/ycsb

sudo curl -s -O http://people.apache.org/~asavu/ycsb-0.1.3.tar.gz
sudo tar xfz ycsb-0.1.3.tar.gz

cd /usr/local/hbase-*
sudo ./bin/hbase shell <<EOF
disable 'usertable'
drop 'usertable'
create 'usertable', 'family'
exit
EOF

cd /tmp/ycsb/ycsb-0.1.3/

sudo java -cp build/ycsb.jar:db/hbase/lib/* com.yahoo.ycsb.Client -load -db com.yahoo.ycsb.db.HBaseClient -P workloads/workloada -p columnfamily=family -p recordcount=2000 -s > load.dat

sudo java -cp build/ycsb.jar:db/hbase/lib/* com.yahoo.ycsb.Client -t -db com.yahoo.ycsb.db.HBaseClient -P workloads/workloada -p columnfamily=family -p operationcount=2000 -s -threads 10 -target 100 > transactions.dat

echo "*** Data loading stats"
sudo head -n 11 load.dat

echo "*** Transactions stats"
sudo head -n 11 transactions.dat

0 comments on commit 98d2c1b

Please sign in to comment.