Upload files
Bring CSV, Parquet, and JSON files into Querio for analysis.
You can upload files directly into Querio without connecting an external database.
Uploaded files are converted to Parquet and stored in the Files/files/ folder. Querio also represents them in a managed datasource called uploads, where you can manage metadata and agent access.
Supported formats
- CSV
- TSV
- Parquet
- JSON
How to upload
- Open the Context tab for your workspace
- Click Datasources
- Click the upload button in the top-right corner
- Drag and drop files into the dialog, or click to browse
- Querio ingests each file and creates a Parquet file named after the original file
Each file appears in the uploads datasource as a catalog table so you and the agent can see its structure and metadata. It is not stored as a table in DuckDB.
Limits
- 100MB per file
- 100MB total per batch
- 10 million rows per file
- 1,024 columns per file
After uploading
Once ingestion is complete, the file appears in the Files/files/ folder and is represented in your Catalog under the uploads datasource. You can query it in an Explore session with the local DuckDB engine using the Parquet file path:
SELECT * FROM "files/your_csv.parquet"If Querio detects that the data structure or column descriptions have drifted from what the catalog says, it will flag this and suggest an update.
Notes
- Only one file can be written to the
uploadsdatasource at a time per workspace. If multiple files are uploaded at once, they are ingested sequentially. - File uploads are available for workspace v2 (fs-mode) workspaces.
Last updated on June 17, 2026