Run SQL on CSV, Parquet, JSON, Arrow, Unix Pipes and Google Sheet
21–30 of 64 posts
Re: Run SQL on CSV, Parquet, JSON, Arrow, Unix Pipes and Google Sheet
#22Re: Run SQL on CSV, Parquet, JSON, Arrow, Unix Pipes and Google Sheet
#23The one thing everyone here is missing so far is that it's a Rust binary, distributed on PyPi. That's brilliant.
I created this project for distributing Node via PyPI: https://pypi.org/project/nodejs-bin/
Re: Run SQL on CSV, Parquet, JSON, Arrow, Unix Pipes and Google Sheet
#24clickhouse-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..;)
Re: Run SQL on CSV, Parquet, JSON, Arrow, Unix Pipes and Google Sheet
#25The one thing everyone here is missing so far is that it's a Rust binary, distributed on PyPi. That's brilliant.
Re: Run SQL on CSV, Parquet, JSON, Arrow, Unix Pipes and Google Sheet
#26This is cool...Totally reminded me about several tools pop up on HN every now and then in the past for similar task so i did a quick search: 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..;)
Re: Run SQL on CSV, Parquet, JSON, Arrow, Unix Pipes and Google Sheet
#27This is cool...Totally reminded me about several tools pop up on HN every now and then in the past for similar task so i did a quick search: 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..;)
Shameless plug. A desktop app: https://superintendent.app
Re: Run SQL on CSV, Parquet, JSON, Arrow, Unix Pipes and Google Sheet
#28As I commented on a recent similar discussion, these tools can't be used for update or insert. As useful as querying might be, it's terribly misleading to claim to "run SQL" if you can't change the data, since that's such a critical part of an SQL database.
Re: Run SQL on CSV, Parquet, JSON, Arrow, Unix Pipes and Google Sheet
#29As I commented on a recent similar discussion, these tools can't be used for update or insert. As useful as querying might be, it's terribly misleading to claim to "run SQL" if you can't change the data, since that's such a critical part of an SQL database.
90% of SQL usage, or more, is select in slowly changing data contexts.
Re: Run SQL on CSV, Parquet, JSON, Arrow, Unix Pipes and Google Sheet
#30AWS Athena offers something similar. You can build tables off of structured text files (like log files) in S3 and run SQL queries.
What’s the performance like though?