Hi. I am refactoring. I divided my flows into 3 categories:
• pipelines: Takes input from upstream pipe and feeds downstream pipe. Pipes are tube together with flow.update(pipe_file_reader) , flow.update(pipe_transform) and so on.
• python parametered flows: Takes input such as pandas dataframe through 'Parameter' task. These are for paralelism with create_flow_run.map(flow_name)
• production flows: End product flows
These will be the sub folders of pipelines in my project. Any idea is appreciated!