DuckDB, for those who don't know it, has a great extension system, for example it can directly use OLTP databases such as PostgreSQL, MySQL, SQLite, SQL Server; cloud data warehouses/data lakes and big data formats (Iceberg, Delta, Snowflake, Hive, ORC, Parquet, AVRO), other data sources (ODBC), storage (S3), and much much more. https://duckdb.org/docs/current/core_extensions/overview https://duckdb.org/community_ext…
DuckDB – Data power tools for your laptop, now in Clojure (2023)
21–24 of 24 posts
Re: DuckDB – Data power tools for your laptop, now in Clojure (2023)
#22Earlier quoted context omitted.
I’m confused as an old school storage guy. > self-hosted directly on NVMe backed by cheap and limitless object storage. How is that?! NVMe is a protocol for fast PCIE based local storage or NVMe fabric which is PCIe over network. Object storage(in the sense of S3, R2 etc) are usually networked horizontally scaling non posix bucketed storage. They are much much slower because of the network calls.. How would NVMe map…
I'm just guessing but observability is often looking at small slices of hot data and then there's a vast set of cold data that is occasionally needed. Sounds like NVMe is for the hot data cache and object storage is for cold data.
We are using DuckLake with a “lakehouse” architecture for the observability agent.
Re: DuckDB – Data power tools for your laptop, now in Clojure (2023)
#23Why would you need this over just using the jdbc driver?
[...]
> In the last two years, DuckDB improved a lot. Importantly, the C interface now provides a batched system for both inserts and querying, which enables processing very large joins
That's why. Basically JDBC doesn't offer the batched APIs needed to get the same performance.
Re: DuckDB – Data power tools for your laptop, now in Clojure (2023)
#24DuckDB, for those who don't know it, has a great extension system, for example it can directly use OLTP databases such as PostgreSQL, MySQL, SQLite, SQL Server; cloud data warehouses/data lakes and big data formats (Iceberg, Delta, Snowflake, Hive, ORC, Parquet, AVRO), other data sources (ODBC), storage (S3), and much much more. https://duckdb.org/docs/current/core_extensions/overview https://duckdb.org/community_ext…
Nice tip, thanks. I may now make Duck CLI the sole gateway to all the databases I have to use at work.