
Tag: Csv
2 entradas encontradas

DuckDB: File Formats and Performance Optimizations
Lately I’ve been working quite a bit with DuckDB, and one of the things that interests me most is understanding how to optimize performance according to the file format we’re using.
It’s not the same working with Parquet, compressed CSV, or uncompressed CSV. And the performance differences can be dramatic.
Let’s review the key optimizations to keep in mind when working with different file formats in DuckDB.
Parquet: Direct Query or Load First?
DuckDB has advanced Parquet support, including the ability to query Parquet files directly without loading them into the database. But when should you do one or the other?

DuckDB: Formatos de archivo y optimizaciones de rendimiento
Últimamente estoy trabajando bastante con DuckDB, y una de las cosas que más me interesan es entender cómo optimizar el rendimiento según el formato de archivo que estemos usando.
No es lo mismo trabajar con Parquet, con CSV comprimido, o con CSV descomprimido. Y las diferencias de rendimiento pueden ser dramáticas.
Vamos a revisar las optimizaciones clave que hay que tener en cuenta cuando trabajamos con diferentes formatos de archivo en DuckDB.




