The most awesome distributed cloud database.
- Report
- More detailed architecture documentation.
- Map/Reduce Tutorial
Build and create JARs:
ant clean build-jar
This will create 3 JARs:
ecs.jar
: External configuration serviceserver.jar
: KV serverclient.jar
: Commandline client
Start the external configuration service (ECS):
java -jar ecs.jar
Init the cluster with 5 nodes (cache of size 1000 and with FIFO strategy):
ECS Client> init 5 1000 FIFO
ECS Client> start
Add another node into the running cluster:
ECS Client> addNode 1000 FIFO
Remove an arbitrary node from the cluster:
ECS Client> removeNode
Shutdown all server nodes and exit the ECS:
ECS Client> shutDown
ECS Client> exit
We follow the official Java coding style as defined by Sun.