Is there a way I can submit dagster run programmatically without using dagit graphQL?
dagster_instance = DagsterInstance.get()
dagster_instance.submit_run(
pipeline_run.run_id,
workspace=graphene_info.context
)
Basically I want to use above code to submit a new run, but I am unable to figure out how to get the pipeline_run and workspace. Also, I am not looking to use Dagit GraphQL APIs.
If there is any other way as well, please suggest.
Appreciate your time and help.