I am running a java server on a CentOS 5.4 VPS. VPS stats: - 2.5GHz single core CPU - 2GB of RAM - OpenJDK 1.6 (tried Sun JDK 1.7 also)
I have been experiencing very high CPU usages from the java process. I then went and tried profiling the java process to see what was causing the slow down. I found that simple methods (like Random.nextInt(): 787ms) were taking 1000's of miliseconds to finish one call. Most of the methods should not take this long and are causing very high CPU usage on my server. Is this something wrong with CentOS? or Java? or is there something that I have not correctly configured on my VPS?
Randomdoes not use entropy, it isSecureRandomthat uses entropy. – rossum Aug 16 '11 at 0:27