As I was going through Apache spark source code, I stumbled upon on one interesting tool. Spark has a utility, called SizeEstimator, which estimates the size of objects in Java heap. This is like sizeof operator for Java. I got fascinated and started to explore. This posts talks about the utility and its use cases.

tl;dr Access complete code with documentation on github.

sizeof operator in C/C++

In C/C++ sizeof operator is used to determine size of a given data structure. This is important, as size of data structures in these languages are platform dependent. For example

 std::cout << sizeof(int) ;

the above c++ code will print 2 if it’s 16 bit machine and 4 if it’s 32 bit machine.

Also these languages does manual memory management. Developer uses sizeof operator to specify how much memory needs to be allocated.

int * intArray = (int *)calloc(10*sizeof(int));

The above code create an array of integers which hold 10 elements. Again as you can see here we used sizeof operator specify exact amount memory we wanted to allocate.

So from above examples, it’s apparent that sizeof operator is a tool which helps you to know the size of the variable at runtime.

sizeof operator for Java

Java do not have any sizeof operator in the language. The following are two reasons for that

  • The size of data structure is same on all platforms
  • Java virtual machine with garbage collection will do the memory management for you.

So as a developer, you do not need to worry about the memory management in java. So creators of Java felt there is no use of sizeof operator.

But there are few use cases where we may need a way to measure size of objects at runtime.

Use case for sizeof operator

As I told in the beginning, this idea of sizeof operator came from Spark source code. So I started digging why they need this. As it turns out SizeEstimator in Spark is used for building memory bounded caches. The idea is that you want to specify amount of heap memory the cache can use so when it runs out of memory it can use LRU method to accommodate newer keys.

You can find more use cases in this article.

Memory bounded caches in Spark

We use caches in almost every application. Normally most of the in-memory caches are bounded by number of items. You can specify how many keys it should keep. Once you cross the limit, you can use LRU to do the eviction. This works well when you are storing homogeneous values and all the pairs have relatively same size. Also it assumes that all machines where cache is running has same RAM size.

But in case of spark, the cluster may have varying RAM sizes. Also it may cache heterogeneous values. So having number of items as the bound is not optimal. So Spark uses the size of the cache as the bound value. So using sizeof operator they can optimally use the RAM on the cluster.

You can look at one of the implementation of memory bounded caches here.

java-sizeof library

I extracted the code from the spark, simplified little and published as a independent library. So if you want to calculate size of your objects in your Java/Scala projects, you can use this library. This library is well tested inside the spark.

Adding dependency

You can add the library through sbt or maven.

  • Sbt
   libraryDependencies += "com.madhukaraphatak" %% "java-sizeof" % "0.1"
   
  • Maven
 <dependency>
 <groupId>com.madhukaraphatak</groupId>
 <artifactId>java-sizeof_2.11</artifactId>
 <version>0.1</version>
 </dependency>

Using

The following code shows the api usage.

SizeEstimator.estimate('a');
   
List<Integer> values = new ArrayList<Integer>();
values.add(10);
values.add(20);
values.add(30);
SizeEstimator.estimate(values);

You can find more examples here.