DZone
Java Zone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
  • Refcardz
  • Trend Reports
  • Webinars
  • Zones
  • |
    • Agile
    • AI
    • Big Data
    • Cloud
    • Database
    • DevOps
    • Integration
    • IoT
    • Java
    • Microservices
    • Open Source
    • Performance
    • Security
    • Web Dev
DZone > Java Zone > 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.

Dmitry Egorov user avatar by
Dmitry Egorov
CORE ·
Mar. 05, 22 · Java Zone · Tutorial
Like (7)
Save
Tweet
6.70K 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. 

Visual VM screenshot

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.

Popular on DZone

  • Artificial Intelligence (AI) And Its Assistance in Medical Diagnosis
  • Major PostgreSQL Features You Should Know About
  • Streaming ETL with Apache Kafka in the Healthcare Industry
  • What I Miss in Java, the Perspective of a Kotlin Developer

Comments

Java Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • MVB Program
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends:

DZone.com is powered by 

AnswerHub logo