Format Tables
When you connect to object storage, the data in it isn't automatically queryable. You need to format files or folders as tables so that Dremio can query them with SQL. This applies to raw file formats like Parquet, JSON, CSV, and Excel, as well as Iceberg or Delta Lake tables stored directly in buckets without a catalog.
Supported Table and File Formats
| Format | File Limit |
|---|---|
| Apache Iceberg | Unlimited |
| Delta Lake | Unlimited |
| Excel | 10,000 |
| JSON | 300,000 |
| Parquet | Unlimited |
| Text (delimited) | 300,000 |
| XLS | 10,000 |
All files in a folder must be the same format. The names of files and folders cannot include the following special characters: /, :, [, or ].
Format a File or Folder as a Table
To format a file or folder as a table:
-
On the Datasets page, navigate to the file or folder.
-
Hover over the file or folder and click
. -
In the Dataset Settings dialog, for Format, verify that the correct format has been detected.
-
(Optional) For the Parquet format, select the Ignore other file formats checkbox if desired. If you select this option, Dremio ignores all non-Parquet files in the related folder structure, and the promoted table works as if only Parquet files are in the folder structure.
-
(Optional) For Excel, XLS, and Text (delimited) formats, you can configure the following parameters.
Excel and XLS format:
Parameter Description Extract Field Names Check this box to extract the column names from the first line of the file. Expand Merged Cells Check this box to expand out cells that have been merged in the Excel sheet. Sheet Name Specify the sheet name if there are multiple sheets within the file. Text (delimited) format:
Parameter Description Field Delimiter Select the delimiter in your text file: Comma, Tab, Pipe, or Custom. For Custom, enter the characters used for a delimiter in the text box. Quote Select the character that is used for quotes in your file: Single Quote, Double Quote, or Custom. For Custom, enter the characters used for quotes in the text box. Comment Select the character that is used for comments in your file: Number Sign, Double Slash, or Custom. For Custom, enter the characters used for comments in the text box. Line Delimiter Select the character that is used for a line delimiter in your file: CRLF, LF, or Custom. For Custom, enter the characters used for a line delimiter in the text box. Escape Select the character that is used for escape in your file: Double Quote, Back Quote, Backslash, or Custom. For Custom, enter the characters used to escape in the text box. Extract Field Names Select this option to extract the column names from the first line of the file. Skip First Line Select this option to skip the first line of the file. Trim Column Names Select this option to trim whitespace from the left and right sides of the names of the columns. This option is selected by default. -
Click Save. The parameter values will be auto-detected but can be altered. When you click Save, your table will appear on the Datasets page.
Partitioned Data
The data in files may be partitioned into one or more levels of subfolders, one level for each partition column. In such cases, when you format the data as a table, Dremio appends to the table one column per partition. The data type of the appended columns is varchar.
Examples
Example 1
The dataset orders is partitioned on the column state. Each subfolder is named state=<abbreviation>, where <abbreviation> is the two-letter abbreviation of the name of a US state.
When you format orders as a table, all of the columns from the Parquet files, except state, are included, and Dremio appends the column dir0, which has the data type varchar. The values in that column are state=AK for the rows from the file 0.parquet, state=AL for the rows from the file 1.parquet, state=AR for the rows from the file 2.parquet, and so on.
Example 2
The dataset orders is partitioned on the columns state and zipCode. Each first-level subfolder is named state=<abbreviation>, where <abbreviation> is the two-letter abbreviation of the name of a US state. Each second-level subfolder is named zipCode=<zip code>.
When you format orders as a table, all of the columns from the Parquet files, except state and zipCode, are included, and Dremio appends the columns dir0 and dir1, which both have the data type varchar.
The values in dir0 are state=AK for all rows in which the value in dir1 is zipCode=<zip code in AK>, state=AL for all rows in which the value in dir1 is zipCode=<zip code in AL>, and so on.
The values in dir1 are zipCode=99502 for the rows from 0.parquet, zipCode=99503 for the rows from 1.parquet, and so on.
Partition Inference
Using Enable partition column inference, Dremio also detects the name of the partition column, appends a column that uses that name, detects values in the names of subfolders, and uses those values in the appended column.
Appended columns use the varchar data type.
Enable Partition Column Inference
To enable column inference, activate Enable partition column inference in the Advanced Options of your connection.
- In the Dremio Console under Connections, right-click the connection and select Settings.
- Select Advanced Options.
- Select Enable partition column inference.
- Click Save.
For additional detail, see Amazon S3 or Azure Storage.
When you enable partition column inference, any pre-existing tables from the connection or changes in the source partition schema will require a metadata refresh with the following commands:
SQL ALTER commands to forget and refresh metadataALTER TABLE <dataset_path> FORGET METADATA
ALTER TABLE <dataset_path> REFRESH METADATA
Requirements
Ensure that the names of your subfolders meet these requirements:
- Names must be in the format
column_name=<column_value>.column_name=is a valid input. - Names must meet Dremio's naming conventions for columns.
- Names must be unique within and across directory levels.
- Names must not be present in data files.
- All Parquet files in the dataset must be in leaf subfolders.
Examples
Example 1
The dataset orders is partitioned on the column state. Each subfolder is named state=<abbreviation>, where <abbreviation> is the two-letter abbreviation of the name of a US state.
When you format orders as a table, all of the columns from the Parquet files are included, and Dremio appends the columns dir0 and state, both of which use the varchar data type.
The values in dir0 are state=AK for the rows from the file 0.parquet, state=AL for the rows from the file 1.parquet, state=AR for the rows from the file 2.parquet, and so on.
The values in state are AK for the rows from the file 0.parquet, AL for the rows from the file 1.parquet, AR for the rows from the file 2.parquet, and so on.
Example 2
The dataset orders is partitioned on the columns state and zipCode. Each first-level subfolder is named state=<abbreviation>, where <abbreviation> is the two-letter abbreviation of the name of a US state. Each second-level subfolder is named zipCode=<zip code>.
When you format orders as a table, all of the columns from the Parquet files are included, and Dremio appends the columns dir0, dir1, state, and zipCode, all of which use the varchar data type.
The values in dir0 are state=AK for all rows in which the value in dir1 is zipCode=<zip code in AK>, state=AL for all rows in which the value in dir1 is zipCode=<zip code in AL>, and so on.
The values in dir1 are zipCode=99502 for the rows from 0.parquet, zipCode=99503 for the rows from 1.parquet, and so on.
The values in state are AK for all rows in which the value in zipCode is <zip code in AK>, AL for all rows in which the value in zipCode is <zip code in AL>, and so on.
The values in zipCode are 99502 for the rows from 0.parquet, 99503 for the rows from 1.parquet, and so on.