Ignasi Mañé
05/22/2024, 7:49 AMMerel
05/22/2024, 8:05 AMIgnasi Mañé
05/22/2024, 9:15 AMMerel
05/22/2024, 9:25 AMParallelRunner
should still run whatever pipeline you've generated.Nok Lam Chan
05/22/2024, 9:31 AMNok Lam Chan
05/22/2024, 9:32 AMIgnasi Mañé
05/22/2024, 10:34 AMdays = list(range(1, settings.value))
pool = multiprocessing.Pool(5)
pool.map(run_algorithm, days)
pool.close()
I could run the same code within one kedro node I guess, but i thought that may be is better to use kedro features to manage parallelism instead.Nok Lam Chan
05/22/2024, 10:42 AMIgnasi Mañé
05/22/2024, 4:18 PM