UnboundID LDAP SDK - Connection pool operations vs Async

783 Views Asked by At

I'm trying to figure out what is the best way to use UnboundID LDAP SDK in system with high TPS (30k - 50k). Most I have found around internet suggest to use multi-threading together with operation directly on connection pools (link1, link2), for example inside one thread:

SearchResult searchResult = connectionPool.search("dc=example,dc=com", SearchScope.SUB, "(uid=john.doe)");

But it seems to me that for high TPS this is not doable. If latency from LDAP server is to big you would have to create a large number of threads to sustain high TPS. Another approach is to use Async operations but then you loose benefits of connection pool. Any advice is really appreciated (especially from someone who was in similar situation).

0

There are 0 best solutions below