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?

link|improve this question
2  
Depending on the random method being used, the machine may not have much entropy left and is waiting for more to appear before generating the next number. – Adam Vandenberg Aug 15 '11 at 22:05
1  
Regardless... getting a random int should not take nearly a second. In a virtual environment, it's possible that your virtual server is on heavily oversubscribed hardware, which you would not see using OS level tools like vmstat. If you SSH into the box, does it feel responsive or sluggish? – Eric J. Aug 15 '11 at 22:09
It is quite fast, well, when java isn't taking 97% or so of the CPU. I have tested this on a – Zachar543 Aug 16 '11 at 0:03
** I have tested this on a VirtualPC (Ubuntu 10.04) on my computer and it seemed to have this issue also. Also, My VPS is Xen based if that matters. – Zachar543 Aug 16 '11 at 0:10
@Adam: Random does not use entropy, it is SecureRandom that uses entropy. – rossum Aug 16 '11 at 0:27
show 5 more comments
feedback

2 Answers

Instead of adding timings to your source code, try using a java agent like BTrace: http://kenai.com/projects/btrace which will let you get hold of the information you want, but without messing up your applications source code.

BTrace can be coupled with a visualizer, such as EurekaJ, (a project I have created to visualize BTtrace output): http://eurekaj.haagen.name

Other commercial profiling options are also available, such as JProfiler or YourKit, but they do come with a price tag.

link|improve this answer
feedback

Can you reproduce your timings when you measure the processing time within the program, i.e. something like the following:

long start = System.currentTimeMillis();

/* Your code */

[...]    

long time = System.currentTimeMillis() - start;

System.out.println("Measurement: " + time);

Also, what do you mean by "it is fast when Java is not taking 97% of the CPU"? Why is Java taking the 97% in the first place? Are there multiple threads running? Is your computation short or long running?

link|improve this answer
I will try some timing in a little bit. The "it is fast when Java is not taking 97% of the CPU" comment was saying that when these methods are taking this much time they use the majority of the CPU just to do simple tasks. – Zachar543 Aug 17 '11 at 17:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.