[untitled]1 ポイント·投稿者 ankuranand·21 日前·0 コメント1 コメントコメントを投稿[–]ankuranand·21 日前返信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/unisondbLooking forward to feedback and suggestions.
``` 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.