David Gasquez
01/20/2023, 11:33 AMdbt
asset. I've created a simple asset (file on disk) and I want to make dbt
understand that's an upstream requirements. I'm trying to do it without messing with PandasIO Manager. Is there something I might be missing?owen
01/20/2023, 6:59 PMAssetKey(["main", "hits"])
for the source in your dbt project (i.e., the main / hits
that you see in that screenshot), so you'll want to make sure your python asset matches up with that name. One way to do that would be to change your asset decorator to
@asset(key_prefix="main")
def hits():
...
David Gasquez
01/20/2023, 7:13 PMowen
01/20/2023, 7:49 PMDavid Gasquez
01/21/2023, 5:56 PM