The SQL query engine Trino (formerly PrestoSQL) recaps a decade of innovation
1–10 of 70 posts
Re: The SQL query engine Trino (formerly PrestoSQL) recaps a decade of innovation
#2Re: The SQL query engine Trino (formerly PrestoSQL) recaps a decade of innovation
#3https://trino.io/blog/2022/08/02/leaving-facebook-meta-best-...
Re: The SQL query engine Trino (formerly PrestoSQL) recaps a decade of innovation
#4Re: The SQL query engine Trino (formerly PrestoSQL) recaps a decade of innovation
#5One of my favorite OSS projects! Probably the most flexible and fully featured distributed SQL query engine around. Congrats and looking forward to the next decade!
Re: The SQL query engine Trino (formerly PrestoSQL) recaps a decade of innovation
#6Re: The SQL query engine Trino (formerly PrestoSQL) recaps a decade of innovation
#7The thing I wonder about with Presto and to a lesser extent Spark is, how many of their users adopted this tool because it was an easy migration path from Hive, and how many of those users will eventually re-platform to something else?
The other thing I would say is that Trino and Presto are not one-trick ponies or just hive replacements. There's also the ability to query across multiple systems that is, to me, the feature that future proofs a lot of architectures. It inherently frees you up to fiddle with your data in different systems but keep the access to that system in one location.
Re: The SQL query engine Trino (formerly PrestoSQL) recaps a decade of innovation
#8It turns out that the dialect doesn't support LATERAL joins with a LIMIT in them. The below query only works if you remove the LIMIT clause.
https://i.stack.imgur.com/rdB1s.png
This makes saying things like "Fetch all artists where ..., for each artist fetch their first 3 albums where ..., and for each album fetch the top 10 tracks where ..." really difficult
Does Trino support this out of curiosity?
Re: The SQL query engine Trino (formerly PrestoSQL) recaps a decade of innovation
#9Re: The SQL query engine Trino (formerly PrestoSQL) recaps a decade of innovation
#10I recently had to write SQL query generation for AWS Athena, which is based off Presto 0.217 It turns out that the dialect doesn't support LATERAL joins with a LIMIT in them. The below query only works if you remove the LIMIT clause. https://i.stack.imgur.com/rdB1s.png This makes saying things like "Fetch all artists where ..., for each artist fetch their first 3 albums where ..., and for each album fetch the top 10…