Minakshi
08/31/2020, 4:31 AMfor dataset in dataset_config['datasets']:
print('starting flow for dataset' + dataset['dataset_name'])
flow.run(dataset=dataset['dataset_name']) # runs this flow on its schedule
josh
08/31/2020, 3:09 PM.run
for each dataset individually in its own session or take a look into using the server for deploying multiple flow runs across multiple processes https://docs.prefect.io/orchestration/server/overview.htmlMinakshi
08/31/2020, 7:37 PM