https://dagster.io/ logo
#ask-community
Title
# ask-community
l

Lindsay S

01/03/2023, 5:28 PM
I guess I could just write in if partition date is before _ do nothing, but I wonder if there is another way
c

claire

01/03/2023, 9:24 PM
Hi Lindsay, there is unfortunately no way to mark a partition as being materialized without just directly materializing the asset. We do have an issue to track this. I would say your best options are to do the "before _ do nothing" change, or to yield your desired materializations separately within a different job i.e.
context.log_event(AssetMaterialization(...))
.
2 Views