This section describes how to run YCSB on infinispan.
- Git clone YCSB and compile:
git clone https://github.com/brianfrankcooper/YCSB.git
cd YCSB
mvn clean package
- Copy and untar YCSB distribution in distribution/target/ycsb-x.x.x.tar.gz to target machine
####4.1 embedded mode with cluster or not Load the data:
./bin/ycsb load infinispan -P workloads/workloada -p infinispan.clustered=<true or false>
Run the workload test:
./bin/ycsb run infinispan -s -P workloads/workloada -p infinispan.clustered=<true or false>
####4.2 client-server mode
-
start infinispan server
-
read RemoteCacheManager doc and customize hotrod client properties in infinispan-binding/conf/remote-cache.properties
-
Load the data with specified cache:
./bin/ycsb load infinispan-cs -s -P workloads/workloada -P infinispan-binding/conf/remote-cache.properties -p cache=<cache name>
- Run the workload test with specified cache:
./bin/ycsb run infinispan-cs -s -P workloads/workloada -P infinispan-binding/conf/remote-cache.properties -p cache=<cache name>