Hi everyone. I'm using dagster in my testing envir...
# ask-community
a
Hi everyone. I'm using dagster in my testing environment, is there anyway to run
Copy code
JobDefinition.execute_in_process
in a multiprocess mode? or any equivalent for running my test job in multiprocess?
c
If you want to execute via python in multiprocess mode, you can use
execute_pipeline
(a legacy API). You will have to wrap your job definition in a call to
reconstructable
.