by houqp on 9/24/22, 3:59 PM with 62 comments
by ebfe1 on 9/24/22, 9:41 PM
clickhouse-local - https://news.ycombinator.com/item?id=22457767
q - https://news.ycombinator.com/item?id=27423276
textql - https://news.ycombinator.com/item?id=16781294
simpql- https://news.ycombinator.com/item?id=25791207
We need a benchmark i think..;)
by mmastrac on 9/24/22, 5:16 PM
by gavinray on 9/24/22, 7:43 PM
2) the author once answered some questions I posted on Datafusion, so they're cool in my book
Here are my anecdotes.
by playingalong on 9/24/22, 8:18 PM
by henrydark on 9/24/22, 8:15 PM
by tootie on 9/24/22, 5:21 PM
by johnnunn on 9/25/22, 4:03 AM
by cube2222 on 9/24/22, 4:39 PM
If you like this, I recommend taking a look at OctoSQL[0], which I'm the author of.
It's plenty fast and easier to add new data sources for as external plugins.
It can also handle endless streams of data natively, so you can do running groupings on i.e. tailed JSON logs.
Additionally, it's able to push down predicates to the database below, so if you're selecting 10 rows from a 1 billion row table, it'll just get those 10 rows instead of getting them all and filtering in memory.
by smugma on 9/25/22, 12:16 AM
e.g.
sqlite3 :memory: -cmd '.mode csv' -cmd '.import royalties.csv Royalty' -cmd '.mode column' \
'SELECT SUM(Royalty),Currency FROM Royalty GROUP BY Currency'
by bachmeier on 9/24/22, 4:57 PM
by skybrian on 9/24/22, 9:05 PM
by the_optimist on 9/25/22, 1:04 AM
by theGnuMe on 9/25/22, 4:26 AM
by whimsicalism on 9/24/22, 9:07 PM
by Kalanos on 9/25/22, 12:16 AM