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

Matt Menzenski

08/03/2022, 6:45 PM
Can a job get the Run ID of its own in-progress run?
🤖 1
o

owen

08/03/2022, 6:53 PM
inside an op, you can do
Copy code
@op
def my_op(context):
    run_id = context.run_id
m

Matt Menzenski

08/03/2022, 6:54 PM
ah, that’s perfect, thank you
🎉 1
2 Views