[jboss-jira] [JBoss JIRA] (SECURITY-734) Slow policy evaluation with a large number of policy sets
Maxim Zinal (JIRA)
jira-events at lists.jboss.org
Fri Apr 19 08:38:53 EDT 2013
Maxim Zinal created SECURITY-734:
------------------------------------
Summary: Slow policy evaluation with a large number of policy sets
Key: SECURITY-734
URL: https://issues.jboss.org/browse/SECURITY-734
Project: PicketBox
Issue Type: Enhancement
Security Level: Public (Everyone can see)
Environment: RedHat Linux 6.0, WebSphere Application Server 7.0
Reporter: Maxim Zinal
Assignee: Anil Saldhana
We suffer a performance problem in the evaluation of large XACML configuration. We use JBoss (Sun?) XACML library to process a large number of policy sets (over 2400 policy set files) using "deny-override" combining algorithm.
Initially the number of policies was relatively small, but it increased with time, leading to performance degradation, with 100% CPU (single)core consumption.
After running a code sample under Java profiler, we found that 99% of time is spent in method PolicySetFinderModule.findPolicy(URI, int, VersionConstraints, PolicyMetaData).
This method walks through a list of AbstractPolicy objects, comparing an ID of each object with it's first argument. In our configuration the number of such objects is relatively large, leading to slow execution with high CPU consumption.
We suggest replacing the list of AbstractPolicy with a HashMap. Our experiments show that total evaluation time reduces ~50 times with a HashMap over List implementation.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list