Rob Douglas
09/21/2021, 6:06 PMFlow
(runs daily on a Schedule
with a CronClock
). I'd like to generate names of a particular format for the runs. (Rather than the defaulted random word-pair names). Is that something I can do programmatically as part of the Flow
object? Can I use a callable to some parameter of the flow to determine run names? Any help is appreciated!Kevin Kho
09/21/2021, 6:31 PMRenameFlowRun
task inside the flow to change the name after it’s created. The supplying of names is on the roadmap thoughRob Douglas
09/21/2021, 6:37 PMKevin Weiler
09/21/2021, 6:39 PMKevin Kho
09/21/2021, 6:41 PMprefect.context.get("flow_run_id")
Kevin Weiler
09/21/2021, 6:42 PMKevin Kho
09/21/2021, 6:43 PMKevin Weiler
09/21/2021, 6:43 PMKevin Kho
09/21/2021, 6:44 PMKevin Weiler
11/04/2021, 4:38 PMThe supplying of names is on the roadmap though
Kevin Kho
11/04/2021, 4:41 PMAnna Geller
11/04/2021, 4:42 PMKevin Kho
11/04/2021, 4:45 PMRenameFlowRun().run()
inside your Flow state handler.