Back to Mindsdb

Upload Parquet files to MindsDB

docs/integrations/files/parquet.mdx

26.1.0892 B
Original Source

You can upload Parquet files of any size to MindsDB that runs locally via Docker or pip.

Parquet files are stored in the form of a table inside MindsDB.

Upload files

Follow the steps below to upload a file:

  1. Click on the Add dropdown and choose Upload file.
<p align="center"> </p>
  1. Upload a file and provide a name used to access it within MindsDB.
<p align="center"> </p>
  1. Alternatively, upload a file as a link and provide a name used to access it within MindsDB.
<p align="center"> </p>

Query files

Here is how to query data within MindsDB.

Query for the content of the file uploaded under the name my_file.

sql
SELECT *
FROM files.my_file;