https://dagster.io/ logo
Title
j

Jesse Myers

02/09/2023, 11:03 PM
hey guys, I'm having trouble with loading assets from airbyte, keep getting this error `resource with key 'airbyte' required by op 'load_airbyte_assets' was not provided`any idea what I'm missing here?
:dagster-bot-responded-by-community: 1
:dagster-bot-resolve: 1
I have the airbyte resource defined and registered with the definitions in my main code entry point
a

Adam Bloom

02/10/2023, 12:18 AM
You shouldn't need to rewrap the resource - you should just be able to use
my_airbyte_resource
in your definitions
there's a detailed example available at https://docs.dagster.io/integrations/airbyte#using-airbyte-with-dagster, if you haven't seen that yet.
j

Jesse Myers

02/10/2023, 12:55 AM
i got it working by scrapping my attempt to use the resource and going with the
load_assets_from_airbyte_instance
function