How do I configure the DuckDB IO manager to load from a custom schema? #17850
-
Beta Was this translation helpful? Give feedback.
Answered by
jamiedemaria
Nov 9, 2023
Replies: 2 comments 4 replies
-
You can set the schema for duckdb on the IO manager configuration defs = Definitions(
assets=[...],
resources={
"io_manager": DuckDBPandasIOManager(schema="dev", ...)
}
) |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
rexledesma
-
You could also set the schema for the dbt assets via metadata. You want to have the metadata dict contain |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can set the schema for duckdb on the IO manager configuration