ResilientDB aims at Making Permissioned Blockchain Systems Fast Again. ResilientDB makes system-centric design decisions by adopting a multi-thread architecture that encompasses deep-pipelines. Further, we separate the ordering of client transactions from their execution, which allows us to perform out-of-order processing of messages.
- ResilientDB supports a Dockerized implementation, which allows specifying the number of clients and replicas.
- PBFT [Castro and Liskov, 1998] protocol is used to achieve consensus among the replicas.
- ResilientDB expects minimum 3f+1 replicas, where f is the maximum number of byzantine (or malicious) replicas.
- ReslientDB designates one of its replicas as the primary (replicas with identifier 0), which is also responsible for initiating the consensus.
- At present, each client only sends YCSB-style transactions for processing, to the primary.
- Each client transaction has an associated transaction manager, which stores all the data related to the transaction.
- Depending on the type of replica (primary or non-primary), we associate different a number of threads and queues with each replica.
First, install docker and docker-compose:
Use the Script resilientDB-docker
Usage:
./resilientDB-docker --clients=1 --replicas=4
./resilientDB-docker -d [default 4 replicas and 1 client]
- The result will be printed on STDOUT and also
res.out
file. It contains the Throughputs and Latencies for the run and summary of each thread in replicas.
- Using docker, all replicas and clients will be running on one machine as containers, so a large number of replicas would degrade the performance of your system
We strongly recommend that first try the docker version, Here are the steps to run on a real environment:
-
First Step is to untar the dependencies:
cd deps && \ls | xargs -i tar -xvf {} && cd ..
-
Create obj folder inside resilientdb folder, to store object files. And results to store the results.
mkdir obj mkdir results
-
Create a folder named results inside resilientdb to store the results.
-
We provide a script startResilientDB.sh to compile and run the code. To run ResilientDB on a cluster such as AWS, Azure or Google Cloud, you need to specify the Private IP Addresses of each replica.
-
The code will be compiled on the machine that is running the startResilientDB.sh and send the binary files over the SSH to the resilientdb folder in all other nodes. the directory which contains the resilientdb in nodes should be set as
home_directory
in following files as :- scripts/scp_binaries.sh
- scripts/scp_results.sh
- scripts/simRun.py
-
change the
CNODES
andSNODES
arrays inscripts/startResilientDB.sh
and put IP Addresses. -
Adjust the parameters in
config.h
such as number of replicas and clients -
Run script as: ./scripts/startResilientDB.sh <number of servers> <number of clients> <batch size>
-
All the results after running the script will be stored inside the results folder.
- The code is compiled using command: make clean; make
- On compilation, two new files are created: runcl and rundb.
- Each machine is going to act as a client needs to execute runcl.
- Each machine is going to act as a replica needs to execute rundb.
- The script runs each binary as: ./rundb -nid<numeric identifier>
- This numeric identifier starts from 0 (for the primary) and increases as 1,2,3... for subsequent replicas and clients.
* NODE_CNT Total number of replicas, minimum 4, that is, f=1. * THREAD_CNT Total number of threads at primary (at least 5) * REM_THREAD_CNT Total number of input threads at a replica (set it to 3) * SEND_THREAD_CNT Total number of output threads at a replica (at least 1) * CLIENT_NODE_CNT Total number of clients (at least 1). * CLIENT_THREAD_CNT Total number of threads at a client (at least 1) * CLIENT_REM_THREAD_CNT Total number of input threads at a client (set it to 1) * SEND_THREAD_CNT Total number of output threads at a client (set it to 1) * MAX_TXN_IN_FLIGHT Multiple of Batch Size * DONE_TIMER Amount of time to run the system. * WARMUP_TIMER Amount of time to warmup the system (No statistics collected). * BATCH_THREADS Number of threads at primary to batch client transactions. * BATCH_SIZE Number of transactions in a batch (at least 10) * TXN_PER_CHKPT Frequency at which garbage collection is done. * USE_CRYPTO To switch on and off cryptographic signing of messages. * CRYPTO_METHOD_RSA To use RSA based digital signatures. * CRYPTO_METHOD_ED25519 To use ED25519 based digital signatures. * CRYPTO_METHOD_CMAC_AES To use CMAC + AES combination for authentication. * SYNTH_TABLE_SIZE The range of keys for clients to select.
- There are several other parameters in config.h, which are unusable (or not fully tested) in the current version.