How do I make sure my objects get garbage collected? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T23:36:31Z http://stackoverflow.com/feeds/question/154309 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/154309/how-do-i-make-sure-my-objects-get-garbage-collected 5 How do I make sure my objects get garbage collected? Paul Tomblin 2008-09-30T18:24:33Z 2009-03-31T01:51:06Z <p>One of our programs is sometimes getting a OutOfMemory error on one users machine, but of course not when I'm testing it. I just ran it with jprofiler (on a 10 day evaluation license because I've never used it before), and filtering on our code prefix, the biggest chunk both in total size and number of instances is 8000+ instances of a particular simple class. I clicked the "Garbage Collect" button on jprofiler, and most instances of other classes of ours went away, but not these particulate ones. I ran the test again, still in the same instance, and it created 4000+ more instances of the class, but when I clicked "Garbage Collect", those went away leaving the 8000+ original ones.</p> <p>These instances do get stuck into various Collections at various stages. I assume that the fact that they're not garbage collected must mean that something is holding onto a reference to one of the collections so that's holding onto a reference to the objects.</p> <p>Any suggestions how I can figure out what is holding onto the reference? I'm looking for suggestions of what to look for in the code, as well as ways to find this out in jprofiler if there are.</p> http://stackoverflow.com/questions/154309/how-do-i-make-sure-my-objects-get-garbage-collected/154362#154362 1 Answer by JesperE for How do I make sure my objects get garbage collected? JesperE 2008-09-30T18:35:32Z 2008-09-30T19:10:17Z <p>Keep an eye out for static containers. Any objects in a static container will remain as long as the class is loaded.</p> <p>Edit: removed incorrect remark on WeakReference.</p> http://stackoverflow.com/questions/154309/how-do-i-make-sure-my-objects-get-garbage-collected/154371#154371 0 Answer by Javier for How do I make sure my objects get garbage collected? Javier 2008-09-30T18:37:01Z 2008-09-30T18:37:01Z <p>If you're getting OOM errors in a garbage collected language, it usually means that there's some memory not being accounted by the collector. Maybe your objects hold non-java resources? if so, then they should have some kind of 'close' method to make sure that resource is released even if the Java object isn't collected soon enough.</p> http://stackoverflow.com/questions/154309/how-do-i-make-sure-my-objects-get-garbage-collected/154394#154394 2 Answer by Tom Hawtin - tackline for How do I make sure my objects get garbage collected? Tom Hawtin - tackline 2008-09-30T18:44:23Z 2008-09-30T18:44:23Z <p>One obvious candidate is objects with finalisers. They can linger while their finalize method is called. They need to be collected, then finalised (usually with just a single finaliser thread) and then collected again.</p> <p>Also be aware that you can get an OOME because the gc failed to collect enough memory, despite there actually being enough for the object request to be created. Otherwise performance would grind into the ground.</p> http://stackoverflow.com/questions/154309/how-do-i-make-sure-my-objects-get-garbage-collected/154395#154395 2 Answer by Partyzant for How do I make sure my objects get garbage collected? Partyzant 2008-09-30T18:44:26Z 2008-09-30T18:44:26Z <p>No silver bullet there, you have to use the profiler to identify collections that hold those unneeded objects and find the place in code where they should have been removed. As JesperE said, static collections are the first place to look at.</p> http://stackoverflow.com/questions/154309/how-do-i-make-sure-my-objects-get-garbage-collected/154454#154454 4 Answer by 18Rabbit for How do I make sure my objects get garbage collected? 18Rabbit 2008-09-30T18:58:33Z 2008-09-30T18:58:33Z <p>I would look at Collections (especially static ones) in your classes (HashMaps are a good place to start). Take this code for example:</p> <pre><code>Map&lt;String, Object&gt; map = new HashMap&lt;String, Object&gt;(); // 1 Object String name = "test"; // 2 Objects Object o = new Object(); // 3 Objects map.put(name, o); // 3 Objects, 2 of which have 2 references to them o = null; // The objects are still being name = null; // referenced by the HashMap and won't be GC'd System.gc(); // Nothing is deleted. Object test = map.get("test"); // Returns o test = null; map.remove("test"); // Now we're down to just the HashMap in memory // o, name and test can all be GC'd </code></pre> <p>As long as the HashMap or some other collection has a reference to that object it won't be garbage collected.</p> http://stackoverflow.com/questions/154309/how-do-i-make-sure-my-objects-get-garbage-collected/154532#154532 1 Answer by dj_segfault for How do I make sure my objects get garbage collected? dj_segfault 2008-09-30T19:20:18Z 2008-09-30T19:20:18Z <p>I just read an article on this, but I'm sorry I can't remember where. I think it might have been in the book "Effective Java". If I find the reference, I'll update my answer.</p> <p>The two important lessons it outlined are:</p> <p>1) Final methods tell the gc what to do when it culls the object, but it doesn't ask it to do so, nor is there a way to demand that it does. </p> <p>2) The modern-day equivalent of the "memory leak" in unmanaged memory environments, is the forgotten references. If you don't set all references to an object to <em>null</em> when you're done with it, the object will <em>never</em> be culled. This is most important when implementing your own kind of Collection, or your own wrapper that manages a Collection. If you have a pool or a stack or a queue, and you don't set the bucket to <em>null</em> when you "remove" an object from the collection, the bucket that object was in will keep that object alive until that bucket is set to refer to another object.</p> <p>disclaimer: I know other answers mentioned this, but I'm trying to offer more detail.</p> http://stackoverflow.com/questions/154309/how-do-i-make-sure-my-objects-get-garbage-collected/154558#154558 7 Answer by Tom for How do I make sure my objects get garbage collected? Tom 2008-09-30T19:26:21Z 2008-09-30T19:26:21Z <p>Try Eclipse Memory Analyzer. It will show you for each object how it is connected to a GC root - an object that is not garbage collected because it is held by the JVM.</p> <p>See <a href="http://dev.eclipse.org/blogs/memoryanalyzer/2008/05/27/automated-heap-dump-analysis-finding-memory-leaks-with-one-click/" rel="nofollow">http://dev.eclipse.org/blogs/memoryanalyzer/2008/05/27/automated-heap-dump-analysis-finding-memory-leaks-with-one-click/</a> for more information on how Eclipse MAT works.</p> http://stackoverflow.com/questions/154309/how-do-i-make-sure-my-objects-get-garbage-collected/154570#154570 7 Answer by McDowell for How do I make sure my objects get garbage collected? McDowell 2008-09-30T19:28:17Z 2008-09-30T19:28:17Z <p>Dump the heap and inspect it.</p> <p>I'm sure there's more than one way to do this, but here is a simple one. This description is for MS Windows, but similar steps can be taken on other operating systems.</p> <ol> <li>Install the JDK if you don't already have it. <a href="http://java.sun.com/javase/6/docs/technotes/tools/index.html" rel="nofollow">It comes with a bunch of neat tools.</a></li> <li>Start the application.</li> <li>Open task manager and find the process id (PID) for java.exe (or whatever executable you are using). If the PID's aren't shown by default, use View > Select Columns... to add them.</li> <li>Dump the heap using <em>jmap</em>.</li> <li>Start the <em>jhat</em> server on the file you generated and open your browser to <em><a href="http://localhost:7000" rel="nofollow">http://localhost:7000</a></em> (the default port is 7000). Now you can browse the type you're interested in and information like the number of instances, what has references to them, etcetera.</li> </ol> <p>Here is an example:</p> <pre><code>C:\dump&gt;jmap -dump:format=b,file=heap.bin 3552 C:\dump&gt;jhat heap.bin Reading from heap.bin... Dump file created Tue Sep 30 19:46:23 BST 2008 Snapshot read, resolving... Resolving 35484 objects... Chasing references, expect 7 dots....... Eliminating duplicate references....... Snapshot resolved. Started HTTP server on port 7000 Server is ready. </code></pre> <p>To interpret this, it is useful to understand some of the <a href="http://java.sun.com/javase/6/docs/api/java/lang/Class.html#getName()" rel="nofollow">array type nomenclature</a> Java uses - like knowing that <strong>class [Ljava.lang.Object;</strong> really means an object of type <strong>Object[]</strong>.</p> http://stackoverflow.com/questions/154309/how-do-i-make-sure-my-objects-get-garbage-collected/154584#154584 1 Answer by anjanb for How do I make sure my objects get garbage collected? anjanb 2008-09-30T19:30:57Z 2008-09-30T19:30:57Z <p>Hi There,</p> <p>I've used the Yourkit Java profiler(<a href="http://www.yourkit.com" rel="nofollow">http://www.yourkit.com</a>) for performance optimizations on java 1.5. It has a section on how to work on memory leaks. I find it useful.</p> <p><a href="http://www.yourkit.com/docs/75/help/performance_problems/memory_leaks/index.jsp" rel="nofollow">http://www.yourkit.com/docs/75/help/performance_problems/memory_leaks/index.jsp</a></p> <p>You can get a 15 day eval : <a href="http://www.yourkit.com/download/yjp-7.5.7.exe" rel="nofollow">http://www.yourkit.com/download/yjp-7.5.7.exe</a></p> <p>BR,<BR> ~A</p> http://stackoverflow.com/questions/154309/how-do-i-make-sure-my-objects-get-garbage-collected/527338#527338 1 Answer by Thorbjørn Ravn Andersen for How do I make sure my objects get garbage collected? Thorbjørn Ravn Andersen 2009-02-09T07:24:17Z 2009-02-09T07:24:17Z <p>Collections was already mentioned. Another hard-to-find location is if you use multiple ClassLoaders, as the old classloader may be unable to be garbage collected until all references have gone.</p> <p>Also check statics - these are nasty. Logging frameworks can keep things open which may keep references in custom appenders.</p> <p>Did you resolve the problem?</p> http://stackoverflow.com/questions/154309/how-do-i-make-sure-my-objects-get-garbage-collected/699740#699740 1 Answer by ReneS for How do I make sure my objects get garbage collected? ReneS 2009-03-31T01:51:06Z 2009-03-31T01:51:06Z <p>Some suggestions:</p> <ul> <li>Unlimited maps used as caches, especially when static</li> <li>ThreadLocals in server apps, because the threads usually do not die, so the ThreadLocal is not freed</li> <li>Interning strings (Strings.intern()), which results in a pile of Strings in the PermSpace</li> </ul>