Skip to content

Versioned Key-Value Store with RocksDB backend and gRPC API

License

Notifications You must be signed in to change notification settings

scalableminds/fossildb

Repository files navigation

FossilDB

Versioned Key-Value Store with RocksDB backend and gRPC API

CircleCI

Installation & Usage

You can download the executable jar,

java -jar fossildb.jar -c default

or use a docker image and run

docker run scalableminds/fossildb:master fossildb -c default

For further options, see help:

  -p, --port <num>         port to listen on. Default: 7155
  -d, --dataDir <path>     database directory. Default: data
  -b, --backupDir <path>   backup directory. Default: backup
  -c, --columnFamilies <cf1>,<cf2>...
                           column families of the database (created if there is no db yet)

API

FossilDB can be used via its gRPC API.