Re: Slightly OT - JVM memory usage

2008-12-18 Thread Craigsell
No, neither application shows memory usage at the thread level. They only display the two types of allocated memory in the heap-used memory and total memory at the time the thread was running. I would love to try and tune the server but I don't "own" the box. I have no access at that level.

Re: Slightly OT - JVM memory usage

2008-12-18 Thread Wil Genovese
With both of those you can see the details of each thread. I'm guessing your using the JDBC wrapping features so you can see the details of each query that is run. Also, anything older than JVM 1.4.2_13 (1.4.2_19 is the most current version of the .14 line) is going to cause you problems. Tuning

Re: Slightly OT - JVM memory usage

2008-12-18 Thread Ravi Gehlot
Craig, I think that SeeFusion has it broken down by thread. I might be mistaken as to what you mean by "Thread" in actuality but if you look at the demo it says there on the label Thread for Active Requests. It then shows you the file name asked by the request. Correct me if I am wrong. Ra

Re: Slightly OT - JVM memory usage

2008-12-18 Thread Craigsell
We are running Jrun version 4. Our plan is to try and tune the JVM -- it needs it. We have folks who specialize in that and will be bringing them on board as soon as they are available. Immediate problem is whatever is grabbing the memory is not releasing it so the GC can clean it up. Or the

Re: Slightly OT - JVM memory usage

2008-12-18 Thread Ravi Gehlot
Craig, Take a look on their demo version at http://www.seefusion.com/index.cfm?do=c.livedemo They let you monitor Thread usage and memory load. Ravi Gehlot Craigsell wrote: > We've been having a problem with our cfmx7 server. Something is grabbing all > the memory and refusing to rele

Re: Slightly OT - JVM memory usage

2008-12-18 Thread Ravi Gehlot
Hello Craig, You will need an utility for monitoring and troubleshooting ColdFusion application. If you can see how you server is processing request in real time then you can tell what is going on. Try SeeFusion from http://www.seefusion.com/ Good Luck, Ravi Gehlot. Craigsell wrote: > I

Re: Slightly OT - JVM memory usage

2008-12-18 Thread Wil Genovese
There can be many reasons for this. I think we've seen them all at our company. They range from poorly written code and queries to outdated JVM's Which JVM version are you running? Large uncontrolled queries can cause memory problems. Have you tuned the JVM for memory performance and tuned the g

Re: Slightly OT - JVM memory usage

2008-12-18 Thread Craigsell
It's more than just varring or cfc's -- i know we have issues with that but not to the extent where 1gb of memory is consumed in no time flat. Problem is this is a corporate box -- lots of developers at varying levels of experience with thousands of pages. I can't tell what the heck is causing

Re: Slightly OT - JVM memory usage

2008-12-18 Thread Robert Bailey
Are you using a lot of CFC's? Maybe you are not varring I like to use Bea's JRockit, but it is hard to get a hold of it unless you downloaded if before they took it off the site. It is still included in Weblogic (can download a trial). If you have CF Enterprise, you could deploy it as an ear/wa

RE: Slightly OT - JVM memory usage

2008-12-18 Thread Manish Grewal
Which OS are you using? Not exactly what you are looking for, but I would start with the Task Manager on windows or ps/top commands on linux. -Original Message- From: Craigsell [mailto:craigs...@charter.net] Sent: Thursday, December 18, 2008 11:10 PM To: cf-talk Subject: Slightly OT - JV