Comment on Differential storage: A key building block for a DuckDB-based data warehouseComments−conradev2yI’m curious how their snapshotting and object storage implementation stacks up against SQLite’s offering:https://sqlite.org/cloudsqlite/doc/trunk/www/index.wikiSQLite’s object-per-page approach means you can fetch portions of the database as needed from a bucket, whereas the DuckDB snapshotting approach seems to imply that you’d need to fetch the whole database.
Comments
I’m curious how their snapshotting and object storage implementation stacks up against SQLite’s offering:
https://sqlite.org/cloudsqlite/doc/trunk/www/index.wiki
SQLite’s object-per-page approach means you can fetch portions of the database as needed from a bucket, whereas the DuckDB snapshotting approach seems to imply that you’d need to fetch the whole database.