Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 1 of 1

Thread: How much memory is my application wasting?

  1. #1
    Member
    Join Date
    Nov 2017
    Location
    USA
    Posts
    138
    Thanks
    6
    Thanked 1 Time in 1 Post

    Default How much memory is my application wasting?

    In early 1970s 1 MB was costing 1 million $. Now 1 mb is costing fraction of that cost. There is no comparison. This is one of the reasons why engineers and enterprises don’t worry about memory any more. 1 million $ in 1970s might be equivalent of several millions of dollars’ worth today. Thus, back in the day’s memory was treated so preciously. This preciousness has been vividly described in the book ‘Idea Man’ – autobiography of Paul Allen (Microsoft Co-founder). Paul Allen talks about the challenge he and Bill Gates faced in writing BASIC programming language (Microsoft’s very first product) under 4 KB.

    There are 4 primary computing resources:
    1. CPU
    2. Memory
    3. Network
    4. Storage


    Your application might be running on tens, thousands of application server instances. In above mentioned 4 computing resources, which resource does your application instance saturates first? Pause for a moment here, before reading further. Give a thought to figure out which resource gets saturated first.

    For most applications it is *memory*. CPU is always at 30 – 60%. There is always abundant storage. It’s hard to saturate network (unless your application is streaming video content). Thus, for most applications it’s the memory that is getting saturated first. Even though CPU, storage, network is underutilized, just because memory is getting saturated, you end up provisioning more and more application server instances increasing the computing cost of organizations to millions/billions dollars.

    On the other hand, without exception modern applications wastes anywhere from 30 – 90% of memory due to inefficient programming practices. Below are 9 different practices that is followed in the industry, that is causing memory wastage:
    1. Duplicate Strings
    2. Inefficient Collections
    3. Duplicate Objects
    4. Duplicate arrays
    5. Inefficient arrays
    6. Objects waiting for finalization
    7. Boxed numbers
    8. Overhead caused by Object Headers
    9. Wrong memory size settings


    If you can eliminate this 30 – 90% of memory wastage, it will bring 2 major advantages to your enterprise:

    a. Reduce computing cost:
    As memory is the first resource to get saturated, if you can reduce memory consumption, you would be able to run your application on a smaller number of server instances. You might be able to reduce 30 – 40% of servers. It means your management can reduce 30 – 40% of the datacenter (or cloud hosting provider) cost, maintenance and support cost. It can account for several millions/billions of dollars in cost savings.

    b. Better customer experience:
    If you are reducing number of objects that you are creating to service incoming request, your response time will get lot better. Since less objects are created, less CPU cycles will be spent in creating and garbage collecting them. Reduction in response time will give a lot better customer experience.

    How much memory is my application wasting?
    So now let’s get back to original question of this article: ‘How much memory is my application wasting?’. Sad story is: there aren’t that many tools in the industry that can give you this answer. There are tools which can answer the question: ‘How much memory is my application using?’ like TOP, Application Performance Monitoring (APM) tools, Nagios… ‘Using’ is different from ‘Wasting’. But we will help you answer this question. You just need to follow these 2 steps to get to this answer:

    Step 1: Capture Heap Dumps
    In order to analyze, how memory is wasted, you first need to capture the heap dump. Heap Dump is basically a snapshot of your application’s memory. It has information what all are the objects that are present in memory, who is referencing it.

    There are 7 options to capture heap dumps from your Java application. https://blog.heaphero.io/2017/10/13/...mps-7-options/

    There are 3 options to capture heap dumps from android application. https://blog.heaphero.io/2018/06/04/...app-3-options/

    You can use the option that is more suited for you.

    “It’s recommended to capture heap dump when your application is taking traffic. When application is idle, new objects will not be created, thus you wouldn’t be able to see how much memory is actually wasted”.
    Step 2: Analyze using HeapHero tool
    Once you have captured heap dumps, you can upload the captured heap dumps to the free online heap dump analysis tool – HeapHero.

    “Depending on your application, Heap dumps can contain PII data and other sensitive data. In such circumstance you can register here Heap Dump analysis tool to download and install the HeapHero tool locally in your machine”.
    Tool will give high level summary of total amount of memory that is wasted, actual data that is causing memory wastage, lines of code that is triggering this memory wastage and recommends solutions to fix the problem.


    Fig: Summary showing how much memory is wasted in total
    HeapHero prints a pie graph that summarizes how much memory is wasted due to each inefficient programming practice. Apparently, this application is wasting 35% of its memory. Top two reasons for this wastage are:

    a. Inefficient collections (i.e. Data Structures) is causing 11.5% of memory wastage.

    b. Duplication of strings is causing 10.4% of memory wastage.


    Fig: Memory wasted due to duplicate Strings
    In this application there are 343,661 instances of string objects. Out of it, only 144,520 of them are unique. Apparently, there are 6,147 instances of “webservices.sabre.com” string objects. Why there as to be so many duplicates? Why can’t be cleaned and free-up memory?


    Fig: Memory wasted due to inefficient collections
    In this application 34% of HashMap contains no elements. This brings question why so many HashMaps are created with without any elements. When you create a HashMap by default it creates 16 elements. Space allocated for those 16 elements gets wasted, when you don’t insert any elements in to it. Even more interesting observation is 97% of Hashtable doesn’t contain any elements.


    Fig: Lines of code that is originating duplicate Strings

    Tool not only shows the objects that are wasting memory, but it also shows the code path that is causing triggering the memory wastage. This will facilitate the engineers to institute right fix in the right part of the application.

    Happy hacking, happy coding!
    Attached Images Attached Images
    • File Type: jpg 1.jpg (11.0 KB, 0 views)
    • File Type: jpg 2.jpg (13.7 KB, 0 views)
    • File Type: jpg 4.jpg (15.1 KB, 0 views)

Similar Threads

  1. Swing application - Heap Memory issue
    By javark1985 in forum What's Wrong With My Code?
    Replies: 1
    Last Post: June 25th, 2017, 01:54 PM
  2. Java application Memory Leak
    By Prem2310 in forum What's Wrong With My Code?
    Replies: 2
    Last Post: July 9th, 2013, 08:42 AM
  3. Replies: 0
    Last Post: April 3rd, 2013, 09:17 PM
  4. Properly releasing memory to avoid memory pileup/crash
    By fickletrick in forum What's Wrong With My Code?
    Replies: 6
    Last Post: July 22nd, 2012, 10:09 AM
  5. Out of memory work around for a java application (please help!)
    By javameanslife in forum Java Theory & Questions
    Replies: 5
    Last Post: January 22nd, 2010, 04:27 AM

Tags for this Thread