grouper-users - Re: [grouper-users] [Ext] Re: pspng ldapSearchResultPagingSize doesn't seem to do anything
Subject: Grouper Users - Open Discussion List
List archive
Re: [grouper-users] [Ext] Re: pspng ldapSearchResultPagingSize doesn't seem to do anything
Chronological Thread
- From: Shilen Patel <>
- To: "Crawford, Jeffrey" <>
- Cc: Daniel Burtenshaw <>, Grouper-Users <>, Jeffrey Williams <>, Greg Haverkamp <>
- Subject: Re: [grouper-users] [Ext] Re: pspng ldapSearchResultPagingSize doesn't seem to do anything
- Date: Wed, 4 Sep 2019 15:31:22 +0000
- Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=duke.edu; dmarc=pass action=none header.from=duke.edu; dkim=pass header.d=duke.edu; arc=none
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=OHjUHsY/rshmUiTI9mKBRhnyV6OPQEiZ+Ddl2Qi10Qk=; b=oBS3CV06Lu2bvIAYkdh4d9R0fCr7XY9CZYg6aLwkaGvgtCJc7TCNlD2qGziIbal/CSUpuQye8LsyodzfuoMixHawPsgjW9wuU2XhzPMmZbYoF0iLQw14txfJJLzg+3W0QD1/Pa6cFT9Cbr1ifC9r8ccNTV/Lj0BhLzXbCebdD/rGgLPouUbOD4NaqbxQ1/gTVJiup93Id/FQJTxiU2gU0+TH49kShYaQ6TlxUNFiqLdZoXPWSL9Zp7Z3TI7hq4WQ0PbMNhZVcqYGBUDbyrgLHlQcvlMSGveogOi+CzWORsUnVW3JG8ce4mmPA1o3+JpLjRR+DNz5rzun/TMA4QGjxQ==
- Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=IXWtVAX5r8kbniUYiRCilwj9+eldDboIJhDhPJeK1cM55xhlQEPTbNIvEyfaPrW43ZszYPRRbX7cBK4gWQNI45/NujtDCYdhgHV8S75YL0MwxkRTPYiCVOGMvdvQp6q94TbhQ8KrLErUETkZcYLudzTmqqp7UeL+C3SS5A2wXGpdIKa4cOiFoefZJLDnmYugYjIdsfenyupSysRi5HDv0LK7+/jXJs1v6NALEF3/T9AtP/AWaCsi3/5iK6NL6N0L3TzagQ8zHjlg7FnBA/EuFHDHeHxWwTyjsc2ZLpvcPpej7CLPfmHCHc8yytD+p9awP61zf4AmFBA3V7mSDPOBGQ==
My example was using an LDAP – maxPageSize is supported there. Though I noticed a possible problem but perhaps not the problem you’re seeing.
When using LDAP with a maxPageSize (in subject.properties) of 10 and I search for “joh”, three queries are sent to my LDAP server.
The first is a findById, which would be based on the query you have configured for subjectApi.source.example.search.searchSubject.param.filter.value. But the UI appends an asterisk to the query (joh*) and doesn’t use a size limit here. So the LDAP server may return everyone with a NetID starting with “joh”, which could be more than the page size. However, since a findById isn’t supposed to return multiple results, an exception is thrown and the results are basically ignored.
The second is a findPage, which does set the size limit correctly and only returns maxPage + 1 results. And this is what appears in the search results in the UI. And for me, this part is working correctly. But it sounds like you’re saying that you’re getting all 14k results here instead of 100? Do you have access to your ldap logs in case that explains what is happening there? And looking at a sanitized copy of subject.properties might help too. I’m assuming you’ve also verified that your subject.properties is the same between gsh, ui, etc.
Thanks!
- Shilen
From:
"Crawford, Jeffrey" <>
I’m pretty much getting the entire list back, something like 14k when I search for “lee”. However this is on the LDAP config, I’m noticing the two elements only show up on the JDBC config and not on the LDAP config example, is it just not supported there?
Jeffrey C.
From:
Shilen Patel <>
In my subject.properties, I set the following:
subjectApi.source.example.param.maxPageSize.value = 10
(my source id was “example”)
Then when I go to the UI and click on Add Members and type in a value (e.g. “joh”), it would typically return hundreds of results but the search box only shows 11 (1 more than the page size).
The ldap logs show this as well.
[04/Sep/2019:09:05:14 -0400] conn=32305 op=10 RESULT err=4 tag=101 nentries=11 etime=0
I’m curious what you’re seeing?
Thanks!
- Shilen
From:
<> on behalf of "Crawford, Jeffrey" <>
I’ve gotten further, but there seems to be multiple places to configure these things. I got the main paging setup in grouper-loader.properties by using: ldap.personLdap.pagedResultsSize = 1000
However I want to limit the search to < 1000 entries in the search box, I’ve tried the following in the subject.properties file but it’s not working: subjectApi.source.ldap.param.maxResults.value = 1000 subjectApi.source.ldap.param.maxPageSize.value = 100
Should the above work? Jeffrey C.
From:
<> on behalf of "Crawford, Jeffrey" <>
So this is what I’ve done now, but still paging only 100. The LDAP loader isn’t paging at all. I also tried “batchSize” since it was one of the examples but that didn’t work either.
ldap.personLdap.url = ldaps://ldap.iam.ucla.edu:636 ldap.personLdap.user = uid=svcacct, ou=edimi consumers, dc=edtest, dc=ucla, dc=edu ldap.personLdap.pass = /path/to/encryptedLDAP.pass ldap.personLdap.tls = false ldap.personLdap.searchResultPagingEnabled = true ldap.personLdap.searchResultPagingSize = 1000
From:
Greg Haverkamp <>
I assume when you put it in your personLdap you changed it from ldapSearchResultPagingSize to just searchResultPagingSize?
The former, as I noted, appears nowhere in the code. (You can go to GitHub and search to confirm.) The latter does, with the code I quoted sending what should be read from your ldap config, or sending the default if it’s not there.
I think the documentation is simply wrong. If you find that you can make it work, you might correct it. :)
Greg
On Thu, Aug 29, 2019 at 1:13 PM Crawford, Jeffrey <> wrote:
|
- Re: [grouper-users] [Ext] Re: pspng ldapSearchResultPagingSize doesn't seem to do anything, Crawford, Jeffrey, 09/03/2019
- Re: [grouper-users] [Ext] Re: pspng ldapSearchResultPagingSize doesn't seem to do anything, Shilen Patel, 09/04/2019
- Re: [grouper-users] [Ext] Re: pspng ldapSearchResultPagingSize doesn't seem to do anything, Crawford, Jeffrey, 09/04/2019
- Re: [grouper-users] [Ext] Re: pspng ldapSearchResultPagingSize doesn't seem to do anything, Shilen Patel, 09/04/2019
- Re: [grouper-users] [Ext] Re: pspng ldapSearchResultPagingSize doesn't seem to do anything, Crawford, Jeffrey, 09/05/2019
- Re: [grouper-users] [Ext] Re: pspng ldapSearchResultPagingSize doesn't seem to do anything, Shilen Patel, 09/04/2019
- Re: [grouper-users] [Ext] Re: pspng ldapSearchResultPagingSize doesn't seem to do anything, Crawford, Jeffrey, 09/04/2019
- Re: [grouper-users] [Ext] Re: pspng ldapSearchResultPagingSize doesn't seem to do anything, Shilen Patel, 09/04/2019
Archive powered by MHonArc 2.6.19.