Hacker News new | ask | show | jobs
Show HN: Skardi – SQL across Postgres, S3, and data lakes, served as a REST API (github.com)
4 points by abbccdda 64 days ago
2 comments

How does Skardi compare to Presto for federated queries?
Hi, Also a contributor to skardi here. Presto is mainly focus on analytic queries, but skardi was optimized for serving online traffics, that means you can use skardi as a web server(define the SQL and skardi can turn it into a http server),I think that's the main difference.
What are the main differences between this and DuckDB?
Hey there! The primary difference is that DuckDB is primarily a compute engine for analytical workloads, while Skardi is tackling the challenge with online serving queries. In addition, DuckDB provides read-only access to their data, while Skardi allows you to access multiple data sources and support read-write queries for a bunch of major stream DBs such as MySQL, Postgres, Mongo, etc.

Happy to list more comparisons if you want to discuss more!