Pierre Zemb's Blog

Announcing Record-Store, a new (experimental) place for your data

Table of contents

TL;DR: I'm really happy to announce my latest open-source project called Record-Store 🚀 Please check it out on https://pierrez.github.io/record-store.

🔗What?

Record-Store is a layer running on top of FoundationDB. It provides abstractions to create, load and deletes customer-defined data called records, which are hold into a RecordSpace. We would like to have this kind of flow for developers:

  1. Opening RecordSpace, for example prod/users
  2. Create a protobuf definition which will be used as schema
  3. Upsert schema
  4. Push records
  5. Query records
  6. delete records

You need another KeySpace to store another type of data, or maybe a KeySpace dedicated to production env? Juste create it and you are good to go!

🔗Features

It is currently an experiment, but it already has some strong features:

🔗Why?

Lately, I have been playing a lot with my ETCD-Layer that is using the Record-Layer. Thanks to it, I was able to bootstrap my ETCD-layer very quickly, but I was not using a tenth of the capacities of this library. So I decided to go deeper. What would a gRPC abstraction of the Record-Layer look like?

The name of this project itself is a tribute to the Record Layer as we are exposing the layer within a gRPC interface.

🔗Try it out

Record-Store is open sourced under Apache License V2 in https://github.com/PierreZ/record-store and the documentation can be found https://pierrez.github.io/record-store.


Thank you for reading my post! Feel free to react to this article, I am also available on Twitter if needed.

Tags: #layer #foundationdb