⌘+k ctrl+k
0.9
Search Shortcut cmd + k | ctrl + k
HTTP Parquet Import

To load a Parquet file over HTTP(S), the httpfs extension is required. This can be installed using the INSTALL SQL command. This only needs to be run once.

INSTALL httpfs;

To load the httpfs extension for usage, use the LOAD SQL command:

LOAD httpfs;

After the httpfs extension is set up, Parquet files can be read over http(s) using the following command:

SELECT * FROM read_parquet('https://<domain>/path/to/file.parquet');