Readit News logoReadit News
ryguyrg commented on MotherDuck launches managed DuckLake svc for scaling to petabytes with DuckDB   motherduck.com/blog/annou... · Posted by u/ryguyrg
ryguyrg · 2 months ago
note: i am the author of this blog post, and a co-founder at MotherDuck.
ryguyrg commented on Instant SQL for results as you type in DuckDB UI   motherduck.com/blog/intro... · Posted by u/ryguyrg
metadata · 4 months ago
Google SQL has it now:

https://cloud.google.com/blog/products/data-analytics/simpli...

It's pretty neat:

    FROM mydataset.Produce
    |> WHERE sales > 0
    |> AGGREGATE SUM(sales) AS total_sales, COUNT(\*) AS num_sales
       GROUP BY item;
Edit: formatting

ryguyrg · 4 months ago
note that DuckDB allows that reverse ordering (FROM-first)

FROM table SELECT foo, bar WHERE zoo=“goo”

ryguyrg commented on Instant SQL for results as you type in DuckDB UI   motherduck.com/blog/intro... · Posted by u/ryguyrg
carlineng · 4 months ago
I just watched the author of this feature and blog post give a talk at the DataCouncil conference in Oakland, and it is obvious what a huge amount of craft, ingenuity, and care went into building it. Congratulations to Hamilton and the MotherDuck team for an awesome launch!
ryguyrg · 4 months ago
wohoo! glad you noticed that. Hamilton is amazing.
ryguyrg commented on Instant SQL for results as you type in DuckDB UI   motherduck.com/blog/intro... · Posted by u/ryguyrg
XCSme · 4 months ago
I hope this doesn't work with DELETE queries.
ryguyrg · 4 months ago
ROFL
ryguyrg commented on Instant SQL for results as you type in DuckDB UI   motherduck.com/blog/intro... · Posted by u/ryguyrg
ryguyrg · 4 months ago
In DuckDB UI and MotherDuck.

Awesome video of feature: https://youtu.be/aFDUlyeMBc8

Disclaimer: I’m a co-founder at MotherDuck.

ryguyrg commented on The DuckDB Local UI   duckdb.org/2025/03/12/duc... · Posted by u/xnx
ayhanfuat · 5 months ago
> The DuckDB UI is also fully open source: visit the duckdb/duckdb-ui repository if you want to dive in deeper.

Is this really the case? The repo doesn’t seem to have any ui elements?

ryguyrg · 5 months ago
We updated the video [if that's the reference], because it is not yet open source. Thanks for pointing that out!
ryguyrg commented on The DuckDB Local UI   duckdb.org/2025/03/12/duc... · Posted by u/xnx
ryguyrg · 5 months ago
i’m one of the co-founders at MotherDuck. our team is building the UI in collaboration with the team at DuckDB Labs.

this is a first release. we know there are going to be tons of feature requests (including @antman’s request for simple charts). feel free to chime in on this thread and we’ll keep an eye on it!

meanwhile, hope you enjoy this release! we had lots of fun building it.

ryguyrg commented on Big data is dead (2023)   motherduck.com/blog/big-d... · Posted by u/armanke13
mattbillenstein · a year ago
I can appreciate the vertical scaling solution, but to be honest, this is the wrong solution for almost all use cases - consumers of the data don't want awk, and even if they did, spooling over 6TB for every kinda of query without partitioning or column storage is gonna be slow on a single cpu - always.

I've generally liked BigQuery for this type of stuff - the console interface is good enough for ad-hoc stuff, you can connect a plethora of other tooling to it (Metabase, Tableau, etc). And if partitioned correctly, it shouldn't be too expensive - add in rollup tables if that becomes a problem.

ryguyrg · a year ago
you can scale vertically with a much better tech than awk.

enter duckdb with columnar vectorized execution and full SQL support. :-)

disclaimer: i work with the author at motherduck and we make a data warehouse powered by duckdb

u/ryguyrg

KarmaCake day231August 17, 2012View Original