Opened 7 years ago
Last modified 13 months ago
#4245 reopened defect
[PATCH] Tickets are slow with large amount of users and permissions
| Reported by: | ants.aasma@… | Owned by: | cmlenz |
|---|---|---|---|
| Priority: | high | Milestone: | next-minor-0.12.x |
| Component: | general | Version: | devel |
| Severity: | major | Keywords: | performance slow restrict_owner get_users_with_permission |
| Cc: | zach@…, leho@…, ismael@…, mmitar@…, osimons, peter@…, verm@…, ryano@…, dsd@… | ||
| Release Notes: | |||
| API Changes: | |||
Description
TicketSystem?.get_ticket_fields() implements an exremely inefficient algorithm to find users that have a certain permission (O(n2users * perms_per_useravg)). I have added a more efficient function to PermissionSystem? that enables querying users having a specified permission directly. It correctly resolves group memberships and hierarchical permissions.
Attachments (8)
Change History (45)
Changed 7 years ago by ants.aasma@…
comment:1 Changed 7 years ago by cmlenz
- Milestone set to 0.11
- Owner changed from jonas to cmlenz
I'll look into this tomorrow. Candidate for being backported to 0.10-stable.
Changed 6 years ago by ants.aasma@…
Second version of the patch. Using the env.get_known_users() interface to get users.
comment:2 Changed 6 years ago by cmlenz
- Resolution set to fixed
- Status changed from new to closed
Slightly modified patch applied in [4625].
comment:3 Changed 6 years ago by ecarter
- Milestone changed from 0.11 to 0.11.1
- Resolution fixed deleted
- Status changed from closed to reopened
Changed 6 years ago by ants.aasma@…
Diff against the previous implementation to highlight the changes.
comment:4 Changed 6 years ago by ants.aasma@…
Attached a fix that accounts for the group providers. This would be a lot more efficient, if the group providers had an get_group_members method.
This isn't tested, because I don't have a test enviroment set up nor the time to do so. But I figured I'd get the code out there if anyone has.
comment:5 Changed 6 years ago by ants.aasma@…
Already spotted an oops, line 168 in new should read:
implicit_groups[groupname] = set([username])
(missing list brackets from set construction)
comment:6 Changed 4 years ago by cboos
- Keywords restrict_owner get_users_with_permission added
- Priority changed from normal to high
- Severity changed from normal to major
comment:7 Changed 4 years ago by cboos
The above patch fails on the regression test for #4630:
FAIL: Test for regression of http://trac.edgewall.org/ticket/4630 b
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Workspace\src\trac\repos\0.11-stable\trac\ticket\tests\functional.py", line 941, in runTest
self.assertEqual(users, ['admin', 'user'])
AssertionError: [u'a', u'i', u'd', u'admin', u'user', u'm', u'n'] != ['admin', 'user']
comment:8 Changed 4 years ago by zach@…
- Cc zach@… added
comment:9 Changed 4 years ago by fabien
Hi, I also have the same problem with a setup using 1000 users. It's slow when "restrict_owner = true"…
I modified eventually_restrict_owner to not check for permissions (not needed for my config), and now it's much faster, but not as fast as without restrict_owner… Maybe it would help to cache users and permissions ?
comment:10 Changed 4 years ago by Chris Everest <ceverest@…>
In regard to this ticket I am also seeing significant performance decreases using restrict_owner in combination with the PrivateTicket? plugin and a large user base. The main cause of the performance hit is in perms.py.
IPermissionStore.get_user_permissions() is calling 'SELECT username,action FROM permission' against all users in the system. This has caused 1000's of database queries for each page request to display a single ticket.
I have added two levels of caching to reduce this performance issue and provided a patch. Pulling from existing cache logic in DefaultPermissionPolicy?.check_permission() I created new cache logic in PermissionSystem?.get_users_with_permission() and IPermissionStore.get_user_permissions().
The cache in IPermissionStore.get_user_permissions() is the more effective change as it limits the query 'SELECT username,action FROM permission' to one execution and uses the cached results for each additional check of that routine, per page request.
The cache in PermissionSystem?.get_users_with_permission() is not activated as often, but will certianly avoid redundant calls to its subroutines/methods.
In each case, the cache variables are very small and should only survive a single page request, thus uncompromising any security or permissions.
comment:11 Changed 3 years ago by lkraav <leho@…>
- Cc leho@… added
comment:12 Changed 3 years ago by rblank
#9184 was closed as a duplicate, and contains a patch to increase the permission cache duration.
comment:13 Changed 3 years ago by Ismael de Esteban <ismael@…>
#9184 Makes a big improvement when you have many users and restrict_owner option.
We can consider to include that since it has make a big improvement in the instance I use.
comment:14 Changed 3 years ago by Ismael de Esteban <ismael@…>
- Cc ismael@… added
comment:15 Changed 2 years ago by Mitar
- Cc mmitar@… added
comment:16 Changed 2 years ago by anonymous
any solution to this huge problem?
comment:17 Changed 2 years ago by cboos
No.
(answer designed to be as useful as the question…)
For the longer run, see TracDev/Proposals/EvenFinerGrainedPermissions#Performance.
comment:18 follow-ups: ↓ 20 ↓ 26 Changed 21 months ago by osimons
- Cc osimons added
Helping out with a user on IRC, we've done some profiling of requests and looking into what actually takes time on a project with 1800 authenticated users (using the DefaultPermissionStore). In summary - all times should be seen as relative of course:
- ~2.5 seconds = restrict owner false
- ~63 seconds = restrict owner true
- ~14 seconds = restrict owner true, with caching full permissions table by a simple patch that just stores the table after first read and reuses it for any subsequent use (not for production use, but a test to see how much the SQL impacts times in a single process setting)
- ~40 seconds = restrict owner true, using @cached decorator on the get_all_permissions() output (+ invalidate code when granting or revoking permissions). This obviously re-introduces som SQL calls to handle cache status.
Having 1800 users requires creating 1800 permission caches and checking the permission against each one. It it bound to take time. 40 seconds is of course better than 63 seconds, but still too much work involved. 14 seconds would only be attainable if we used something like self.config.touch() to invalidate the cached permissions table across processes…
Further it may well be more useful to cache the actual list made by eventually_restrict_owner() and store it for each ticket. Then we'd need an IPermissionChangeListener interface so that others can listen in on changes and invalidate caches (#3302).
comment:20 in reply to: ↑ 18 Changed 21 months ago by osimons
Replying to osimons:
Further it may well be more useful to cache the actual list made by eventually_restrict_owner() and store it for each ticket. Then we'd need an IPermissionChangeListener interface so that others can listen in on changes and invalidate caches (#3302).
No, that won't be good. Users can be added and removed from that list without an actual permission change - new users could register, sessions purged, or a security policy could change which users are approved. Anything really. So, bad idea.
comment:21 Changed 17 months ago by verm
- Cc verm@… added
I hit this problem tonight.. I spent a couple of hours tracing it back using a 1GB tracefile from python -m trace -t tracd.. It was running 13,000 queries per ticket. This bumped it from taking ~14 seconds per ticket to instantaneous. I'm also running the FlexibleAssignTo plugin which requires restrict_owner to be true in order to work.
If there's a way to make this plugin work without restrict_owner being set then it'll be a great workaround.
comment:22 Changed 17 months ago by verm
To be clear, I'm not asking for any support for the FlexibleAssignTo? plugin I added it in case anyone else was interested in poking around.
comment:23 Changed 16 months ago by Ryan J Ollos <ryano@…>
- Cc ryano@… added
comment:25 Changed 14 months ago by cboos
- Keywords performance added
comment:26 in reply to: ↑ 18 ; follow-up: ↓ 27 Changed 14 months ago by psuter
Replying to osimons:
- ~2.5 seconds = restrict owner false
- ~63 seconds = restrict owner true
- ~40 seconds = restrict owner true, using @cached decorator
I think attachment:T4245-CachePermissionsTable.patch implements the same idea, right?
I tested this on a synthetic Trac environment with 2500 authenticated users, populated in cmd.exe by running this for 15 minutes or so:
for /L %i in (1,1,2500) do (
trac-admin tracenv session add user%i
trac-admin tracenv permission add user%i TICKET_MODIFY
)
- ~1 second = restrict owner false
- ~22 seconds = restrict owner true
- ~3 seconds = restrict owner true, using @cached decorator patch
Any idea why this quite a bit more effective in this synthetic case than in your (presumably real world) scenario?
comment:27 in reply to: ↑ 26 ; follow-up: ↓ 28 Changed 14 months ago by osimons
Replying to psuter:
Replying to osimons:
- ~2.5 seconds = restrict owner false
- ~63 seconds = restrict owner true
- ~40 seconds = restrict owner true, using @cached decorator
I think attachment:T4245-CachePermissionsTable.patch implements the same idea, right?
Looks like it. Basically just caching the "SELECT username, action FROM permission" db query as your patch implements.
- ~1 second = restrict owner false
- ~22 seconds = restrict owner true
- ~3 seconds = restrict owner true, using @cached decorator patch
Any idea why this quite a bit more effective in this synthetic case than in your (presumably real world) scenario?
No idea. I can't find the details of the exchange anymore, and have no real knowledge of how the users system was configured, the plugins added, or the data it contained. Your known data is a better benchmark as I see it.
comment:28 in reply to: ↑ 27 Changed 14 months ago by peter@…
Replying to osimons:
Replying to psuter:
Any idea why this quite a bit more effective in this synthetic case than in your (presumably real world) scenario?
No idea. I can't find the details of the exchange anymore, and have no real knowledge of how the users system was configured, the plugins added, or the data it contained. Your known data is a better benchmark as I see it.
Our exchange was on IRC, I still have the same system running, and I can do more testing if seriously required, although if I'm going to do Trac work right now I'd prefer to focus on the Git plugin. Thanks!
comment:29 Changed 14 months ago by psuter
Hearing about the effect of the patch on real data might be helpful.
Unless anyone can see a problem with the patch, we could also just apply it. I think it will help, it's just not clear how much.
Changed 14 months ago by osimons
My original caching patch - suspiciously similar, but uses a copy of the list instead.
comment:30 Changed 14 months ago by osimons
I found my original patch, it is pretty much like yours - only it uses a copy of the result instead of returning it directly. I suppose that is a precaution that I need not have taken, and may also account for the relative difference in speed between the result sets?
comment:31 Changed 14 months ago by psuter
Hm, one crucial thing that seems missing there is a change to the repeated query in DefaultPermissionStore.get_user_permissions(). Replace that with something like rows = self.get_all_permissions() and it performs just about the same in my test. (~3 seconds) Without that I don't see an improvement at all. (~22 seconds)
(Tested on trunk.)
comment:32 Changed 14 months ago by osimons
Goodie. Then I see no reason not to commit what you have?
comment:33 Changed 14 months ago by psuter
Committed in [11032].
comment:34 Changed 14 months ago by rblank
Not sure if this would gain much, but you could even simplify the query:
return [(username, action) for username, action in self.env.db_query("SELECT username, action FROM permission")]
by substituting:
return self.env.db_query("SELECT username, action FROM permission")
ConnectionWrapper.execute() (which is called by env.db_query()) already returns a list of all rows.
comment:35 Changed 13 months ago by psuter
attachment:profile.txt contains some a request profiling results. If I'm reading this right:
- restrict_owner = true, no caching: ~70 seconds
- restrict_owner = true, caching: ~2.2 seconds
- restrict_owner = false: ~1 second
In case 1 time is mostly spent querying SQL in get_user_permissions, as we already knew. In both case 2 and 3 most time seems to be spent in Genshi. I'm not sure where the additional ~1.2 seconds in case 2 now come from. Possibly mostly from Genshi processing the 2500 user drop-down options?
Replying to rblank:
Not sure if this would gain much, but you could even simplify the query:
It makes virtually no difference (as this is cached?) but simplifying code is always good. :)
comment:36 follow-up: ↓ 37 Changed 13 months ago by osimons
Out of curiosity, could you check the status of the Genshi speedups on your test setup? How do the numbers compare depending on speedups availability? Of primary interest is the ~2.2 seconds test, and as you say I also have a feeling much of the difference is added Genshi work.
See comment:7:ticket:10635 - and perhaps we'll see a 10% improvement here too?
Changed 13 months ago by psuter
comment:37 in reply to: ↑ 36 Changed 13 months ago by psuter
So far I was using Genshi 0.7dev-r1162 (without speedups). I appended a test run with speedups to attachment:profile.txt. At ~2.1 seconds it's only a ~5% improvement.



Patch