Bojan
01/26/2023, 11:24 AM"message" : "Completed extracting records for table: public.accounting_attributes. Total rows extracted: 0. Finished extraction for 4 out of 160 tables"
log on dagster:
dagster._core.errors.DagsterStepOutputNotFoundError: Core compute for op "fivetran_sync_foo_id did not return an output for non-optional output "public_table_name_bar"
yuhan
01/27/2023, 5:41 PMben
01/27/2023, 6:06 PMBojan
01/30/2023, 9:12 AMdb = build_fivetran_assets(
connector_id="sensibly_censor",
asset_key_prefix=["fivetran", "snowflake", "db"],
destination_tables=[
"public.foo",
"public.baz",
"bar.boo",
],
)
dagster._core.errors.DagsterStepOutputNotFoundError: Core compute for op "fivetran_sync_sensibly_censor" did not return an output for non-optional output "fivetran_snowflake_db_public_foo"
ben
01/30/2023, 10:49 PMbuild_fivetran_assets
which will force Dagster to create an asset materialization for all tables listed in destination_tables
so that public.foo
will still be outputBojan
01/31/2023, 12:46 PMben
02/01/2023, 6:58 PMBojan
02/01/2023, 7:22 PM