Created
September 26, 2010 02:05
-
-
Save rsumbaly/597505 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HOWTO | |
------------------------------------------------------------------------------ | |
a) Get Voldemort | |
> mkdir voldemort-0.81 ; cd voldemort-0.81 | |
> git clone [email protected]:voldemort/voldemort.git | |
> git checkout -b 81 origin/release-081 | |
OR | |
> wget http://github.com/downloads/voldemort/voldemort/voldemort-0.81.tar.gz | |
> tar xvfz voldemort-0.81.tar.gz | |
> cd voldemort-0.81 | |
b) Copy libs | |
> ant # inside voldemort-0.81 folder | |
> cp dist/voldemort-*0.81.jar $YCSB_PATH/db/voldemort/lib/. | |
> cp lib/*.jar $YCSB_PATH/db/voldemort/lib/. | |
c) Compile | |
> cd $YCSB_PATH | |
> ant ; ant dbcompile-voldemort | |
d) Start test voldemort | |
> voldemort-0.81/bin/voldemort-server.sh $YCSB_PATH/db/voldemort/ & # Reads the files in config folder | |
e) Run YCSB | |
> java com.yahoo.ycsb.CommandLine -db com.yahoo.ycsb.db.VoldemortClient -p bootstrap_urls=tcp://localhost:6666 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment