Gabriel Montañola
03/31/2022, 10:44 PMdestination_tables
but I get this after a run.
Solid airbyte_sync_69021 did not fire outputs {'sku_availability', 'raw_product', 'raw_product_packging_variables', 'raw_product_maturation_variables', 'raw_product_provider', 'raw_product_quality_variables', 'selling_price', 'customer', 'coupon', 'sku', 'buying_price'}
These tables do not generate outputs and I don't know why. But others in the same connection work just fine. Any clues about where might the problem be?
I'll provide a code snippet on the thread.from dagster import AssetGroup
from dagster.utils import file_relative_path
from dagster_airbyte import build_airbyte_assets
from dagster_dbt import load_assets_from_dbt_project
from ..resources import dbt_resource, airbyte_resource
DBT_PROJECT_DIR = file_relative_path(__file__, "../../../dbt")
BRAIN_CONNECTION_ID = "xxxxx"
AIRBYTE_DESTINATION_TABLES = [about 20 tables]
airbyte_brain_assets = build_airbyte_assets(
connection_id=BRAIN_CONNECTION_ID,
destination_tables=AIRBYTE_DESTINATION_TABLES,
)
dbt_brain_assets = load_assets_from_dbt_project(
project_dir=DBT_PROJECT_DIR,
profiles_dir=DBT_PROJECT_DIR + "/profile",
select="tag:sources,tag:brain",
)
brain_source_assets = AssetGroup(
airbyte_brain_assets + dbt_brain_assets,
resource_defs={
"airbyte": airbyte_resource,
"dbt": dbt_resource,
},
).build_job("brain_source_assets")
owen
03/31/2022, 10:55 PMGabriel Montañola
03/31/2022, 11:54 PMowen
04/01/2022, 12:24 AMGabriel Montañola
04/01/2022, 12:59 AMMarjori Pomarole
04/01/2022, 11:28 AMowen
04/01/2022, 4:26 PMMarjori Pomarole
04/05/2022, 4:24 PM