Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wrong object sizes reported #2

Open
waypoint100 opened this issue Oct 1, 2019 · 1 comment
Open

wrong object sizes reported #2

waypoint100 opened this issue Oct 1, 2019 · 1 comment

Comments

@waypoint100
Copy link

waypoint100 commented Oct 1, 2019

simple test like this

        MemoryHistogram diff = Histogramer.getDiff(() -> {
            String aa = "text";
            return aa;
        });
        HistogramEntry nodes = diff.get("String");
        System.out.println(nodes.getInstances());
        System.out.println(nodes.getSize());

returns random values,
e.g.:

700
16800
@jerolba
Copy link
Owner

jerolba commented Oct 1, 2019

The problem is that what you are printing contains strings created by classes and objects from the JVM.

If this code is executed only once, it will include all code related to class loading and compilation which creates also strings.

The utility takes a histogram of memory before and after your lamda. It doesn't instrument your code and doesn't know what is happening inside. Internally, the JVM does a lot of things to compile and execute your lambda, and concurrently does other things (GCs for example...)

You must "warm" the JVM executing inspected code before measuring it to ensure that all necessary objects have been created. I explain it better in this post:
https://medium.com/@jerolba/measuring-actual-memory-consumption-in-java-jmnemohistosyne-5eed2c1edd65#b742

I'll add this explanation to the README.md

But I see another problem: if you execute these code repeatedly in the nth execution, the result will be 0 bytes because "text" is created as a constant by the java compiler and is instantiated outside your code (and reused every time you reference to "text" string).

To test correctly these code you must force the creation of a new String:

    MemoryHistogram diff = Histogramer.getDiff(() -> {
            String aa = new String("text");
            return aa;
    });

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants