Yahoo! Cloud Serving Benchmark
Перейти к файлу
Todd Lipcon b7af89511f Avoid needless conversion to/from Bytes in HBase benchmark 2010-04-25 13:49:23 -07:00
doc Fixing documentation and javadoc. 2010-04-23 10:26:08 -07:00
src/com/yahoo/ycsb Avoid needless conversion to/from Bytes in HBase benchmark 2010-04-25 13:49:23 -07:00
workloads Initial commit of YCSB. 2010-04-19 13:50:19 -07: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 Version history in README 2010-04-25 11:55:51 -07:00
build.xml Separated Cassandra and HBase lib dirs into their own directory 2010-04-20 13:00:07 -07:00

README

Yahoo! Cloud System Benchmark (YCSB)

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


Overview
========

It is difficult to decide which system is right for your application,
partially because the features differ between systems, and partially
because there is not an easy way to compare the performance of one
system versus another.

The goal of the YCSB project is to develop a framework and common set
of workloads for evaluating the performance of different "key-value"
and "cloud" serving stores. The project comprises two things:

* The YCSB Client, an extensible workload generator

* The Core workloads, a set of workload scenarios to be executed by
  the generator

Although the core workloads provide a well rounded picture of a
system's performance, the Client is extensible so that you can define
new and different workloads to examine system aspects, or application
scenarios, not adequately covered by the core workload. Similarly, the
Client is extensible to support benchmarking different
databases. Although we include sample code for benchmarking HBase and
Cassandra, it is straightforward to write a new interface layer to
benchmark your favorite database.

A common use of the tool is to benchmark multiple systems and compare
them. For example, you can install multiple systems on the same
hardward configuration, and run the same workloads against each
system. Then you can plot the performance of each system (for example,
as latency versus throughput curves) to see when one system does
better than another.

Detailed information about using the benchmark is available in the
doc/index.html file.

Revision History
================

0.1.1 - 4/25/10

- Compiles under 1.5
- Fixes doc and HBaseClient bugs

0.1.0 - 4/23/10 

- Initial open source release