https://dagster.io/ logo
#announcements
Title
# announcements
m

Muthu

03/20/2020, 8:49 AM
hi is there any chance to get the unique pipeline execution id immediately after triggered from python
Copy code
if __name__ == '__main__':
    result = execute_pipeline(hello_cereal_pipeline)
    assert result.success
s

sashank

03/20/2020, 2:35 PM
Hey @Muthu,
execute_pipeline
returns a
PipelineExecutionResult
which has a
run_id
on it. So in your example, you can access
result.run_id
m

Muthu

03/20/2020, 4:28 PM
@sashank yes, but i want to get it while its started running… i can result.run_id only after completion of the execution. also, using run_config i can have the custom run_id, but expected is to get the status of the pipeline async.
2 Views