yes i'm doing normal queries, almost purely nested writes/reads. With timeouts i mean serverless execution timeouts. my db write queries can take up to 6s sometimes is this normal?
i guess it's because i'm having many concurrent requests and supabase allows a pgbouncer with a mere pool size of 15, my queries get queued up and sometimes wont be able to execute if the queue gets too long?
i've pushed my execution limit up to 60s now the errors have reduced drastically but still losing some db entries on the way is rather inaccaptable
i thought about using the supabases rpc() call to stored procedures, since these are http based and better suited for serverless environments until their client library supports nested writes - but then i wouldn't be able to use the beauty of prismas queries 😞