VOOZH about

URL: https://dzone.com/articles/how-to-estimate-object-memory-allocation-in-java

⇱ How to Estimate Object Memory Allocation in Java


Related

  1. DZone
  2. Coding
  3. Languages
  4. How to Estimate Object Memory Allocation in Java

How to Estimate Object Memory Allocation in Java

This article shows three ways to estimate object memory allocation in Java. A comparison of all approaches and examples is included.

By Mar. 05, 22 · Tutorial
Likes
Comment
Save
13.6K Views

Join the DZone community and get the full member experience.

Join For Free

Estimating Allocated Memory (Not Object Size)

Previously, I explained how to calculate an object's size considering OS binary or types of objects and primitives. In this article, I'll only review ways to estimate the size of already allocated memory for a given object. There are a couple of ways to do it. Here we review the most popular.

Estimating Memory Using Profiler

The easiest way to estimate the memory of some objects is to look right inside JVM's memory using a profiler such as Visual VM

The problem with this approach is that you have to connect to a running JVM, which might be impossible for production environments due to security reasons.  

Estimating Memory Using Instrumentation

Another way to estimate allocated memory by a given object is to use Instruments tools. In short, we need to create a class and compile it to JAR. Once JAR is created, we have to execute our JVM together with that JAR. You can find details about this approach here. The disadvantage of this approach is the requirement to add a specific jar to JVM, and it might be not acceptable for production due to security or related issues.

Estimating Memory Using JOL Library

As another option, we can use JOL Library. It is a very powerful library and can provide detailed estimation about object weight and memory allocated by an object instance. To use the library, we need to add the dependency:

Plain Text
<dependency>
 <groupId>org.openjdk.jol</groupId>
 <artifactId>jol-core</artifactId>
 <version>0.16</version>
</dependency>

Afterward, we can use it like this:

Java
out.println(GraphLayout.parseInstance(myObject).totalSize() / 1024000d + " MB")

As a result, we will see the number of megabytes allocated by myObject with its internal content. Unfortunately, this approach will consume a lot of memory and time and is not suitable for big objects.

ObjectSizeCalculator From Twitter Archive

There is a tool class in the open-source Twitter GitHub repository that can estimate allocated memory for a given object instance ObjectSizeCalculator.  This solution doesn't eat a lot of memory or time. The estimation process takes seconds, even for big objects.  Usage of this class is pretty straightforward: 

Java
ObjectSizeCalculator.getObjectSize(address)

I recommend this approach, but keep in mind that it is supported only by Java Hotspot, OpenJDK, and TwitterJDK. 

Memory (storage engine) Object (computer science) Java (programming language)

Opinions expressed by DZone contributors are their own.

Related

  • Singleton: 6 Ways To Write and Use in Java Programming
  • All You Need To Know About Garbage Collection in Java
  • Java Memory Management
  • Memory Optimization and Utilization in Java 25 LTS: Practical Best Practices

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

Let's be friends: