←back to thread

93 points mbrt | 1 comments | | HN request time: 0.208s | source
Show context
jitl ◴[] No.42239733[source]
There is also SlateDB, another work in progress take on this. HN link: https://news.ycombinator.com/item?id=41714858
replies(1): >>42240384 #
1. maxmcd ◴[] No.42240384[source]
Yeah I think it's very interesting to compare the two. SlateDB expects a single writer and fences writes. This means you can make some serious savings on S3 costs because you're using S3 for consistency but you're batching writes.

GlassDB is much more accessible for smaller volume workloads, but gets very costly for high volume because of requests to S3 per-transaction. In-turn the consistency model is easier to reason about because the system is entirely stateless.