| az_tune | R Documentation |
Sets the Azure performance and transport settings exposed by DuckDB. Each
argument defaults to NULL, which leaves that setting unchanged.
az_tune(
conn,
concurrency = NULL,
chunk_size = NULL,
buffer_size = NULL,
transport = NULL,
metadata_cache = NULL,
context_cache = NULL
)
conn |
A DuckDB connection. |
concurrency |
Optional positive whole number for
|
chunk_size |
Optional positive whole number or character scalar for
|
buffer_size |
Optional positive whole number or character scalar for
|
transport |
Optional character scalar for
|
metadata_cache |
Optional logical scalar for
|
context_cache |
Optional logical scalar for |
Invisibly returns conn.
## Not run:
# Requires a live Azure account, credentials, and network access.
conn <- az_conn()
az_tune(conn, concurrency = 8, metadata_cache = TRUE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.