Finch: How to calculate pool size/count

I’m trying to figure out how to get the best pool size and count for a connection pool ({scheme, host, port}). Suppose I’m making 1000 req/sec and most requests take less than a second, but 10% of those requests take 10+ seconds. What method do you use to determine pool size and count?

2 Likes

Also, if you know which ones are going to be slow, you can have a separate pool for them.