Vincent Chéry
01/25/2022, 11:07 AMwith Flow("my-flow") as f:
a = make_a()
b = make_b()
c = a + b
• Do make_a
and make_b
need to be tasks or can they be regular functions ?
• In particular, when using builtin functions (for instance, datetime.utcnow()
), can we use it directly or must we wrap it in a task ?
• Is c = a + b
allowed ?
Thanks a lot !Anna Geller
flow.visualize()
- this will give you a DAG visualizationVincent Chéry
01/25/2022, 12:40 PM