| load_parquet | R Documentation |
Validates the URL, loads the azure extension, then registers the dataset
as a VIEW. Use az_conn() first if the connection needs an Azure secret.
Returns conn invisibly — use tbl_parquet() if you want a dplyr::tbl().
load_parquet(conn, url, name, hive_partitioning = FALSE, replace = TRUE)
conn |
A DuckDB connection. |
url |
Character scalar. Azure Blob URL. Supports glob patterns. |
name |
Character scalar. Name to register the view under in DuckDB. |
hive_partitioning |
Logical. Enable Hive partition inference. Default |
replace |
Logical. Replace an existing view. Default |
Invisibly returns conn.
## Not run:
# Requires a live Azure account, credentials, and network access.
conn <- az_conn()
load_parquet(conn, "abfss://container@account/data/*.parquet", name = "events")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.