[jboss-jira] [JBoss JIRA] Created: (JBAS-8002) Initial passivation of sessions during startup not based on full set of sessions
Brian Stansberry (JIRA)
jira-events at lists.jboss.org
Mon May 10 17:34:05 EDT 2010
Initial passivation of sessions during startup not based on full set of sessions
--------------------------------------------------------------------------------
Key: JBAS-8002
URL: https://jira.jboss.org/jira/browse/JBAS-8002
Project: JBoss Application Server
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Clustering, Web (Tomcat) service
Affects Versions: 6.0.0.M3, JBossAS-5.1.0.GA
Reporter: Brian Stansberry
Assignee: Brian Stansberry
Priority: Minor
Fix For: 6.0.0.CR1
JBossCacheManager.initializeUnloadedSessions() creates a map of sessions stored in the cache, key = session id, value = some metadata about the session. As it does this, it, passivates sessions if:
1) the last access time for the session > passivationMaxIdleTime_
2) OR, # of sessions > maxActiveAllowed_ && last access time for the session > passivationMaxIdleTime_
Problem is 2) can only work correctly if # of session is the *full* count of sessions, not just the count so far through the loop. Otherwise you can have more sessions than you want, but the loop doesn't get to the point where it recognizes that until after sessions whose last access time for the session > passivationMaxIdleTime_ have been processed. Those sessions won't get passivated, and will end up remaining in memory.
Effect: after the webapp is started, more sessions are in memory than intended, until the first run of the background processing thread at which point they will be passivated.
Fix is to store all sessions in the unloadedSessions_ map, and then do a second loop for the passivation part.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list