Based on my experience, it is normal behavior. Behind the scenes, the various client APIs request a UserFeed response containing a max of 100 users. So to get to your ~7000 users, you're actually making at least 70 HTTP requests to Google in series. To speed things up, you could write you own RetrieveAllUsers method using threads or asynchronous callbacks, but it would be tough to know where to start each request, and how to reconcile gaps and overlaps.
Here's more info: http://code.google.com/apis/apps/gdata_provisioning_api_v2.0_reference.html#Results_Pagination On May 2, 8:11 pm, John <[EMAIL PROTECTED]> wrote: > Hi, > > We have around ~7000 accounts created on a test domain. It takes > anywhere from 5 to 10 minutes to retrieve all users from google. Is > this normal behavior ? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Apps APIs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/google-apps-apis?hl=en -~----------~----~----~----~------~----~------~--~---
