-
15. Re: Too many sun.security.ssl.SSLEngineImpl objects
modoc Jun 27, 2016 4:41 PM (in response to modoc)Also I've dug into the heap and drilled into some examples of the HttpSessionImpl objects. They wrap a reference to a
ref |session|io.undertow.server.session.InMemorySessionManager$SessionImpl @ 0x836e6930
which in turn has creation dates in the past with expireTime's 10 minutes after the creation, and also long in the past. but they aren't getting expired.
http://dcloud.sparkred.com/2x3g0f1g442W/Screen%20Shot%202016-06-27%20at%202.38.19%20PM.png
Creation Time - Sun, 26 Jun 2016 03:26:15.034 GMT
Expire Time - Sun, 26 Jun 2016 03:36:15.034 GMT
You can see the invalid flag set to true. However the wrapping HttpSessionImpl object has it's invalid flag set to false, perhaps that's why it's not being cleaned up?
-
16. Re: Too many sun.security.ssl.SSLEngineImpl objects
swd847 Jun 27, 2016 7:46 PM (in response to modoc)Can you try upgrading to Undertow 1.3.23.Final? I think it will fix both issues.
-
17. Re: Too many sun.security.ssl.SSLEngineImpl objects
modoc Jun 27, 2016 7:54 PM (in response to swd847)swd847 okay great! Can you point me to any info on how to upgrade Undertow within Wildfly?
Also do you know of any specific bugs/issues that might capture this problem so I can document the upgrade need?
Thanks a million!
-
18. Re: Too many sun.security.ssl.SSLEngineImpl objects
swd847 Jun 27, 2016 8:20 PM (in response to swd847)[UNDERTOW-657] HttpSession never removed from activeSessions - JBoss Issue Tracker
under modules/system/layers/base/io/undertow replace the core, websocket and servlet jars with the newer version, and update the module.xml file to point to the new version.
Undertow is available from maven central: http://mvnrepository.com/artifact/io.undertow/
-
19. Re: Too many sun.security.ssl.SSLEngineImpl objects
modoc Jun 28, 2016 8:59 AM (in response to swd847)Awesome! Thank you very much swd847 !!!! I have made the changes and will check on memory usage this evening. I really appreciate it!!!
-
20. Re: Too many sun.security.ssl.SSLEngineImpl objects
modoc Jun 28, 2016 7:14 PM (in response to modoc)Everything is working perfectly now! Thanks again swd847 Really appreciate the help!