For the complete documentation index, see llms.txt. This page is also available as Markdown.

File

File Data Connector Documentation

The File Data Connector enables federated SQL queries on files stored by locally accessible filesystems. It supports querying individual files or entire directories, where all child files within the directory will be loaded and queried.

File formats are specified using the file_format parameter, as described in Object Store File Formats.

Example spicepod.yml

datasets:
  - from: file://path/to/customer.parquet
    name: customer
    params:
      file_format: parquet

Configuration

from

The from field for the File connector takes the form file://path where path is the path to the file to read from. See the examples below for examples of relative and absolute paths

name

The dataset name. This will be used as the table name within Spice.

Example:

datasets:
  - from: file://path/to/customer.parquet
    name: cool_dataset
    params: ...

params

Parameter name
Description

file_format

Specifies the data file format. Required if the format cannot be inferred from the from path. Refer to Object Store File Formats for details.

hive_partitioning_enabled

Enable partitioning using hive-style partitioning from the folder structure. Defaults to false

For CSV-specific parameters, see CSV Parameters.

Trigger data refresh on file change

In addition to standard Data Refresh, a data refresh can also be triggered when the source file is modified. The File Data Connector uses a file system watcher to be notified the file has changed. The file watcher is disabled by default and can be enabled by setting the file_watcher parameter to enabled in the acceleration parameters.

When the file is modified, the acceleration will be refreshed and will include the latest data.

Types

Refer to Object Store Data Types for data type mapping from object store files to arrow data type.

Examples

Absolute path

In this example, path is an absolute path to the file on the filesystem.

Relative path

In this example, the path is relative to the directory where the spicepod.yaml is located.

Last updated

Was this helpful?