How Twitter Improved JVM Performance by Reducing GC and Faster Memory Allocation
Wednesday, November 20, 2013 at 8:55AM
General Chicken in Strategy

Netty is a high-performance NIO (New IO) client server framework for Java that Twitter uses internally as a protocol agonostic RPC system. Twitter found some problems with Netty 3's memory management for buffer allocations beacause it generated a lot of garbage during operation. When you send as many messages as Twitter it creates a lot of GC pressure and the simple act of zero filling newly allocated buffers consumed 50% of memory bandwidth. 

Netty 4 fixes this situation with:

The result:

Given how many services use the JVM in their messaging infrastructure and how many services have GC related performance problems, this is in impressive result others may want to consider.

Article originally appeared on (http://highscalability.com/).
See website for complete article licensing information.