I'm running a simple python web scraping script within a docker container on Cloud Run, it is invoked from the Cloud Scheduler and gives an error:
File "/usr/local/lib/python3.8/multiprocessing/synchronize.py", line 57, in __init__ sl = self._semlock = _multiprocessing.SemLock( OSError: [Errno 38] Function not implemented
Even though I am running this in docker is there something disabled on Cloud Run that is causing this? Also would python multithreading work on Cloud Run?
I can't seem to see anything about this in the google cloud docs.