tunggad
tunggad

Reputation: 385

Efficient GC collection with large heap of 30 - 100GB

Can Java 7 now handle large heap of 30 - 100GB efficiently without significant GC pause?

Upvotes: 3

Views: 1498

Answers (2)

user572964
user572964

Reputation: 600

Another option is to use Terracotta BigMemory. This is useful if you are storing objects in a big cache in heap. This is not open source but in my opinion, reasonably priced. BigMemory basically allocates object memory outside heap and hence the heap size can be kept to a minimum or medium size.

Upvotes: 0

Joachim H. Skeie
Joachim H. Skeie

Reputation: 1903

There are tuning options available, and concurrent GC, but there will still be some pauses during the GC of the tenured generation.

Angelika Langer explains this in detail in this presentation:

http://vimeo.com/28761227

Upvotes: 1

Related Questions