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

Marco

01/06/2023, 5:28 PM
Hello, how can I access backtest run id and tags from within the OpExecutionContext?
dagster bot responded by community 1
z

Zachary Bluhm

01/06/2023, 6:34 PM
Hi, you could do the following:
backfill_id = context.get_tag("dagster/backfill")
Where context is passed into the op function as:
context: OpExecutionContext
3 Views