I am trying to run multiple getInfo()
at the same time using different threads and I'm getting this error:
WARNING:urllib3.connectionpool:Connection pool is full, discarding connection: earthengine.googleapis.com
From this message and also based on the increase in execution time, I assume the getInfo()
requests are not being processed simultaneously in the different threads.
This was working perfectly a few months ago.
While trying to find a solution, I saw that one alternative is to increase the pool_connections (see this link). But I'm not sure how to implement this in the GEE Python API.