Hey folks, is there an option of settings up dagst...
# ask-community
s
Hey folks, is there an option of settings up dagster retries for a pipeline to automatically be re-executed on error? Similar to this article for jobs
j
Hey @Sheya Bernstein are you referring to pipeline as in the pre-op/graph/job concept of pipeline? or something else?
s
Hey Jamie, I'm referring to a pipeline comprised of a graph of ops
j
ok - and you’re directly running the graph? along the lines of
Copy code
@op 
def my_op():
   return 1

@graph
def my_graph():
    my_op()

my_graph.execute_in_process()
or adding the graph to your repository like
Copy code
@repository 
def my_repo():
    return [my_graph]
I believe that automatically run retries might work directly on the graph. if that’s not the behavior you see, let me know! (any error messaging would be helpful too)
s
I'm adding the graph to the repository
j
ok. as far as i know it might still work. have you tried it and not seeing the retries?