[Answered ]-Can we run multiprocessing Pool in GAE?

2👍

You won’t be able to run multiprocessing on the production servers, but if you are using the remote_api, then you can run your script locally (with multiprocessing) and have each Pool process use communicate with the production server via remote_api calls.

If you need multiprocess style actions actually in server-side code, then the Mapper API is perfect for this task.

Leave a comment