Tim Enders
06/08/2022, 9:17 PMZanie
06/08/2022, 9:19 PM.map
operator is also on the roadmap and is currently being designed.Tim Enders
06/08/2022, 9:24 PM.map
and the DaskExecutor
in 1.2... would you recommend trying to rewrite as async, or should I wait until .map
is ready? Full adoption for us is waiting until it is out of beta, I am just trying to work ahead so waiting isn't a big deal.Zanie
06/08/2022, 9:27 PMTim Enders
06/08/2022, 9:33 PMRuntimeError:
An attempt has been made to start a new process before the
current process has finished its bootstrapping phase.
This probably means that you are not using fork to start your
child processes and you have forgotten to use the proper idiom
in the main module:
if __name__ == '__main__':
freeze_support()
...
The "freeze_support()" line can be omitted if the program
is not going to be frozen to produce an executable.
so I must be doing something wrong. Asking in a new threadZanie
06/09/2022, 2:50 PMTim Enders
06/09/2022, 2:53 PM