Hi friends, what's the `io_manager` that's used w...
# integration-dbt
q
Hi friends, what's the
io_manager
that's used when we
load_assets_from_dbt_project
? I want to be able to use my dbt assets like this
Copy code
@asset
def pull_table_as_dataframe(context, my_dbt_table_one):
     ab = my_dbt_table_one.rename(columns={...})
     ## Now use the ab object for other things
     return whatever
Where
my_dbt_table_one
was loaded using
load_assets_from_dbt_project
. I know I need to configure an
io_manager
for this. Wondering if anyone has used a custom IO manager when loading assets from dbt?
s
You would use the IO manager for your warehouse. So if your data is in snowflake, you'd use the snowflake IO manager