-
JEP
-
Resolution: Rejected
-
P3
-
Anthony Scarpino
-
Feature
-
Open
-
JDK
-
-
S
-
L
Summary
Replace non-concurrent list array with a concurrent queue for session management in sunpkcs11.
Success Metric
Increase the performance.
Motivation
Performance did not scale as well as it could have using microbenchmarks on some hardware platform.
Description
Session management in sunpkcs11 has been done with synchronized methods around an ArrayList which holds idle PKCS#11 session in a queue. This queue exists to provide better performance by giving open and idle sessions to new crypto operations. Without a queue, opening and closing PKCS#11 session through JNI to the native PKCS#11 library after each crypto operation would be CPU expensive.
The change is to modernize this queue by using a concurrent class, ConcurrentLinkedDeque, and an AtomicInteger as a session counter. This leaves the locking solely in the queue where it is performed better, and releases five methods from being bottlenecked in synchronized locks.
Testing
Used provided test tool in JDK-7107611, no other testing is required.
- relates to
-
JDK-7107611 sun.security.pkcs11.SessionManager is scalability blocker
- Resolved