• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Can Websphere cause high CPU utilization even if it doesn't consume that much memory?

 
Ranch Hand
Posts: 178
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Hello,

Can Websphere cause high CPU utilization even if it doesn't consume that much memory? Since we deployed a new application in our Websphere, it periodically caused high cpu utilization at certain time intervals. The weird thing is when we forced a heap dump and look at the memory consumption, it really doesn't consume much. CPU Utilization reaches close to 100% so we would always need to restart it for everything to go back to normal.

thanks
 
Rancher
Posts: 989
9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, CPU and memory are different resources which are not always impacted at the same time. You are lucky that it happens at periodic intervals so you know when to check and what processes are running in your application at that time.
 
Bartender
Posts: 3958
43
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Andres Delrotti wrote:
Hello,

Can Websphere cause high CPU utilization even if it doesn't consume that much memory? Since we deployed a new application in our Websphere, it periodically caused high cpu utilization at certain time intervals. The weird thing is when we forced a heap dump and look at the memory consumption, it really doesn't consume much. CPU Utilization reaches close to 100% so we would always need to restart it for everything to go back to normal.

thanks



Hello,

Sure WAS can cause high CPU utilization.

Note, for CPU problems more important Java Core than Heap Dump. Java core contains list of all threads in JVM and their statuses, including "BLOCKED" and "CONDITIONALLY WAITING".

Also, if you wish to research problem of CPU, better refer MustGather document for this specific problem

HTH,
MZ
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic