Core Java

MineCraft and off heap memory

Overview

MineCraft is a really good example of when off heap memory can really help.
The key requirements are:
  • The bulk of the retained data is a simple data structure (in minecraft’s case its lots of byte[])
  • The usage of off heap memory can be hidden in abstraction.

 
 

The test

I used the following test for starting minecraft server from a seed from scratch which is a particularly expensive operation for the server.
  • Preset the level-seed=114 in server.properties
  • Delete the world* directories
  • Start the server with these options to see what the GC is doing -Xloggc:gc.log
    -verbose:gc -XX:+PrintGCDetails -XX:+PrintGCDateStamps
    -XX:+PrintGCTimeStamps -XX:+PrintTenuringDistribution -Xmx6g
  • Connect with one client
  • Perform /worldgen village
  • Perform /save-all
  • Exit.
To analyse the logs I am using jClarity’s Censum.

Standard MineCraft

There are two particularly expensive things it does:
  • It caches block stage in many byte[]s
  • It attempts to cache int[] used for processing without limit.

A Censum report for the above test looks like this:

censum-original-perc
The high pause times are partly due to having to manage the large objects.

Off heap MineCraft

Two changes were made to address this:
  • Use off heap ByteBuffer for long term caching.  Unsafe would be more efficient but not as portable.
  • Put a cap on the number of int[] cached.

Note: the problem with the temporary int[] only became visible to me after moving the bulk of the data off heap. Addressing the biggest problem over reveals more quick fix problems.

A Censum report for the same test looks like this:

 

censum-offheap-perc
There is still some premature promotion i.e. further improvements can be made but you can see that the application is spending.

Conclusion

Using off heap memory can help you tame you GC pause times, especially if the bulk of your data is in simple data structures which can be easily abstracted.  Doing so can also help reveal other simple optimisations you can do to improve the consistency of your performance.

Footnote

Many organisations treat performance as an enhancement and optional, however if you instil a culture where reasonable performance is a requirement, and failing to meet this requirement is a bug, performance issues are more likely to be fixed. c.f. https://bugs.mojang.com/browse/MC-56447

The Source Used

Reference: MineCraft and off heap memory from our JCG partner Peter Lawrey at the Vanilla Java blog.
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Inline Feedbacks
View all comments
Back to top button