Vishal Sarin
03/23/2022, 7:00 PMdaniel
03/23/2022, 7:04 PMVishal Sarin
03/23/2022, 7:09 PMdaniel
03/23/2022, 7:13 PMVishal Sarin
03/23/2022, 7:15 PMdaniel
03/23/2022, 7:27 PMVishal Sarin
03/23/2022, 7:33 PMdaniel
03/23/2022, 7:37 PMVishal Sarin
03/23/2022, 7:42 PMprha
03/23/2022, 8:18 PMfrom dagster import DagsterInstance, DagsterEventType, EventRecordsFilter, AssetKey
instance = DagsterInstance.get()
cursor = 1498647
event_records = instance.get_event_records(
EventRecordsFilter(
event_type=DagsterEventType.ASSET_MATERIALIZATION,
asset_key=AssetKey("jira_test_seq_issue_recreate_asset_key"),
after_cursor=cursor,
),
ascending=False,
limit=1,
)
I want to see if your storage layer has a materialization for that asset key after the given cursorVishal Sarin
03/23/2022, 8:33 PMprha
03/23/2022, 8:36 PMcursor
to be None
, do you get a value?Vishal Sarin
03/23/2022, 8:41 PMprha
03/23/2022, 9:02 PMVishal Sarin
03/23/2022, 9:05 PMprha
03/23/2022, 9:15 PMevent_log
table? Something that would include that row (with storage_id 1500986
)…Vishal Sarin
03/24/2022, 5:34 AMprha
03/24/2022, 9:20 PMpg_dump
file that contains the event_log
table row with id
values from 1498647
to 1500986
. Also, the debug file from the run e356837c-31ec-44ee-a469-ce73ebca885d
could be useful.VGK
03/28/2022, 10:44 AM