Chord protocol implementation in Rust.
This repo contains a Rust implementation of the Chord protocol.
Warning
This is a work in progress and is not yet ready for production use.
bash
make build
bash
make run
If you want to run the node with different configuration, you can use the following command:
bash
cargo run -p server -- --help
You can also run multiple nodes at the same time:
bash
make run-local
It will run 10 nodes on the following ports 50050
to 50060
. You can find logs from all nodes in nohup.out
file.
There is also a CLI tool which can be used to interact with the nodes. You can see the list of commands by running:
bash
cargo run -p tamto-chord -- --help