sbarnoud

Results 25 comments of sbarnoud

I use actually DuckDB and its Azure extension for that. It works like a charm, and brings you the full SQL semantics on your Parquet. however simple preview stills an...

@craxal, to read a parquet file, you have to: 1. First read the footer (the footer length is in the 8 last byte of the file, with a "magic") 2....

DuckDB is a C++ library running on Windows (and Linux, ...) that you can integrate in any application. It comes with the full SQL semantic on Parquet files. With the...

DuckDB is a C++ library running on Windows (and Linux, ...) that you can integrate in any application. It comes with the full SQL semantic on Parquet files. With the...

@craxal DuckDB solve it exactly as I have already explained. DuckDB knows the structure of Parquet, read the 8 last bytes first to get the offset of the footer, then...