Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"abort preclean due to time" in Concurrent Mark & Sweep

I'm getting "abort preclean due to time" when running Concurrent Mark & Sweep in Java 6. What does it mean? Is the GC really halting in the middle before it did any real work?

like image 749
ripper234 Avatar asked Dec 02 '09 17:12

ripper234


1 Answers

Check out the section MaxAbortablePrecleanTime in Masamitsu's blog. This will give you a better idea about what the preclean phase is doing. Better than i'm willing to type out ;)

like image 151
reccles Avatar answered Nov 08 '22 02:11

reccles