Hi Friends,
We are stuck with a issue related to multiprocessing. We tried to use
multiple solutions like below.
1. from multiprocessing.dummy import Pool
pool = Pool(2)
pool.apply_async(call_api,xxxx)
2. import concurrent.futures
import requests
pool = concurrent.futures.ThreadPoolExecutor(max_workers=4)
pool.submit(lambda:requests.post(xxxxxx))
above given both solutions are working in my local system, when when
deploying this functionality is not working, even not getting any error in
logs.
can you please help me to understand, why this is not working and what else
we can use.
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/google-appengine/71b84d91-2bc7-4445-8c46-847a3cbdae8fn%40googlegroups.com.