Yahoo! Cloud Serving Benchmark
Перейти к файлу
Connor McCoy 7501ad0325 [hbase10] Skip HBase MiniCluster tests on Windows 2015-10-13 08:32:02 -07:00
accumulo [version] update master to 0.5.0-SNAPSHOT. 2015-09-21 19:42:39 -04:00
aerospike [aerospike] Handle cluster overloads just like any other error. 2015-09-24 11:35:31 +02:00
bin [hbase] Separate hbase094, hbase098, hbase10 bindings. 2015-09-16 09:23:29 -07:00
binding-parent [version] update master to 0.5.0-SNAPSHOT. 2015-09-21 19:42:39 -04:00
cassandra [cassandra-cql] Make CassandraCQLClient consistent. 2015-09-28 11:49:12 -07:00
core [core] Update the AcknowledgedCounterGenerator to use a power of two 2015-10-10 01:59:25 -04:00
couchbase [version] update master to 0.5.0-SNAPSHOT. 2015-09-21 19:42:39 -04:00
distribution [version] update master to 0.5.0-SNAPSHOT. 2015-09-21 19:42:39 -04:00
doc [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
dynamodb [version] update master to 0.5.0-SNAPSHOT. 2015-09-21 19:42:39 -04:00
elasticsearch [version] update master to 0.5.0-SNAPSHOT. 2015-09-21 19:42:39 -04:00
gemfire [version] update master to 0.5.0-SNAPSHOT. 2015-09-21 19:42:39 -04:00
hbase10 [hbase10] Skip HBase MiniCluster tests on Windows 2015-10-13 08:32:02 -07:00
hbase094 [version] update master to 0.5.0-SNAPSHOT. 2015-09-21 19:42:39 -04:00
hbase098 [hbase] Make PageFilter use configurable. 2015-09-24 10:53:19 -07:00
hypertable [version] update master to 0.5.0-SNAPSHOT. 2015-09-21 19:42:39 -04:00
infinispan [version] update master to 0.5.0-SNAPSHOT. 2015-09-21 19:42:39 -04:00
jdbc [version] update master to 0.5.0-SNAPSHOT. 2015-09-21 19:42:39 -04:00
mapkeeper [version] update master to 0.5.0-SNAPSHOT. 2015-09-21 19:42:39 -04:00
mongodb [mongodb] Add mongodb.upsert configuration option. 2015-10-07 23:51:37 -04:00
nosqldb [version] update master to 0.5.0-SNAPSHOT. 2015-09-21 19:42:39 -04:00
orientdb [version] update master to 0.5.0-SNAPSHOT. 2015-09-21 19:42:39 -04:00
redis [redis] Fix the label for a redis parameter 2015-10-06 10:43:03 -07:00
tarantool [version] update master to 0.5.0-SNAPSHOT. 2015-09-21 19:42:39 -04:00
voldemort [version] update master to 0.5.0-SNAPSHOT. 2015-09-21 19:42:39 -04:00
workloads [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
.gitignore [infinispan] add infinispan-binding README 2015-06-18 02:21:29 -05:00
.travis.yml [travis] Fixes #389 - Update .travis.yml to use the container based infrastructure for Travis Builds. 2015-08-16 14:03:12 -04:00
BUILD gh-66 added more stuff in BUILD. added db links in ycsb. 2012-02-22 01:32:13 -08:00
LICENSE.txt Initial commit of YCSB. 2010-04-19 13:50:19 -07:00
NOTICE.txt Initial commit of YCSB. 2010-04-19 13:50:19 -07:00
README.md [docs] update README for 0.3.1 release. 2015-09-11 23:46:30 -05:00
checkstyle.xml [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
pom.xml [version] update master to 0.5.0-SNAPSHOT. 2015-09-21 19:42:39 -04:00

README.md

Yahoo! Cloud System Benchmark (YCSB)

Build Status

http://wiki.github.com/brianfrankcooper/YCSB/
http://research.yahoo.com/Web_Information_Management/YCSB/
ycsb-users@yahoogroups.com

Getting Started

  1. Download the latest release of YCSB:

    curl -O --location https://github.com/brianfrankcooper/YCSB/releases/download/0.3.1/ycsb-0.3.1.tar.gz
    tar xfvz ycsb-0.3.1.tar.gz
    cd ycsb-0.3.1
    
  2. Set up a database to benchmark. There is a README file under each binding directory.

  3. Run YCSB command.

    bin/ycsb load basic -P workloads/workloada
    bin/ycsb run basic -P workloads/workloada
    

Running the ycsb command without any argument will print the usage.

See https://github.com/brianfrankcooper/YCSB/wiki/Running-a-Workload for a detailed documentation on how to run a workload.

See https://github.com/brianfrankcooper/YCSB/wiki/Core-Properties for the list of available workload properties.

Building from source

To build the full distribution, with all database bindings:

mvn clean package

To build a single database binding:

mvn -pl com.yahoo.ycsb:mongodb-binding -am clean package