Chris Evans
10/05/2021, 8:55 PM0.12.11
. Firstly, Dagit seems to detect errors around missing config for ops that are deselected. Secondly, even if a subset of a graph is selected in the Dagit playground, all ops will end up running when execution is launched.
from dagster import graph, op
@op(config_schema={"param": str})
def hello(context):
...
@op(config_schema={"param": str})
def hello2(context):
...
@graph
def test_graph():
hello()
hello2()
test_job = test_graph.to_job()
prha
10/05/2021, 9:02 PMyuhan
10/05/2021, 9:08 PMChris Evans
10/05/2021, 9:11 PMyuhan
10/05/2021, 9:24 PM