Hacker News new | ask | show | jobs
by ultra-jeremyx 891 days ago
This sounds a lot like AWS Aurora, which (I'm simplifying here) is a database interface on top of a distributed file store, (S3).
2 comments

I assume you mean AWS Athena - but no this is quite different from FoundationDB. Athena separates compute from storage (it’s Presto https://prestodb.io/ under the hood). Think of it as an on-demand SQL compute cluster. FoundationDB is a traditional combined storage/compute cluster. The Record Layer does provide some ability to scale-out the higher-level aspects of querying but it’s just a client library, not a separate compute service.
This is the first time I've seen it suggested that Aurora is implemented on top of S3.

This overview doesn't mention S3: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide...

Athena is a query engine, not a data store. It’s actually built from Presto (or maybe it’s Trino now, I’m not sure).