active questions tagged garbage-collection - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T03:18:54Z http://stackoverflow.com/feeds/tag/garbage-collection http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1850678/why-are-file-handles-such-an-expensive-resource 4 Why are file handles such an expensive resource? dsimcha 2009-12-05T01:02:56Z 2009-12-05T01:24:06Z <p>In holy wars about whether garbage collection is a good thing, people often point out that it doesn't handle things like freeing file handles. Putting this logic in a finalizer is considered a bad thing because the resource then gets freed non-deterministically. However, it seems like an easy solution would be for the OS to just make sure lots and lots of file handles are available so that they are a cheap and plentiful resource and you can afford to waste a few at any given time. Why is this not done in practice?</p> http://stackoverflow.com/questions/150805/best-way-to-track-down-a-memory-leak-c-only-visible-on-one-customers-box 7 Best way to track down a memory leak (C#) only visible on one customer's box jon.ediger 2008-09-29T21:34:23Z 2009-12-04T23:59:51Z <p>What is the best way to track down a memory leak that is only found on one customer's test/release box, and no where else?</p> http://stackoverflow.com/questions/1848283/assigning-null-to-objects-in-every-application-after-their-use 4 Assigning "null" to objects in every application after their use ZiG 2009-12-04T16:57:05Z 2009-12-04T21:36:53Z <ul> <li><p>Do you always assign <code>null</code> to an object after its scope has been reached?</p></li> <li><p>Or do you rely on the JVM for garbage collection? </p></li> <li><p>Do you do it for all sort of applications regardless of their length?</p></li> <li><p>If so, is it always a good practice?</p></li> </ul> http://stackoverflow.com/questions/1071631/trying-to-track-down-a-memory-leak-garbage-collection-problem-in-java 12 Trying to track down a memory leak / garbage-collection problem in Java. liam 2009-07-01T22:15:19Z 2009-12-04T20:10:57Z <p>This is a problem I have been trying to track down for a couple months now. I have a java app running in that processes xml feeds and stores the result in a database. This has been giving intermittent resource problems that are very difficult to track down.</p> <p><strong>Background:</strong> On the production box (where the problem is most noticeable), i do not have particularly good access to the box, and have been unable to get Jprofile running. That box is a 64bit quad-core, 8gb machine running centos 5.2, tomcat6, and java 1.6.0.11. It starts with these java-opts JAVA_OPTS="-server -Xmx5g -Xms4g -Xss256k -XX:MaxPermSize=256m -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+UseConcMarkSweepGC -XX:+PrintTenuringDistribution -XX:+UseParNewGC"</p> <p>The technology stack is the following: </p> <ul> <li>Centos 64-bit 5.2 <li>Java 6u11 <li>Tomcat 6 <li>Spring/WebMVC 2.5 <li>Hibernate 3 <li>Quartz 1.6.1 <li>DBCP 1.2.1 <li>Mysql 5.0.45 <li>Ehcache 1.5.0 <li>(and of course a host of other dependencies, notably the jakarta-commons libraries) </ul> <p>The closest I can get to reproducing the problem is a 32-bit machine with lower memory requirements. That I do have control over. I have probed it to death with JProfiler and fixed many performance problems (synchronization issues, precompiling/caching xpath queries, reducing the threadpool, and removing unnecessary hibernate pre-fetching, and overzealous "cache-warming" during processing).</p> <p>In each case, the profiler showed these as taking up huge amounts of resources for one reason or another, and that these were no longer primary resource hogs once the changes went in.</p> <p><strong>The Problem:</strong> The JVM seems to completely ignore the memory usage settings, fills all memory and becomes unresponsive. This is an issue for the customer facing end, who expects a regular poll (5 minute basis and 1-minute retry), as well for our operations teams, who are constantly notified that a box has become unresponsive and have to restart it. There is nothing else significant running on this box.</p> <p>The problem <em>appears</em> to be garbage collection. We are using the ConcurrentMarkSweep (as noted above) collector because the original STW collector was causing JDBC timeouts and became increasingly slow. The logs show that as the memory usage increases, that is begins to throw cms failures, and kicks back to the original stop-the-world collector, which then seems to not properly collect.</p> <p>However, running with jprofiler, the "Run GC" button seems to clean up the memory nicely rather than showing an increasing footprint, but since I can not connect jprofiler directly to the production box, and resolving proven hotspots doesnt seem to be working I am left with the voodoo of tuning Garbage Collection blind.</p> <p><strong>What I have tried:</strong> </p> <ul> <li>Profiling and fixing hotspots. <li>Using STW, Parallel and CMS garbage collectors. <li>Running with min/max heap sizes at 1/2,2/4,4/5,6/6 increments. <li>Running with permgen space in 256M increments up to 1Gb. <li>Many combinations of the above. <li>I have also consulted the JVM [tuning reference](http://java.sun.com/javase/technologies/hotspot/gc/gc_tuning_6.html) , but can't really find anything explaining this behavior or any examples of _which_ tuning parameters to use in a situation like this. <li>I have also (unsuccessfully) tried jprofiler in offline mode, connecting with jconsole, visualvm, but I can't seem to find anything that will interperet my gc log data. </ul> <p>Unfortunately, the problem also pops up sporadically, it seems to be unpredictable, it can run for days or even a week without having any problems, or it can fail 40 times in a day, and the only thing I can seem to catch consistently is that garbage collection is acting up.</p> <p>Can anyone give any advice as to:<br /> a) Why a JVM is using 8 physical gigs and 2 gb of swap space when it is configured to max out at less than 6.<br /> b) A reference to GC tuning that actually explains or gives reasonable examples of when and what kind of setting to use the advanced collections with.<br /> c) A reference to the most common java memory leaks (i understand unclaimed references, but I mean at the library/framework level, or something more inherenet in data structures, like hashmaps). </p> <p>Thanks for any and all insight you can provide.</p> <p><strong>EDIT</strong><br /> Emil H:<br /> 1) Yes, my development cluster is a mirror of production data, down to the media server. The primary difference is the 32/64bit and the amount of RAM available, which I can't replicate very easily, but the code and queries and settings are identical. </p> <p>2) There is some legacy code that relies on JaxB, but in reordering the jobs to try to avoid scheduling conflicts, I have that execution generally eliminated since it runs once a day. The primary parser uses XPath queries which call down to the java.xml.xpath package. This was the source of a few hotspots, for one the queries were not being pre-compiled, and two the references to them were in hardcoded strings. I created a threadsafe cache (hashmap) and factored the references to the xpath queries to be final static Strings, which lowered resource consumption significantly. The querying still is a large part of the processing, but it should be because that is the main responsibility of the application. </p> <p>3) An additional note, the other primary consumer is image operations from JAI (reprocessing images from a feed). I am unfamiliar with java's graphic libraries, but from what I have found they are not particularly leaky. </p> <p>(thanks for the answers so far, folks!) </p> <p><strong>UPDATE:</strong><br /> I was able to connect to the production instance with VisualVM, but it had disabled the GC visualization / run-GC option (though i could view it locally). The interesting thing: The heap allocation of the VM is obeying the JAVA_OPTS, and the actual allocated heap is sitting comfortably at 1-1.5 gigs, and doesnt seem to be leaking, but the box level monitoring still shows a leak pattern, but it is not reflected in the VM monitoring. There is nothing else running on this box, so I am stumped.</p> http://stackoverflow.com/questions/1846830/alloca-and-objectivec-garbage-collector 1 alloca and ObjectiveC Garbage Collector Christoph 2009-12-04T13:05:40Z 2009-12-04T16:41:56Z <p>In an objective C project with GC enabled, I am allocating an array of variable size on the stack like this:</p> <pre><code>MaValue *myStack = alloca((sizeof(id) * someLength)); </code></pre> <p>(The reason why I want to do this is not important:) Then, within a loop, I push and pop stuff on/from myStack. Some of the things I push onto the stack are new objects that are not referenced from anywhere else.</p> <p>My gut feeling tells me, that the objective C garbage collector doesn't know about those pointers and therefore would collect the new (otherwise unreferenced) objects. Part of that believe comes from the thought, that the objective C GC isn't really conservative but "knows its pointers" (e.g., through a stack map).</p> <p>However, in all my experiments (inserting [[NSGarbageCollector defaultCollector] collectExhaustively] calls) I didn't get those objects to be collected – which is good, but unexpected. So it seems, that the GC is scanning the whole stack and, for example, conservatively assumes an integer that happens to have the value of a valid pointer to really be a pointer.</p> <p>Is that correct? Or am I missing something?</p> http://stackoverflow.com/questions/1845737/java-outputstream-behavior-when-multiple-outputstream-objects-are-wrapped 0 Java Outputstream behavior when multiple outputstream objects are wrapped Keshav 2009-12-04T09:01:37Z 2009-12-04T09:12:10Z <p>Hi,</p> <p>I have a code that does compression, encryption and checksum on a File Outputstream. Following is the code-</p> <pre><code>private void start() { OutputStream os = null; try { os = new FileOutputStream("/some/file"); os = wrapAllRequiredTransforms(os); //Write to os } finally { os.close(); } } private wrapAllRequiredTransforms(OutputStream os) { if(checkSumRequired) { os = wrapOStreamWithCheckSum(os); } if(encryptionRequired) { os = wrapOStreamWithCipher(os); } if(compressRequired) { os = wrapOStreamWithCompress(os); } } private OutputStream wrapOStreamWithCheckSum(OutputStream os) throws Exception { os = new DigestOutputStream(os, MessageDigest.getInstance("MD5")); return os; } private OutputStream wrapOStreamWithCipher(OutputStream os) throws Exception { SecretKeySpec secretKeySpec = new SecretKeySpec(//SomeKey, encryptionAlgorithm); Cipher cipher = Cipher.getInstance(encryptionAlgorithm); cipher.init(Cipher.ENCRYPT_MODE, secretKeySpec); return new CipherOutputStream(os, cipher); } private OutputStream wrapOStreamWithCompress(OutputStream os) throws Exception { return new GZIPOutputStream(os); } </code></pre> <p>As you can see here I am wrapping the "os" object for encryption, compression etc., and then re-assigning "os" variable with a different object (created using new) inside each of wrapOStreamWithCheckSum, wrapOStreamWithCipher and wrapOStreamWithCompress methods. I was wondering if this leads to memory leaks by any chance? What would actually happen to the older "os" objects created? To rephrase, there are 4 objects created using "new", but being re-assigned to the same "os" variable. I am finding it hard to understand because the new object creation/functioning itself is dependent on the old object internally.</p> <p>Thanks,<br> -Keshav</p> http://stackoverflow.com/questions/1842580/when-should-i-call-the-java-garbage-collector 0 When should I call the Java garbage collector? [closed] python dude 2009-12-03T20:13:43Z 2009-12-03T20:52:11Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/66540/system-gc-in-java">System.gc() in java</a> </p> </blockquote> <p>Out of curiosity: Does anybody ever use System.gc() in Java? If so, then when do you call it? Before running a memory consuming algorithm? Or after running it?</p> http://stackoverflow.com/questions/1841479/change-in-gc-behaviour-after-move-from-java5-to-6 1 Change in GC behaviour after move from Java5 to 6 skaffman 2009-12-03T17:20:10Z 2009-12-03T17:40:51Z <p>We've recently migrated our systems from Sun Java 5 to Java6 server VM (specifically, 1.6.0_16 on Linux 32 bit). We've noticed that the garbage collection behaviour has changed in such a way as to trigger our heap-warning monitoring system. </p> <p>The heap usage graphs indicate a much "spikier" memory usage profile than we saw with Java5, with the VM letting heap usage get very high before running a big GC. It doesn't appear to be a problem with the application system itself (it never actually runs out of memory), but it's giving the monitoring system the occasional spurious "hair on fire" signals whenever the usage spike approaches the threshold.</p> <p>We <em>could</em> increase the heap max and hope the spike doesn't simply get bigger, but I'd much rather find out if there's a way we can tune the JVM parameters in such a way that we get a smoother profile, even if we loose a bit of performance.</p> <p>I'm guessing there might be some -XX option we can set to achieve this, but I an't see any such thing in the docs. Anyone know of such an option?</p> http://stackoverflow.com/questions/1839599/analyze-gc-logs-for-sun-hotspots-jvm-6 1 Analyze GC logs for Sun Hotspots, JVM 6 ripper234 2009-12-03T12:29:08Z 2009-12-03T17:13:42Z <p>I'm trying to analyze GC behaviour for our application (running in <strong>Tomcat</strong>, under <strong>Sun's Hotspots</strong>, <strong>JVM 1.6</strong>).</p> <p>So far I've:</p> <ul> <li>Instructed the JVM to emit GC logs to a separate file using: </li> </ul> <blockquote> <p>-Xloggc:gc.log -XX:+PrintGCApplicationStoppedTime -XX:+PrintGCApplicationConcurrentTime -XX:+PrintGC -XX:+PrintGCTimeStamps -XX:+PrintGCDetails</p> </blockquote> <ul> <li>Used jstat to output logs using</li> </ul> <blockquote> <p>jstat -gc -t 29045 5s > jstat.gc</p> </blockquote> <p>I am seeing interesting information, but haven't found a tool to help me analyze/visualize these logs. I was pointed to GCViewer by <a href="http://stackoverflow.com/questions/541832/know-of-any-java-garbage-collection-log-analysis-tools">this question</a>, but it only parses a few log lines from gc.log and then crashes with an exception. Is there a better or more up-to-date tool for parsing these specific logs, for the specific JVM I'm using?</p> http://stackoverflow.com/questions/1826012/which-excel-interop-objects-to-clean-up-myself-and-which-to-clean-up-by-gc-collec 0 Which Excel Interop objects to clean up myself and which to clean up by GC.Collect() Matthijs Wessels 2009-12-01T12:52:35Z 2009-12-03T14:27:45Z <h2>Question:</h2> <p>I want to ask a question in response to <a href="http://stackoverflow.com/questions/158706/how-to-properly-clean-up-excel-interop-objects-in-c#159419">Mike Rosenblum's answer</a> to <a href="http://stackoverflow.com/questions/158706/how-to-properly-clean-up-excel-interop-objects-in-c">this question</a>. The question was about cleaning up Excel interop objects. Several solutions where suggested (e.g. wrappers, not using more than one dot, killing the excel process), but I liked <a href="http://stackoverflow.com/questions/158706/how-to-properly-clean-up-excel-interop-objects-in-c#159419">Mike Rosenblum's solution</a> to this problem the most (<a href="http://www.xtremevbtalk.com/showthread.php?t=160433" rel="nofollow">lengthy article about the topic</a>). </p> <p>What it basically says is that you don't worry too much about all the references floating around. You just keep some main ones (like <code>ApplicationClass</code>, <code>Workbook</code> and <code>Worksheet</code>). You first invoke garbage collection to clean up all the objects floating around and then explicitly clean up the main references you still have by calling <code>Marshal.FinalReleaseComObject</code> (in reverse order of importance).</p> <p>Now I have two questions about this.<br> First: How do I determine to which objects I need to keep a reference? In <a href="http://stackoverflow.com/questions/158706/how-to-properly-clean-up-excel-interop-objects-in-c#159419">Mike Rosenblum's example</a> he only keeps <code>Ranges</code>, <code>Worksheets</code>, <code>Workbooks</code> and <code>ApplicationClasses</code>.<br> Second: If there are more objects, how do I determine the order of cleaning them up (i.e. the "order of importance")?</p> <p>Thanks in advance.</p> <p><hr></p> <h2>Update 1:</h2> <p>It has been suggested by <code>MattC</code> that for the order, the only thing that is important is that the app is released last. Although in my <a href="http://stackoverflow.com/questions/158706/how-to-properly-clean-up-excel-interop-objects-in-c#159419">reference</a> the following sentence:"You should also release your named references in reverse order of importance: range objects first, then worksheets, workbooks, and then finally your Excel Application object." implies that there is more ordering. </p> <p><code>nobugz</code> Suggests that setting everything to <code>null</code> and then doing garbage collection will suffice, but that seems to contradict the following quote from <a href="http://www.xtremevbtalk.com/showthread.php?t=160433" rel="nofollow">Mike Rosenblum's article</a>:"You would think, then, that you can set all your variables = <code>Nothing</code> and then call <code>GC.Collect()</code> at the end, and this does work sometimes. However, Microsoft Office applications are sensitive to the order in which the objects are released and, unfortunately, setting your variables = <code>Nothing</code> and then calling <code>GC.Collect()</code> does not guarantee the release order of the objects."</p> <h2>Update 2:</h2> <p>Some extra info: In my own application, I do a lot of things with a chart. I am setting a lot of properties etc. As I understand, there are many places where I create new COM objects. I tried to make sure I never use double dots, and I tried to call <code>Marshal.FinalReleaseComObject</code> on all objects that I am finished with. I didn't use the wrapper approach because it would introduce a <em>lot</em> of nesting.<br> <code>EXCEL.exe</code> did not close after my app finished its work. But... it did close when I told my app to do the same work again. Of course a new <code>EXCEL.exe</code> opened which did not close. Now I have removed alllll the <code>Marshal.FinalReleaseComObject</code> calls and the app works exactly the same. The <code>EXCEL.exe</code> stays, until I tell my app to redo the work, but then a new <code>EXCEL.exe</code> starts and stays. </p> <p>EDIT: Also when I tell my app to do other non-COM related work, after a while the <code>EXCEL.exe</code> disappears, but now no new <code>EXCEL.exe</code> appears.</p> <p>Not sure what conclusions I can draw from this...</p> http://stackoverflow.com/questions/277812/functional-languages-with-concurrent-garbage-collectors 1 Functional languages with concurrent garbage collectors? Jon Harrop 2008-11-10T13:02:56Z 2009-12-03T13:35:33Z <p>Microsoft's new F# programming language provides the powerful combination of functional programming (first-class lexical closures and tail calls) with an efficient concurrent garbage collector that makes it easy to leverage multicores.</p> <p>OCaml, Haskell, Erlang and all free Lisp and Scheme implementations that I know of do not have concurrent GCs. Scala and Clojure have a concurrent GC but no tail calls.</p> <p>So there appear to be no open source programming languages that combine these features. Is that correct?</p> http://stackoverflow.com/questions/1796668/java-comparing-memory-heap-dumps-in-netbeans 1 Java: Comparing memory heap dumps in Netbeans bguiz 2009-11-25T12:38:59Z 2009-12-03T10:46:34Z <p><strong><em>How do I compare memory heap dumps in Netbeans?</em></strong></p> <p>What I have done is to configure my project to use profiling, then added several profiling points at chosen lines of code (similar to setting breakpoints). These profiling points trigger a &quot;snapshot&quot;, which creates a memory dump.</p> <p>As my application is running, the profiling tab lists each of the profiling points, and marks the number of <em>hits</em> it has encounteed, providing a link to open a report for that profiling point. In addition, the profiler control panel adds the new snapshots to a list.</p> <p>If I open these reports and follow the links, or open the snapshots from the control panel, in both cases, Netbeans opens a <strong>snapshot</strong> tab with <code>Summary</code>, <code>Classes</code>, <code>Instances</code> and <code>OQL</code> subscreens.</p> <p>If I select one of them from the Profiler control panel, and press save, the file gets saved in <code>HPROF</code> format.</p> <p>If I select the menu <code>Profile --&gt; Compare Memory Snapshots</code>, it only allows me to select <code>NPS</code> format files, of which I cannot obtain any.</p> <p>I believe <em>Compare Memory Snapshots</em> sounds like it should be able to compare heap dumps, but I cannot figure out how to do it.</p> <h2>Questions</h2> <ul> <li><p>Where is Netbeans putting the NPS files (if it is indeed creating them)? If not how do I get Netbeans to create NPS files triggered from profiling points?</p></li> <li><p>Is there a way to get Netbeans to compare HPROF files, since that is the memory heap dump after all?</p></li> <li><p>Or am I simply completely overlooking something altogether?</p></li> </ul> <p>Thanks!</p> <p><hr></p> <h3>Background</h3> <p>Using Netbeans <code>6.7.1</code>.</p> <p>I am doing memory profiling for a really large &amp; complex application that has a memory leak problem. I have managed to solve large chunks of the leaks using a combination of Netbeans' profiler &amp; JHAT (command line util that comes with JDK). It's the remaining stragglers that I need a more powerful heap analysis capabilities for - the hypothesis-first approach that worked previously is becoming decreasingly effective.</p> <p>This question's really specific, for more background see <a href="http://stackoverflow.com/questions/1752714/memory-profiling-for-java-desktop-application">a question I have asked previously</a>.</p> http://stackoverflow.com/questions/1828550/portable-equivalent-to-gccs-attributecleanup 0 Portable equivalent to gcc's __attribute__(cleanup) ezpz 2009-12-01T20:07:37Z 2009-12-03T00:25:44Z <p>Recently I came across a gcc extension that I have found rather useful: <code>__attribute__(cleanup)</code></p> <p>Basically, this allows you to assign a cleanup call to a local variable at the time it exits scope. For instance, given the following section of code, all memory must be maintained and handled explicitly in any and all cases within the call to <code>foo</code>.</p> <pre><code>void foo() { char * buff = ...; /* some memory allocation */ char * buff2 = 0, * buff3 = 0; if (! buff) { return; } else { buff2 = ...; /* memory allocation */ if (! buff2) { goto clean_exit; } else { /* ... and so on ... */ } } clean_exit: free (buff); free (buff2); free (buff3); } </code></pre> <p>However, by using the extension that can reduce to </p> <pre><code>#define clean_pchar_scope __attribute__((cleanup(pchar_free))) void pchar_free (char ** c) { free (*c); } void foo () { char * buff clean_pchar_scope = ...; /* some memory allocation */ char * buff2 clean_pchar_scope = 0, * buff3 clean_pchar_scope = 0; if (! buff) return; buff2 = ...; /* memory allocation */ if (! buff2) return; /* and so on */ } </code></pre> <p>Now all memory is reclaimed on the basis of scope without the use of nested if/else or goto constructs coupled with a consolidated memory release section of the function. I realize that the use of goto could be avoided there for a more nested if/else construct (so, please, no holy wars on the goto...) and that the example is contrived, but the fact remains that this is can be quite a useful feature.</p> <p>Unfortunately, as far as I know, this is gcc-specific. I'm interested in any portable ways to do the same thing (if they even exist). Has anyone had experiences in doing this with something other than gcc?</p> <p><strong>EDIT:</strong> Seems that portability is not in play. Considering that, is there a way to do this <em>outside</em> of the gcc space? It seems like to nice a feature to be gcc-specific...</p> http://stackoverflow.com/questions/1834501/abort-preclean-due-to-time-in-concurrent-mark-sweep 1 "abort preclean due to time" in Concurrent Mark & Sweep ripper234 2009-12-02T17:27:28Z 2009-12-02T17:45:35Z <p>I'm getting "abort preclean due to time" when running Concurrent Mark &amp; Sweep in Java 6. What does it mean? Is the GC really halting in the middle before it did any real work?</p> http://stackoverflow.com/questions/1834510/adding-timestamp-to-javas-gc-messages-in-tomcat-6 1 Adding Timestamp to Java's GC messages in Tomcat 6 ripper234 2009-12-02T17:28:50Z 2009-12-02T17:44:04Z <p>I turned on Java's GC log options</p> <blockquote> <p>-XX:+PrintGC -XX:+PrintGCTimeStamps -XX:+PrintGCDetails</p> </blockquote> <p>Which print out these messages to standard output (catalina.out):</p> <pre><code>314.884: [CMS-concurrent-mark-start] 315.014: [CMS-concurrent-mark: 0.129/0.129 secs] [Times: user=0.14 sys=0.00, real=0.13 secs] 315.014: [CMS-concurrent-preclean-start] 315.016: [CMS-concurrent-preclean: 0.003/0.003 secs] [Times: user=0.00 sys=0.00, real=0.00 secs] 315.016: [CMS-concurrent-abortable-preclean-start] 332.055: [GC 332.055: [ParNew: 17128K-&gt;84K(19136K), 0.0017700 secs] 88000K-&gt;70956K(522176K) icms_dc=4 , 0.0018660 secs] [Times: user=0.00 sys=0.00, real=0.00 secs] CMS: abort preclean due to time 352.253: [CMS-concurrent-abortable-preclean: 0.023/37.237 secs] [Times: user=0.78 sys=0.02, real=37.23 secs] </code></pre> <p>How can I make these log lines appear with an actual timestamp (including date) instead of these numbers, which presumably mean "time since JVM started" ?</p> http://stackoverflow.com/questions/1833496/understanding-javas-gc-logs 0 Understanding Java's GC logs ripper234 2009-12-02T15:09:47Z 2009-12-02T16:22:38Z <p>I turned on verbose GC options on my JDK, and now I'm seeing lines such as </p> <pre><code>25.598: [CMS-concurrent-sweep-start] 25.622: [CMS-concurrent-sweep: 0.023/0.024 secs] [Times: user=0.02 sys=0.00, real=0.03 secs] 25.623: [CMS-concurrent-reset-start] 25.629: [CMS-concurrent-reset: 0.007/0.007 secs] [Times: user=0.01 sys=0.00, real=0.00 secs] </code></pre> <p>Anyone care to tell me exactly what all the parameters there mean?</p> <ol> <li>What's the difference between sys+user and real times?</li> <li>What does "0.023/0.024 secs" mean?</li> </ol> http://stackoverflow.com/questions/1829450/can-the-performance-timer-time-in-gc-be-wrong 0 Can the performance timer "% Time in GC" be wrong? Abel 2009-12-01T22:39:42Z 2009-12-02T03:26:56Z <p>We found that, since today, the <em>"% Time in GC"</em> (percent time in Garbage Collector) performance timer, steadily stood on 100% with only occasionally a bit lower. Even when at night no visitors were online.</p> <p>Then I placed <code>App_Offline.htm</code> in the root. Usually this brings down all ASP.NET activity. But for some odd reason, the <em>"% Time in GC"</em>, while lowered to 34%, remained steady.</p> <p>Am I looking over something obvious here? Some other GC related performance counters also seem to still act, but marginally.</p> <p><em>EDIT: I had written "only today", but it's really "since today". It hasn't gone away since.</em></p> http://stackoverflow.com/questions/1828906/will-my-object-always-be-there 2 Will my object always "be there"? Robert S. 2009-12-01T21:02:25Z 2009-12-01T23:05:58Z <p>If I have an object stored in memory, and I walk away from my application for an hour, will the object still be there when I get back?</p> <p>In other words, will the .NET garbage collector throw my object away because it hasn't been used for awhile?</p> http://stackoverflow.com/questions/1821848/is-it-possible-a-long-gc-cycle-is-causing-connection-refused-exceptions 0 Is it possible a long GC cycle is causing "Connection refused" exceptions? ripper234 2009-11-30T19:23:59Z 2009-11-30T22:09:08Z <p>We're seeing ConnectException with message "Connection refused" sporadically appearing at times when connecting to our Tomcat server. Could these be caused by long GC cycles?</p> <p>(We're activating up the relevant JVM flags to get more log messages on GC cycles, but I thought to ask this here anyways)</p> http://stackoverflow.com/questions/1821300/why-do-garbage-collectors-freeze-execution 5 Why do garbage collectors freeze execution? Martin 2009-11-30T17:50:33Z 2009-11-30T18:37:20Z <p>I was thinking about garbage collection on the way home, and I began wondering, why does the garbage collector totally freeze execution of a program? Personally I would have designed it to block any threads which try to allocate a new object, but threads which were running would be left alone. I can't imagine any situation where this would be a problem compared to how a garbage collector currently works.</p> http://stackoverflow.com/questions/1821249/how-does-garbage-collection-happen-for-classes-having-static-methods-in-c-vb-net 1 How does Garbage collection happen for Classes having static methods in C#/VB.NET? RJ 2009-11-30T17:39:38Z 2009-11-30T18:26:10Z <p>Does setting the object to null make it MARKED for GC?</p> <p>EDIT: A class has got multiple static methods. when using these methods in your program, what is the best way to ensure the objects are marked for GC after a certain point?</p> http://stackoverflow.com/questions/1257391/outrunning-the-garbage-collector 3 Outrunning the Garbage Collector? Carlo 2009-08-10T21:46:04Z 2009-11-30T18:02:49Z <p>Ok this is potentially a noob question but here goes.</p> <p>Is it possible to "outrun" the garbage collector?</p> <p>The reason I ask is because I have a recursive method that gets run several times during some event in my application (by several I mean around 60 times per second and the event goes on for an indefinite amount of time, even minutes). The problem is that in each loop of the recursive method, I create a fairly complex object (TreeViewItem with some mods we need for the project AND another complex object that works as the DataContext for the TreeViewItem), so my concern is that these TreeViewItems stay in the heap when the recursive method runs, so when the garbage collector kicks in, it doesn't clean them; and possibly, the next time the recursive method starts, it stacks some more TreeViewItem, and the garbage collector never catches up.</p> <p>The problem is that we have a memory leak, and we're looking for the culprit.</p> <p>Any help really appretiated</p> http://stackoverflow.com/questions/1817677/why-is-my-destructor-getting-called 1 Why is my Destructor getting called? Mark 2009-11-30T03:11:45Z 2009-11-30T16:22:06Z <p>I have a few classes that hold references to other classes through IDictionary instance members.</p> <p>Like so:</p> <pre><code>class A { private readonly Dictionary&lt;int, B&gt; _particles = new Dictionary&lt;int, B&gt;(); public void CreateNewB(int someInt) { var b = new B(); if (!_particles.ContainsKey(someInt) _particles.Add(someInt, b); } } </code></pre> <p>so this is the setup, and I NEVER remove them from this dictionary, but for some reason, the destructor for class B gets called on a GC run every now and then and I dont understand why.</p> <p>Could it be something to do with how the Dictionary class adds new references?</p> <p><strong>FIXED</strong>:</p> <p>Ok, thank you all for your answers, I have certainly gain a large understanding about the GC and deconstructors now.</p> <p>But the issue was my own, I was adding <strong>someInt</strong> only if it did not exist already and through flawed business logic, <strong>someInt</strong> was always 1, so the first time through it worked and the deconstructors did not get called. But the second time though, the "b" instance was simply not added to the list and was cleaned up in the GC run.</p> <p>Thanks again to all who helped out!</p> http://stackoverflow.com/questions/245856/when-should-i-dispose-my-objects-in-net 6 When should I dispose my objects in .NET? danmine 2008-10-29T05:10:13Z 2009-11-30T09:51:16Z <p>For general code, do I really need to dispose an object? Can I just ignore it for the most part or is it a good idea to always dispose an object when your 100% sure you don't need it anymroe? </p> http://stackoverflow.com/questions/1815390/what-do-xx-printgc-and-xx-printgcdetails-flags-do 0 What do -XX:-PrintGC and XX:-PrintGCDetails flags do? ripper234 2009-11-29T12:29:05Z 2009-11-30T05:52:25Z <p>I found the JVM flags <a href="http://java.sun.com/javase/technologies/hotspot/vmoptions.jsp" rel="nofollow">here</a>. Is there a more detailed explaination of what exactly they do?</p> http://stackoverflow.com/questions/1817488/is-it-more-efficient-to-call-the-net-garbage-collector 0 Is it more efficient to call the .net Garbage collector? Euclid 2009-11-30T01:41:24Z 2009-11-30T01:53:40Z <p>Due to the overhead of calling the garbage collector in the CLR, is it more efficient to leave it, or force to garbage collection when objects go out of scope? </p> http://stackoverflow.com/questions/1816419/does-passing-a-struct-into-an-interface-field-allocate 3 Does passing a struct into an interface field allocate? Martin 2009-11-29T19:00:54Z 2009-11-30T00:05:23Z <p>I have a structure something like this</p> <pre><code>struct MyStructure :IFoo { } </code></pre> <p>and a method like this:</p> <pre><code>public BarThisFoo(IFoo a) { } </code></pre> <p>my question is does passing the structure into that method "box" the structure, thus causing a garbage allocation?</p> <p>Addendum: Before anyone says it, garbage collection is not free in this application, it's actually very sensitive to garbage collections, so allocation free code is important.</p> http://stackoverflow.com/questions/1809799/net-garbage-collection 2 .NET Garbage Collection. Achilles 2009-11-27T17:08:12Z 2009-11-27T18:42:29Z <p>Suppose I have Two Objects:</p> <p>object1, object2</p> <p>When I do the following assign: </p> <pre><code>object2.Foo = object1.Foo; //Edit: where Foo is a reference type </code></pre> <p>What does the garbage collector do:</p> <ol> <li>Does it collect object1, while perserving the value assigned to object2.Foo?</li> <li>Or, Does object1 persist until object2 is collected because object2.Foo references object1.Foo?</li> <li>Or does garbage collection do something completely different, if so please explain?</li> </ol> <p>Thanks!</p> http://stackoverflow.com/questions/1803772/could-someone-explain-the-behaviour-of-the-garbage-collector 4 Could someone explain the behaviour of the garbage collector? Max 2009-11-26T13:49:50Z 2009-11-27T08:33:36Z <p>I am playing around with the garbage collector in C# (or rather the CLR?) trying to better understand memory management in C#.</p> <p>I made a small sample program that reads three larger files into a <code>byte[]</code> buffer. I wanted to see, if </p> <ul> <li>I actually need to to anything in order to handle memory efficient</li> <li>it has any impact when setting the <code>byte[]</code> to null after the end of the current iteration </li> <li>and finally if it would help when forcing a garbage collection via <code>GC.Collect()</code></li> </ul> <p>Disclaimer: I measured memory consumption with windows task manager and rounded it. I tried several times, but overall it remained about the same.</p> <p>Here is my simple sample program:</p> <pre><code> static void Main(string[] args) { Loop(); } private static void Loop() { var list = new List&lt;string&gt; { @"C:\Users\Public\Music\Sample Music\Amanda.wma", // Size: 4.75 MB @"C:\Users\Public\Music\Sample Music\Despertar.wma", // Size: 5.92 MB @"C:\Users\Public\Music\Sample Music\Distance.wma", // Size: 6.31 MB }; Console.WriteLine("before loop"); Console.ReadLine(); foreach (string pathname in list) { // ... code here ... Console.WriteLine("in loop"); Console.ReadLine(); } Console.WriteLine(GC.CollectionCount(1)); Console.WriteLine("end loop"); Console.ReadLine(); } </code></pre> <p>For each test, I only changed the contents of the <code>foreach</code> loop. Then I ran the program, at each <code>Console.ReadLine()</code> I stopped and checked the memory usage of the process in windows task manager. I took notes of the used memory and then continued the program with return (I know about breakpoints ;) ). Just after the end of the loop, I wrote <code>GC.CollectionCount(1)</code> to the console in order to see how often the GC jumped in if at all.</p> <p><br /></p> <h2>Results</h2> <p><hr /> <strong>Test 1:</strong></p> <pre><code> foreach ( ... ) { byte[] buffer = File.ReadAllBytes(pathname); Console.WriteLine ... } </code></pre> <p>Result (memory used):</p> <pre><code>before loop: 9.000 K 1. iteration: 13.000 K 2. iteration: 19.000 K 3. iteration: 25.000 K after loop: 25.000 K GC.CollectionCount(1): 2 </code></pre> <p><hr /></p> <p><strong>Test 2:</strong></p> <pre><code> foreach ( ... ) { byte[] buffer = File.ReadAllBytes(pathname); buffer = null; Console.WriteLine ... } </code></pre> <p>Result (memory used):</p> <pre><code>before loop: 9.000 K 1. iteration: 13.000 K 2. iteration: 14.000 K 3. iteration: 15.000 K after loop: 15.000 K GC.CollectionCount(1): 2 </code></pre> <p><hr /></p> <p><strong>Test 3:</strong></p> <pre><code> foreach ( ... ) { byte[] buffer = File.ReadAllBytes(pathname); buffer = null; GC.Collect(); Console.WriteLine ... } </code></pre> <p>Result (memory used):</p> <pre><code>before loop: 9.000 K 1. iteration: 8.500 K 2. iteration: 8.600 K 3. iteration: 8.600 K after loop: 8.600 K GC.CollectionCount(1): 3 </code></pre> <p><hr /></p> <p><br /></p> <h2>What I dont understand:</h2> <ul> <li>In Test 1, the memory increases with each iteration. Therefore I guess that the memory is NOT freed at the end of the loop. But the GC still says it collected 2 times (<code>GC.CollectionCount</code>). How so?</li> <li>In Test 2, it obviously helps that <code>buffer</code> is set to <code>null</code>. The memory is lower then in Test 2. But why does <code>GC.CollectionCount</code> output 2 and not 3? <em>And why is the memory usage not as low as in Test 3?</em></li> <li>Test 3 uses the least memory. I would say it is so because 1. the reference to the memory is removed (<code>buffer</code> is set to <code>null</code>) and therefore when the garbage collector is called via <code>GC.Collect()</code> it can free the memory. Seems pretty clear.</li> </ul> <p>If anyone with more experience could shed some light on some of the points above, it would really help me. Pretty interesting topic imho.</p> http://stackoverflow.com/questions/1804186/what-are-the-best-garbage-collection-settings-for-client-side 1 What are the best garbage collection settings for client side? Yishai 2009-11-26T15:03:16Z 2009-11-26T21:15:20Z <p>Recent JVM's have a lot of XX parameters for garbage collection (see <a href="http://java.sun.com/javase/technologies/hotspot/vmoptions.jsp#PerformanceTuning" rel="nofollow">here</a> for example), but what are the options which can make a client side Swing application really perform better?</p> <p>I should note that one of the things that really annoys me on client side java applications is the large delay in stop-the-world garbage collection. In Intelli-J IDEA I have seen it go three minutes or more.</p> <p>EDIT: Thanks for all the responses. Just to report back I put on the CMS garbage collector for IDEA (which is a good common reference of the type of application that most everyone reading this question is familiar with) using the setting's suggested from <a href="http://java.sun.com/docs/hotspot/gc5.0/gc%5Ftuning%5F5.html#5.4.9.2" rel="nofollow">here</a>. I also set -XX:+StringCache to see if it would reduce memory requirements.</p> <p>In general, the observation is that regular running performance is not degraded to the point where you can notice looking at it. The memory reduction is <em>huge</em> using the String Cache option, however the CMS method is not thorough and ends up requiring a stop the world garbage collection cycle (back to the three minute wait) to clear out the memory (400MB in one run).</p> <p>However, given the reduced memory footprint, I might be able to just put a smaller maximum amount of memory which will keep the stop the world collections smaller in sizes.</p> <p>IDEA 8.1.4 comes with JDK 1.6.0_12, so I didn't test G1 yet. Also, my machine only has 2 cores, so a G1 approach won't really be maximized. Time to hit the boss up for a better machine ;).</p>