In the `multi-asset-sensor` , the `context.materia...
# ask-community
a
In the
multi-asset-sensor
, the
context.materialization_records_by_key
method states:
Fetches asset materialization event records for asset_key, with the earliest event first.
Only fetches events after the latest consumed event ID for the given asset key.
I searched the docs for an understanding of the word "consumed" here and it seems that it indicates an asset is considered "consumed" once the sensor has evaluated it. Is that an accurate statement?
c
that is an accurate statement. The sensor holds a cursor on the ongoing log of events, and advances that cursor after each successful iteration.
a
Awesome - Thank you!