Linear scaling with large site memberships of externally-provided users

Description

Although performance made large strides between Sakai 2.4.x and 2.5.x, we still find that large course sites can exhibit unsatisfactory initial response times. For example, an instructor in charge of a site with 700 students will have to wait about 25 seconds for the "Site Info" page to load the first time.

By far the single biggest chunk of time is spent on 700 calls to the UserDirectoryService "getUserByEid" method, one for each enrollment record, which translates to 2100 DB queries:

1. Get set of Enrollment records from Course Management. (One query which returns ~700 EID fields.)

2. For each Enrollment record, get the student's user record (basically the UUID, name, and email) by calling UserDirectoryService "getUserByEid(studentEid)".

3. Each one of those calls does a query to find the UUID corresponding to the EID, another query to try to find the user data in Sakai's local user table (this will fail except for guest accounts), and then finally calls our UserDirectoryProvider which uses the EID to do another query against our externally-provided user tables.

All the tables are indexed and cached well enough, and so the only way to reduce the time is to stop making so many queries.

Attachments

4
  • 24 Mar 2010, 06:05 AM
  • 05 Sep 2008, 03:08 PM
  • 05 Sep 2008, 02:59 PM
  • 05 Sep 2008, 02:59 PM

Activity

Former user March 24, 2010 at 6:06 AM

I also added a patch for the matrix tool from the OSP project. To display a list of users it calls getUser() multiple times instead of a single call to getUsers().

The patch was created on 2.5.3

Jean-François Lévêque January 19, 2010 at 1:04 AM

Only in local implementions, AFAICT. You could ask Ray at Berkeley or Matthew at UMich for details.

Former user January 18, 2010 at 9:17 AM

Has this been merged with 2.5.x yet? That would be great!

Jean-François Lévêque December 10, 2008 at 1:26 AM

Could you provide a 2.5.x back-port patch, Ray?

Merge into 2.6.x isn't requested yet but may follow soon.

May I request a 2.5.x maintenance merge?

Zhen Qian December 9, 2008 at 9:33 AM

fixed in r55065.

Individual UserDirectoryService getUserByEid call should be removed from the participant list view.

Thank,

  • Zhen

Fixed

Details

Priority

Affects versions

Fix versions

Assignee

Reporter

Created August 18, 2008 at 9:56 AM
Updated March 24, 2010 at 6:06 AM
Resolved December 9, 2008 at 9:33 AM

Flag notifications