1 comment

[ 4.5 ms ] story [ 10.8 ms ] thread
Unisondb is dynamodb inspired multimodal database written in go. Aim at replicating to 1000's of nodes. It started with a simple replication model.

``` writer -> gRPC stream -> replica ```

A writable node owns the WAL. A replica connects over gRPC. The writer streams log records. The replica applies them in order.

We have added a a second replication path inside the Unisondb:

``` writer -> blob store -> replica ```

Project Repo: https://github.com/ankur-anand/unisondb

Looking forward to feedback and suggestions.