CopyDisable

Monday 15 August 2011

Profiling

Many times we get OutOfMemoryError in our glassfish logs. When no more memory is remaining in the Java process, it throws the OutOfMemoryError exception. This problem may indicate memory leak in the application. But not every OutOfMemoryError occurs due to memory leak, it may be due to load also. Some application needs more memory to run and this may also cause the OutOfMemoryError error.
To profile I will first take a heap dump using jmap, heap dump is a list of objects in the memory of JVM as well as the content of the memory occupied by those objects.  Then I will use Heap Analysis Tool (HAT) to deal with the heap dump. The Heap Analysis Tool (HAT) helps to debug unnecessary object retention by providing a simple way to browse the object topology in a heap snapshot.
jmap and jhat is available with Java SE 6.

Step1:
Find the process id of the java process we are going to take heap dump. We can do that using Linux ps command or from Windows task manager or we can use the jps (Java Virtual Machine Process Status) tool.

Step2:
Use jmap to generate the heap dump.


Step3:
Now start jhat to read the heap dump.

Step4:
Once jhat is ready it starts a web server, (the default port for the web server is 7000, and we can change it by command line option of jhat). We can use a web browser to inspect the heap dump.
Our jhat web server is running in the computer 172.16.0.103 on port 7000


Some examples of using jhat:

1) All Classes (excluding platform):
The default page shows all classes present in the heap, excluding platform classes. By clicking on the name of a class, we can query the Class
Link to run for this query:
http://172.16.0.103:7000/



2) All Classes (including platform):
This query will also show the platform classes.
Link to run for this query:
http://172.16.0.103:7000/allClassesWithPlatform/



3) Class Query:
We can use this query to view information about a class.
Suppose we want the information for the class org.mkcl.ef.AO.dao.AORegistrationDAO, use the link:
http://172.16.0.103:7000/class/org.mkcl.ef.AO.dao.AORegistrationDAO



4) Instances Query
It shows all instances of a class.
To see all the instances of the class com.mysql.jdbc.Buffer, use the link
http://172.16.0.103:7000/instances/com.mysql.jdbc.Buffer


5) Object Query:
Object query shows information about an object that was in the heap.
To display information about the object 0×6a8b880, use the link:
http://172.16.0.103:7000/object/0×6a8b880



6) Rootset query:
This query gives reference chains from the rootset to a given object.
For the object 0×6a8b880, use the link:
http://172.16.0.103:7000/roots/0×6a8b880



7) Objects reachable from a given object:
It shows the transitive closure of all objects reachable from a given object.
Objects reachable from 0×03b60518
http://172.16.0.103:7000/reachableFrom/0×03b60518



8) Instance Counts for All Classes (excluding platform):
It shows the count of instances for every class in the system, excluding platform classes.
http://172.16.0.103:7000/showInstanceCounts/

9) Instance Counts for All Classes (including platform):
It shows the count of instances for every class in the system, including platform classes.
http://172.16.0.103:7000/showInstanceCounts/includePlatform/

10) All Roots Query:
This query shows all members of the rootset.
http://172.16.0.103:7000/showRoots/



11) Heap Histogram:
It shows the number of allocated objects at the time the jmap was executed.
To view the heap histogram use the link:
http://172.16.0.103:7000/histo/



12) Object Query Language (OQL) query
We can use Object Query Language (OQL is SQL-like query language to query Java heap, OQL allows to filter/select information wanted from Java heap.) using the link:
http://172.16.0.103:7000/oql/


Help for using OQL can be found in the link http://172.16.0.103:7000/oqlhelp/
Using the above method we can analyze the heap and may find out the probable reason of the OutOfMemoryError.


জয় আই অসম,
প্রণব শর্মা

1 comment:

JacobHarman said...

Our group has offered overseen programming improvement administrations for more than decade, collecting different tech groups. We have additionally fabricated our own group of 200+ experts who convey great re-appropriating administrations to 40+ clients. What's more, we continue to work on everything about our work: from the principal discussions to consenting to participation arrangements with clients. Grasp appraised Mobilunity as the Top B2B Administrations Organization during 2018-2021. The well known stage likewise compensated us as one of the Top HR Administrations organizations in 2021. Mobilunity has fruitful contextual investigations across numerous ventures, and you can get direct references through a web structure. English OnTrack Retail, Japanese Pafin, German I-Doit, Israeli XPLG, and a lot more organizations work with us>> code reviewer

Post a Comment