Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Example Analysis of jmap Heap dump File

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

This article introduces the relevant knowledge of "jmap heap dump file example analysis". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

Using jmap and jhat to analyze dump

Jps queries out the jvm thread pid

Create a snapshot file jmap-dump:live,file=e://a.hprof pid;, which generates a snapshot file of a.hprof on the e disk. The type must be hprof.

Jmap-dump:live,format=b,file=e://b.hprof 4076 uses format=b binary format, which is about 18% smaller than unused files. You can try it yourself.

Jhat [filePath] reads the corresponding file and then parses it using oql syntax

Open localhost:7000, and as a result, many objects in the following can be pass and pulled to the lowest part.

This is the oql query page.

Select sizeof (o), o from [I o where sizeof (o) > 5000 query objects larger than 50K

There is a simple introduction to grammar in help

Use visualVm to view hprof files

Open visualVm JVisualVm

Load

The analysis of this is much better than that of jmap. However, after 9, it seems that jVisualVm is not a built-in tool.

This is the end of the content of "jmap heap dump file example analysis". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report