-
Ah, i remember now. Trawling did work, and nonpaged worked, but both hit out of memory errors due to the amount of the information. Hince the reason for the async search which creates the xml file as it does the search in chunks. everything worked great until i went to perform the action in a very very huge OU. seems anything over 250,000 objects in the OU caused the MA to chunk with the out of...
2009-10-05 13:19:26 UTC by donaldgullett
-
The trawling mode should try cn=a\*, cn=b\*,cn=c\*.
If it's still too big, it should try cn=aa\*, cn=ab\*, cn=ac\*.
If still too big, cn=aaa \*, cn=aab\*.
It think you get the idea.
If it does not work then it's a bug.
2009-10-05 12:19:39 UTC by fvandelanoitte
-
I Tried Trawling But there is still to many objects per query. I Added a Section calld "ASYNC" which does a ASYNC Search which works for me (only takes 10-15 minutes to pull every object). Our naming scheme does have it seperated into "A", "B", "C" users, but that is still extremly large.
2009-10-05 11:51:50 UTC by donaldgullett
-
Try setting pagedSearch to "TRAWLING".
It should segment the search into subsearches (cn=a\*, cn=b\*, cn=c\*,...)
2009-10-05 08:33:53 UTC by fvandelanoitte
-
Using Modify Time Stamp Attribute with eDirectory, you have to change the ".0Z" to "Z" in the code to support a delta search. Suggest Configuration Item to change this part.
2009-10-04 16:46:21 UTC by donaldgullett
-
I would like to suggest a implementation of "ASYNC" added to the paged search which i have the code for. This runs the ldap query as a Asyncronous query which worked really well on large directories. With a OU of 500,000+ users the query completed in less then 15 minutes and started the import of the XML file. Edirectory does not support paged searches through the suggested OID.
2009-10-04 16:43:40 UTC by donaldgullett
-
I would like to suggest a implementation of "ASYNC" added to the paged search which i have the code for. This runs the ldap query as a Asyncronous query which worked really well on large directories. With a OU of 500,000+ users the query completed in less then 15 minutes and started the import of the XML file.
2009-10-04 16:41:00 UTC by donaldgullett
-
The query during the delta import adds a ".0z" to modifytimestamp for delta import, I had to edit the code to remove the ".0".
2009-10-03 16:45:12 UTC by donaldgullett
-
Forgot to add. During the full import, it will attempt to read all information into memory and throw an exception out-of memory.
2009-10-03 16:42:32 UTC by donaldgullett
-
eDirectory doesnt support pages searches. 500,000 for example.
2009-10-03 16:40:53 UTC by donaldgullett