Ohad
02/05/2023, 7:53 PM/tmp/airbyte_local/
folder. But, the following asset materialization step fails, complaining the file is missing. However, when I run the Airbyte sync job manually from Airbyte UI it works. According to the error, I am missing io manager, but I'm not sure what kind I should add and where. Also, why it would require to use io manager in this case?ben
02/08/2023, 4:24 PMload_assets_from_airbyte_instance
produces a list of assets, so no need to wrap it in attendance_shell_asset
attendance_shell_source_asset = …
attendance_shell_asset = load_assets_from_airbyte_instance(...)
Ohad
02/09/2023, 12:38 AMben
02/09/2023, 1:21 AMbuild_airbyte_assets
API instead of load_assets_from_airbyte_instance
, you can specify a list of upstream_assets
Ohad
02/09/2023, 2:23 AMload_assets_from_airbyte_instance
?ben
02/09/2023, 4:21 PMOhad
02/10/2023, 8:07 PMbuild_airbyte_assets
, but I can't figure out how to add the input for the upstream_assets
? The requirement is Set[AssetKey]
, but it's unclear what this should include? Also, according to the docs, I think I need to also have normalization_table
included, but not sure how. The screenshot is just one of the many intents I made to add the upstream asset.ben
02/13/2023, 9:32 PMextractStudentsAttendance
, which in this case is just the string representation of the function name: upstream_assets={AssetKey("extractStudentsAttendance")}
normalization_table
can just be empty in this caseOhad
02/13/2023, 11:46 PMben
02/13/2023, 11:47 PMattendance_shell_asset
?Ohad
02/13/2023, 11:48 PMben
02/13/2023, 11:49 PM*
in front of attendance_shell_asset
here, since with_resources
returns a listOhad
02/13/2023, 11:56 PMben
02/13/2023, 11:59 PMOhad
02/14/2023, 12:05 AMben
02/14/2023, 12:09 AMsrc_webattend_attendance
, like the following - are you not seeing that?Ohad
02/14/2023, 12:11 AMben
02/14/2023, 12:13 AMOhad
02/14/2023, 12:14 AMben
02/14/2023, 12:14 AMasset_key_prefix=["sentral_sources"]
"sentral_sources"
prefix, you can see that hereOhad
02/14/2023, 12:15 AMben
02/14/2023, 12:20 AM