forked from brianfrankcooper/YCSB
-
Notifications
You must be signed in to change notification settings - Fork 12
/
BUILD
31 lines (19 loc) · 877 Bytes
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Building YCSB
To build YCSB, run:
mvn clean package
# Running YCSB
Once `mvn clean package` succeeds, you can run `ycsb` command:
./bin/ycsb load basic workloads/workloada
./bin/ycsb run basic workloads/workloada
# Oracle NoSQL Database
Oracle NoSQL Database binding doesn't get built by default because there is no
Maven repository for it. To build the binding:
1. Download kv-ce-1.2.123.tar.gz from here:
http://www.oracle.com/technetwork/database/nosqldb/downloads/index.html
2. Untar kv-ce-1.2.123.tar.gz and install kvclient-1.2.123.jar in your local
maven repository:
tar xfvz kv-ce-1.2.123.tar.gz
mvn install:install-file -Dfile=kv-1.2.123/lib/kvclient-1.2.123.jar \
-DgroupId=com.oracle -DartifactId=kvclient -Dversion=1.2.123
-Dpackaging=jar
3. Uncomment `<module>nosqldb</module>` and run `mvn clean package`.