polars.scan_delta#
- polars.scan_delta(
- source: str,
- *,
- version: int | None = None,
- storage_options: dict[str, Any] | None = None,
- delta_table_options: dict[str, Any] | None = None,
- pyarrow_options: dict[str, Any] | None = None,
Lazily read from a Delta lake table.
- Parameters:
- source
Path or URI to the root of the Delta lake table.
Note: For Local filesystem, absolute and relative paths are supported but for the supported object storages - GCS, Azure and S3 full URI must be provided.
- version
Version of the Delta lake table.
Note: If
version
is not provided, the latest version of delta lake table is read.- storage_options
Extra options for the storage backends supported by
deltalake
. For cloud storages, this may include configurations for authentication etc.More info is available here.
- delta_table_options
Additional keyword arguments while reading a Delta lake Table.
- pyarrow_options
Keyword arguments while converting a Delta lake Table to pyarrow table. Use this parameter when filtering on partitioned columns or to read from a ‘fsspec’ supported filesystem.
- Returns:
- LazyFrame
Examples
Creates a scan for a Delta table from local filesystem. Note: Since version is not provided, the latest version of the delta table is read.
>>> table_path = "/path/to/delta-table/" >>> pl.scan_delta(table_path).collect()
Use the
pyarrow_options
parameter to read only certain partitions.>>> pl.scan_delta( ... table_path, ... pyarrow_options={"partitions": [("year", "=", "2021")]}, ... )
Creates a scan for a specific version of the Delta table from local filesystem. Note: This will fail if the provided version of the delta table does not exist.
>>> pl.scan_delta(table_path, version=1).collect()
Creates a scan for a Delta table from AWS S3. See a list of supported storage options for S3 here.
>>> table_path = "s3://bucket/path/to/delta-table/" >>> storage_options = { ... "AWS_REGION": "eu-central-1", ... "AWS_ACCESS_KEY_ID": "THE_AWS_ACCESS_KEY_ID", ... "AWS_SECRET_ACCESS_KEY": "THE_AWS_SECRET_ACCESS_KEY", ... } >>> pl.scan_delta( ... table_path, storage_options=storage_options ... ).collect()
Creates a scan for a Delta table from Google Cloud storage (GCS). See a list of supported storage options for GCS here.
>>> table_path = "gs://bucket/path/to/delta-table/" >>> storage_options = {"SERVICE_ACCOUNT": "SERVICE_ACCOUNT_JSON_ABSOLUTE_PATH"} >>> pl.scan_delta( ... table_path, storage_options=storage_options ... ).collect()
Creates a scan for a Delta table from Azure. Supported options for Azure are available here.
Following type of table paths are supported,
az://<container>/<path>
adl://<container>/<path>
abfs[s]://<container>/<path>
>>> table_path = "az://container/path/to/delta-table/" >>> storage_options = { ... "AZURE_STORAGE_ACCOUNT_NAME": "AZURE_STORAGE_ACCOUNT_NAME", ... "AZURE_STORAGE_ACCOUNT_KEY": "AZURE_STORAGE_ACCOUNT_KEY", ... } >>> pl.scan_delta( ... table_path, storage_options=storage_options ... ).collect()
Creates a scan for a Delta table with additional delta specific options. In the below example,
without_files
option is used which loads the table without file tracking information.>>> table_path = "/path/to/delta-table/" >>> delta_table_options = {"without_files": True} >>> pl.scan_delta( ... table_path, delta_table_options=delta_table_options ... ).collect()