We are currently moving from an old proprietary directory service to OpenLDAP. Today we are faced with the problem that ldap_search_ext_s or ldapsearch does not return any results at all if the number of records that should have been returned by the current search reaches a certain limit.
Unfortunately, setting the size limit higher in the LDAP server configuration may just postpone the problem, since we have a really large database, and our update mechanism, which starts every morning, must fulfill huge requests.
In the MSDN documentation, I noticed that there is a mechanism for making a search call that will allow me to bypass the size limit. Apparently, this is also indicated in the RFC project of 1996 , but not yet completed (yet)?
In any case, since I do not work in Windows-Box, I should use the OpenLDAP API, which does not seem to provide this mechanism (at least I could not find it on the search page )
Which brings me to my question: do you have an idea what I can do to solve this problem in an elegant way?
Thank you for your help!
source
share