BigTable
1.0.0
Bigtable is a distributed storage system for managing structured data that is designed to scale to a very large size .
The system consists of 3 major components :
any number of tablet servers can be added and each tablet server can manage any number of tablets .
# install dependencies
$ npm i
# run master server
$ npm run master
# run tablet servers
$ npm run tabletserver1
$ npm run tabletserver2
# run clients
$ npm run client1
$ npm run client2