RE: CFMX memory usage under load : is this normal?

2007-06-05 Thread Dave Watts
... but I'm wondering if this is symptomatic of a memory problem/leak somewhere ... No, as long as memory used doesn't increase over time. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training

Re: CFMX memory usage under load : is this normal?

2007-06-05 Thread James Holmes
Yes this is normal. Our busy SPARC server has a 2.5 GB JVM and frees over 600MB when it does a GC. It does this at roughly 30 second intervals or so, like your figures show. On 6/6/07, Terry Ford [EMAIL PROTECTED] wrote: I've never actually paid much attention to CFMX's memory usage before, but

Re: CFMX memory usage under load : is this normal?

2007-06-05 Thread Terry Ford
Thanks. I guess the developer in me isn't quite comfortable with so much temporary object creation and destruction. CFMX pools db connections and threads; why not pool query objects, instead of instantiating new ones on each request? Looks like the JRE creates and destroys new query objects