Yahoo! Cloud Serving Benchmark
Перейти к файлу
Sean Busbey 9a6bb4248a Merge pull request #394 from allanbank/pr-393
[docs] Fixes #393 - Update the curl command to use the --location option
2015-08-21 21:32:33 -05:00
accumulo [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
aerospike [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
bin [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
binding-parent [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
cassandra [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
core Merge pull request #382 from gkamat/issue_313 2015-08-07 10:58:50 -07:00
couchbase [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
distribution [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
doc [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
dynamodb [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
elasticsearch [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
gemfire [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
hbase [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
hypertable [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
infinispan [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
jdbc [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
mapkeeper [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
mongodb [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
nosqldb [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
orientdb [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
redis [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
tarantool [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
voldemort [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07: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] Fixes #393 - Update the curl command to use the --location option. 2015-08-20 21:18:26 -04:00
checkstyle.xml [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07:00
pom.xml [licensing] Added ASLv2 headers to files without them. 2015-08-07 10:49:16 -07: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.0/ycsb-0.3.0.tar.gz
    tar xfvz ycsb-0.3.0.tar.gz
    cd ycsb-0.3.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

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