I wonder how this relates to Mother Duck ( https://motherduck.com/ )? They do „DuckDB-powered data warehousing“ but predate this substantially.
DuckLake is an integrated data lake and catalog format
91–100 of 114 posts
Re: DuckLake is an integrated data lake and catalog format
#92Earlier quoted context omitted.
But I want a file per range! I’m already writing out an entire chunk of rows, and that chunk is a good size for a Parquet file, and that chunk doesn’t overlap the previous chunk. Sure, metadata in the Parquet file handles this, but a query planner has to read that metadata, whereas a sensible way to stick the metadata in the file path would allow avoiding reading the file at all.
I have the same gripe. You want a canonical standard that's like "hive partitioning" but defines the range [val1, val2) as column=val1_val2. It's a trivial addition on top of Parquet.
Re: DuckLake is an integrated data lake and catalog format
#93Earlier quoted context omitted.
Quite a bummer, particularly because the main selling point is that it can be utilized with any SQL database (iiuc).
If I understand the Manifesto correctly, the metadata db can be any SQL database but the client needs to be DuckDB + DuckLake extension no ?
Re: DuckLake is an integrated data lake and catalog format
#94How will DuckLake work with other Iceberg clients - like Python (Polars), Spark, Flink, etc? Do you need to put a REST API in front of it this duckdb instance to make it an Iceberg Catalog?
Re: DuckLake is an integrated data lake and catalog format
#95I wonder how this relates to Mother Duck ( https://motherduck.com/ )? They do „DuckDB-powered data warehousing“ but predate this substantially.
Motherduck is hosting duckdb in cloud. DuckLake is a much more open system. Ducklake you can build petabyte scale warehouse with multiple readers and writer instances, all transactional on your s3, on your ec2 instances. Motherduck has limitations like only one writer instance. Read replicas can be 1m behind (not transactional). Having different instances concurrently writing to different tables is not possible. Duck…
Re: DuckLake is an integrated data lake and catalog format
#96I’m building a poor man’s datalake at work, basically putting parquet files in blob storage using deltalake-rs’ python bindings and duck db for querying. However, I constantly run in to problems with concurrent writes. I have a cloud function triggered ever x minutes to pull data from API and that’s fine. But if I need to run a backfill I risk that that process will run at the same time as the timer triggered functio…
Add a randomly chosen suffix to your filenames?
Re: DuckLake is an integrated data lake and catalog format
#97I’m building a poor man’s datalake at work, basically putting parquet files in blob storage using deltalake-rs’ python bindings and duck db for querying. However, I constantly run in to problems with concurrent writes. I have a cloud function triggered ever x minutes to pull data from API and that’s fine. But if I need to run a backfill I risk that that process will run at the same time as the timer triggered functio…
Take a lease on the json file before you attempt the write and queue writes that way
Re: DuckLake is an integrated data lake and catalog format
#98Existing Lakehouse systems like Iceberg store crucial table information (like schema and file lists) as many small "metadata files" in cloud object storage (like S3). Accessing these files requires numerous network calls, making operations like query planning and updating tables inefficient and prone to conflicts. DuckLake solves this by putting all that metadata into a fast, transactional SQL database, using a single query to get what's needed, which is much quicker and more reliable.
Re: DuckLake is an integrated data lake and catalog format
#99Earlier quoted context omitted.
Motherduck is hosting duckdb in cloud. DuckLake is a much more open system. Ducklake you can build petabyte scale warehouse with multiple readers and writer instances, all transactional on your s3, on your ec2 instances. Motherduck has limitations like only one writer instance. Read replicas can be 1m behind (not transactional). Having different instances concurrently writing to different tables is not possible. Duck…
Just wondering does DuckLake utilizing Open Table Formats (OTFs) since I don't see it's mentioned anywhere in the website?
Re: DuckLake is an integrated data lake and catalog format
#100I have an personal pet peeve about Parquet that is solved, incompatibly, by basically every "data lake / lakehouse" layer on top, and I'd love to see it become compatible: ranged partitioning. I have an application which ought to be a near-perfect match for Parquet. I have a source of timestamped data (basically a time series, except that the intervals might not be evenly spaced -- think log files). A row is a timest…