pf » ColdFusion Garbage

ColdFusion Garbage

coldfusion

Now that you have had a chance to read my outline of garbage collection tuning in java. You should be asking yourself how does this relate to my ColdFusion server. Or maybe you just wondered what Garbage Collection has to do with ColdFusion Servers.

So I'll start with a really quick overview of what garbage collection (GC) is. In Java your variables are represented as objects on the heap (the heap is the chunk of memory you allocate to the JVM), the objects are considered to be either alive (in use) or dead (out of scope, no references point to it). For instance when you have a request variable, it is out of scope at the end of your http request (there is no way to access that variable again). So the Java Virtual Machine (the JVM) needs some way of freeing the memory that dead objects are taking up, this process is called garbage collection.

The first thing you might notice after reading the garbage collection outline is that ColdFusion MX 6.1 is using the throughput collector, or the parallel young generation collector (-XX:+UseParallelGC) by default. If your ColdFusion server only has one CPU you may get better performance by using the default collector. If you have hyperthreading enabled CPU's you may be ok. If your server has multiple CPU's you may try tuning the number of threads that the parallel collector is using with -XX:ParallelGCThreads=n.

If you have 4 CPU's with lots of RAM you might want to try adding -XX:+AggressiveHeap to your JVM startup options. You might also want to try this if you have 2 CPU's with hyperthreading enabled.

It may be a good idea to increase your -XX:MaxPermSize=n if you have a lot of CFM files. Since each file is a class, you are adding a lot of class and method info to the perm generation.

Another thing you can try tuning is the sizes of the young and tenured generations. You can do this with the -XX:NewRatio option. If you have a lot of cached, or persistent variables you will want to have a bigger tenured generation. But if your doing a lot of dynamic execution then you may be better off increasing your young generation.

Tuning is always about tradeoffs, and the specifics of your application, and your hardware.



Related Entries
2 people found this page useful, what do you think?

WAF for CF
Trackback Address: 139/1DD1FCA2ADC90B5FBCEDC2840C3C88C4
On 06/08/2004 at 5:02:24 PM MDT Pete Freitag wrote:
1
More info about CF and GC here: http://www.sumoc.com/blog/index.cfm?mode=entry&entry=CDCDBF8B-5004-2066-B7460CDEAB79328F

On 10/26/2008 at 7:35:27 PM MST kathy wrote:
2
thanks for this! I've been meaning to learn more about garbage collection in ColdFusion and I intend to start from the basics.

On 06/25/2009 at 8:00:50 AM MDT Coldfusion Developer wrote:
3
I have just posted a new blog entry which shows how you can do programmatic garbage collection if your memory gets below a certain threshold.. Hope it helps:- http://www.beetrootstreet.com/blog/index.cfm/2009/6/25/Clearing-ColdFusion-memory-using-garbage-collection-when-memory-gets-low




  



Spell Checker by Foundeo





Subscribe to my RSS Feed: solosub RSS
Tags