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

Son Giang

05/26/2022, 1:21 PM
Hi there, is it possible to get a run record by partition_set or schedule?
🤖 1
s

sean

05/26/2022, 1:24 PM
cc @prha @sandy
p

prha

05/26/2022, 4:01 PM
You can do something like this:
Copy code
schedule_tags = DagsterRun.tags_for_schedule(schedule)
partition_tags = partition_set.tags_for_partition(partition)
instance.get_run_records(filters=RunsFilter(tags=schedule_tags))
👍 1