I was using depends_on_past
with Airflow. I'm now using Dagster, with software-defined assets, and I was told that the way to get similar functionality is with build_asset_reconciliation_sensor
and a daily-partitioned asset where each partition depends on past partitions of itself. How do I write a such an asset?
I tried creating a daily-partitioned asset, but I wasn't sure how to make it depend on earlier partitions of itself