[untitled]1 points·by ankuranand·21 dagen geleden·0 comments1 commentsPost comment[–]ankuranand·21 dagen geledenreplyUnisondb 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.