> file=main.pdf since I searched for quick install and that was first result
> and I was expecting it to work.
our project site at
https://code.google.com/p/scalaris/ has a correct link to
the "Users and Developers Guide" (and as I said, it's in the tarball as well)
> Now I have started with firstnode.sh but when I try to run YCSB over it I
> am getting:
> de.zib.scalaris.ConnectionException: Cannot connect to peer node, bad
> nodes: [node1@ubuntu], good nodes: [], retries: 3
if you start via firstnode.sh then your node will probably be named
"firstnode@ubuntu" and you need to adapt the YCSB connection settings
accordingly:
scalaris.node = "firstnode@ubuntu"
(you could also use firstnode@localhost in which case "localhost" will be
replaced by the correct hostname)
see
https://code.google.com/p/scalaris/wiki/YCSB
> I can not run just 1 instance? I have to always run it as cluster by
> executing ./bin/joining_node.sh, ./bin/joining_node.sh 2 and ./bin/
> joining_node.sh 3 ?
you can run a single instance - the 4 replicas that are stored for each item
you add are used nonetheless (on this single node)!
-> I'd recommend this for debugging only as it is a rather un-common setup for
a distributed data store. A normal setup would of course be more expensive as
communication between the nodes is needed.
Also a difference you have to keep in mind when comparing different data
stores! (distributed vs. single-node data stores)
Nico