-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Question] Best Practices for changing DuckDB Settings #165
Comments
Thanks, Ben. I'm curious, what does Do we only need to set options? Should duckplyr support an R option that set these duckdb options at connect? |
Setting I am a novice DuckDB / duckplyr user so I am not sure that I can provide a very informed recommendation on the second point. I personally only have a need to be able to set DuckDB options, and it would be very helpful for me to be able to set through R so that they are applied at connect, as you suggest. |
Thanks, Ben. I'd say that for now, it's fine to use the unexported function while we're collecting use cases. I see there should be a better API for this at some point. |
Fantastic, thank you for your help! |
@beniaminogreen thanks for your tip.
|
Hi all, thanks for developing such a fantastic package!
I frequently have to change configuration settings for DuckDB in order to get my queries to run, and am writing to ask: is there an established best practice for configuring DuckDB using
duckplyr
? So far, I have been changing the configuration settings using the DBI interface as follows:I'm sure that this isn't ideal as it relied on using an unexported function,
get_default_duckdb_connection
. I have also tried using the.duckdbrc
file, but I was not confident that the settings were being properly applied (and it seemed less ergonomic to me). Is there a recommended way to change DuckDB settings usingduckplyr
?Best, and thanks for your help,
Ben
The text was updated successfully, but these errors were encountered: