Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

37
votes
9answers
10k views

Java G1 garbage collection in production

Since Java 7 is going to use the new G1 garbage collection by default is Java going to be able to handle an order of magnitude larger heap without supposed "devastating" GC pause times? Has anybody ...
19
votes
3answers
388 views

Is G1GC still not officially production ready?

I wonder what the official status of the "garbage first" (G1) collector in the JDK 7 release is. I would like to use G1 as a low pause gc alternative to CMS, but only if I can really trust on its ...
9
votes
1answer
757 views

How does the Garbage-First Garbage Collector work?

Can someone explain how the G1 Garbage Collector works please? I haven't been able to find any comprehensive, easy-to-understand descriptions anywhere yet. Thanks
6
votes
2answers
409 views

Can someone make sense of the G1 garbage collector output?

I am running a Java program with the G1 garbage collector using the following options: -XX:-UseBiasedLocking -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -verbose:gc -XX:+PrintGCTimeStamps ...
5
votes
3answers
2k views

Experience with JDK 1.6.x G1 (“Garbage First”)

I'd like to know what are the experiences with G1 garbage collector in newest JDK? I see NullPointerException thrown in my program, although code didn't change and behave correctly in earlier JDKs.
4
votes
1answer
892 views

Java VM does not recognize -XX:G1YoungGenSize?

I am using the G1 garbage collector with JDK1.7.0, but the VM does not recognize the option G1YoungGenSize. Specifically, when I run: java -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC ...
1
vote
0answers
150 views

options for G1 garbage collectors not available?

http://www.oracle.com/technetwork/java/javase/tech/g1-intro-jsp-135488.html seems to be the official docs for the G1 garbage collector. There are two options mentioned: ...
1
vote
2answers
428 views

G1GC GC logs what do they mean?

I do not understand what exactly the G1GC GC logs mean(when adding PrintGCDetails and PrintGCTimeStamps). Can someone shed light on the syntax? [ GC pause (young), 0.03067078 secs] [SATB Drain ...
0
votes
0answers
192 views

Has anybody had a life changing experience with G1 GC? [closed]

Possible Duplicate: Java G1 garbage collection in production Apologies for a generic question, but I have seen people very enthusiastically talk about the new G1 GC and how good it can be ...
0
votes
4answers
1k views

Is JDK 6u14 Garbage First (G1) garbage collector, suitable for JRun?

Garbage First (G1) garbage collector http://weblogs.java.net/blog/opinali/archive/2009/02/here_comes_jdk.html Do you think this garbage collector is better for JRun, running ColdFusion 8?