YCSB/maprjsondb
Jonathan Leitschuh cd163d38ce [build] Use HTTPS instead of HTTP to resolve dependencies
This fixes a security vulnerability in this project where the `pom.xml`
files were configuring Maven to resolve dependencies over HTTP instead of
HTTPS.

Alters dependency resolution for
* cassandra
* hypertable
* maprdb
* maprjsondb
* mongodb

closes #1406
2020-11-26 15:07:33 -06:00
..
src/main/java/site/ycsb/db/mapr Move all packages from com.yahoo.ycsb to site.ycsb. (#1354) 2019-09-19 13:51:09 -05:00
README.md [maprdb maprjsondb] Added clients for MapR-DB and MapR-JSONDB (#1063) 2018-05-11 16:04:43 -07:00
pom.xml [build] Use HTTPS instead of HTTP to resolve dependencies 2020-11-26 15:07:33 -06:00

README.md

Quick Start

This section describes how to run YCSB on a MapR Cluster against MapR-DB (JSON).

1. Set Up YCSB

Clone the YCSB git repository and compile:

git clone https://github.com/brianfrankcooper/YCSB.git
cd YCSB
mvn clean package

2. Create MapR-DB JSON Table

maprcli volume create -name tables -path /tables
maprcli table create -path /tables/docTable -tabletype json

3. Run YCSB

3.1. Load Table
./bin/ycsb load maprjsondb -P workloads/workloada -cp $(mapr clientclasspath) -p table=/tables/docTable
3.2. Run workload
./bin/ycsb run maprjsondb -P workloads/workloadb -cp $(mapr clientclasspath) -p table=/tables/docTable