Hi, I have been multithreading a backend process (Python) doing the following :
- multiple external API calls (not Supabase)
- upload 1 file per thread (max 1500Ko but mostly 200 to 500Ko) to Supabase storage
The multithreading is not that hard :
- concurrency = 4
- request per second = 5
It seems to fail randomly, I ran multiple batches of 44 threads, sometimes 13 are ok, sometimes 33 are ok, and sometimes 0.
The only return from server that I have is : err=RemoteProtocolError('Server disconnected')
I guess a reserve proxy is handling entry quotas but I cannot find the official limits.
I am still on free tier as my usage is very limited (see screenshot).
What are the official limits on Supabase Storage calls ?