Yahoo! Cloud Serving Benchmark
Перейти к файлу
yuyanting 2cc1414b12 [googledatastore] Clean up googledatastore/pom file. 2016-04-18 14:20:22 -07:00
accumulo [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
aerospike [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
bin [elasticsearch] Fix Elasticsearch name 2016-03-07 11:36:26 -05:00
binding-parent [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
cassandra [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
cassandra2 [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
core [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
couchbase [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
distribution [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
doc [doc] Remove old javadoc. 2015-10-14 22:54:43 -04:00
dynamodb [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
elasticsearch [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
geode [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
googledatastore [googledatastore] Clean up googledatastore/pom file. 2016-04-18 14:20:22 -07:00
hbase10 [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
hbase094 [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
hbase098 [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
hypertable [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
infinispan [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
jdbc [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
kudu [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
mapkeeper [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
memcached [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
mongodb [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
nosqldb [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
orientdb [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
redis [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
s3 [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
solr [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
tarantool [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
voldemort [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00
workloads [core] Incorporate CR feedback 2015-12-12 09:00:49 -08:00
.editorconfig [checkstyle] editorconfig = easy style conformance 2015-12-02 21:38:35 +00:00
.gitignore Added support for Vim and Emacs. 2015-11-27 20:34:51 +00:00
.travis.yml [licensing] Added ASLv2 headers to files without them for v0.4.0. 2015-10-14 22:51:39 -04:00
LICENSE.txt Initial commit of YCSB. 2010-04-19 13:50:19 -07:00
NOTICE.txt [memcached] Added memcached binding. 2015-12-10 13:23:59 -05:00
README.md Updated top level README for YCSB 0.7.0 release 2016-02-25 10:22:02 -06:00
checkstyle.xml [checkstyle] consolidate checkstyle plugin configs. default to enforcing. 2016-01-27 08:58:53 -06:00
pom.xml [version] update master to 0.9.0-SNAPSHOT. 2016-04-01 21:58:48 -07:00

README.md

Yahoo! Cloud System Benchmark (YCSB)

Build Status

http://wiki.github.com/brianfrankcooper/YCSB/
https://labs.yahoo.com/news/yahoo-cloud-serving-benchmark/ ycsb-users@yahoogroups.com

Getting Started

  1. Download the latest release of YCSB:

    curl -O --location https://github.com/brianfrankcooper/YCSB/releases/download/0.7.0/ycsb-0.7.0.tar.gz
    tar xfvz ycsb-0.7.0.tar.gz
    cd ycsb-0.7.0
    
  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

YCSB requires the use of Maven 3; if you use Maven 2, you may see errors such as these.

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