How can I use Multiprocessing in Serverless ?
Hi I am trying to do something somewhat simple
I have a training script in a training loop, and I want a watcher to check in on it at times
It runs fine locally but as soon as I put it in the docker, I get
From the trainer thread, why is this happening ? it looks as if its launching a whole new job and request handler
2 Replies
whats the start command?
what do you mean ? the worker.py ?
I actually got it to run by using threading instead of multiprocessing
for anyone looking for a solution