In the class comments at the top of PersistentValve
there is a usage constraint:
/**
...
* <b>USAGE CONSTRAINT</b>: To work correctly it assumes only one request exists
* per session at any one time.
...
*/
Why is this constraint here? Perusing the code I see three reasons:
session.recycle()
setting the manager to null in the shared session object and another request dereferencing manager when attempting to save the session to the store.Are there other reasons?
Doing an SVN-Blame I found this comment was added in svn revision 652662 on May 1st 2008 while fixing bug 43343 using the commit comment: Fix bug 43343. Correctly handle the case where a request arrives for a session we are in the middle of persisting..
The context of the bug strongly points at your suggested reason (1) that it is about data loss. In the initial bug description the OP says:
... The only place I saw other issues was inside of: java/org/apache/catalina/valves/PersistentValve.java
where it incorrectly grabs the store from the PersistentManager and uses it directly instead of using the manager API. To me this is bad in that the manager is not able to be the manager and this other logic is accessing the store directly and should never happen...unless it is used only in test cases etc.
So here it is considered the Managers
' sole task to use the session Store
for storing, loading and deleting sessions. But the PersistentValve
does the same too and might easily interfer with what the manager does.
During the bug fix commit beside modifying the PersistentManager
, only the comment in question was added to PersistentValve.java
plus an unused variable was removed:
- StandardHost host = (StandardHost) getContainer();
While I don't know the purpose of this line removal or past presence, I consider the committer Mark Thomas recognized during code review and patch that PersistentValve can only guarantee constistent session writes when there's only a maximum of one request active per session at any point in time. Else lost writes may occurre.
I won't judge how practical this is, but just thinking about plenty of ressources loaded in parallel per web page impression (main HTML, CSS, JS, Images).
I'm still unsure if this can even be a problem using a single Tomcat instance.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With