What is the most like cause lf Java Heap Space error?

2009-09-15 Thread Rick Faircloth
I've got a computer set up that does nothing but process data for about 8,000 properties and 80,000 photos every day. The processing is handled by a series of about 30 scheduled tasks that run consecutively. The computer is a few years old and has only about 1 GB of ram and right now the

Re: What is the most like cause lf Java Heap Space error?

2009-09-15 Thread Claude Schneegans
I can see mostly two reasons: 1. an infinite loop, this would be in your code, 2.. some memroy leak, this would be some in other's code. ~| Want to reach the ColdFusion community with something they want? Let them know on the

RE: What is the most like cause lf Java Heap Space error?

2009-09-15 Thread Rick Faircloth
Thanks, Claude... Rick -Original Message- From: Claude Schneegans [mailto:schneeg...@internetique.com] Sent: Tuesday, September 15, 2009 2:21 PM To: cf-talk Subject: Re: What is the most like cause lf Java Heap Space error? I can see mostly two reasons: 1. an infinite loop

Re: What is the most like cause lf Java Heap Space error?

2009-09-15 Thread Claude Schneegans
... hmmm, a memroy leak is not good, but a memory leak is even worse ;-/ ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

RE: What is the most like cause lf Java Heap Space error?

2009-09-15 Thread Josh Nathanson
Space error? Thanks, Claude... Rick -Original Message- From: Claude Schneegans [mailto:schneeg...@internetique.com] Sent: Tuesday, September 15, 2009 2:21 PM To: cf-talk Subject: Re: What is the most like cause lf Java Heap Space error? I can see mostly two reasons: 1. an infinite loop

RE: What is the most like cause lf Java Heap Space error?

2009-09-15 Thread Rick Faircloth
...@oakcitygraphics.com] Sent: Tuesday, September 15, 2009 2:41 PM To: cf-talk Subject: RE: What is the most like cause lf Java Heap Space error? I seem to remember something about CFIMAGE hogging a lot of RAM...anyone else have more info? -- Josh -Original Message- From: Rick Faircloth

RE: What is the most like cause lf Java Heap Space error?

2009-09-15 Thread brad
it runs. Does it go back down by itself? After how long? Does memory go back down if you run garbage collection manually? That should be a starting point. ~Brad Original Message Subject: RE: What is the most like cause lf Java Heap Space error? From: Rick Faircloth r

Re: What is the most like cause lf Java Heap Space error?

2009-09-15 Thread Alan Rother
What are you using to process the unzip? Not properly closing the file you worked on can cause a slow memory leak... -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org

RE: What is the most like cause lf Java Heap Space error?

2009-09-15 Thread Rick Faircloth
with garbage collection. What do you mean? -Original Message- From: b...@bradwood.com [mailto:b...@bradwood.com] Sent: Tuesday, September 15, 2009 4:14 PM To: cf-talk Subject: RE: What is the most like cause lf Java Heap Space error? Zipping itself can be a little memory intensive if all those

RE: What is the most like cause lf Java Heap Space error?

2009-09-15 Thread Rick Faircloth
and files. As soon as it starts, most days, it throws the error. -Original Message- From: Alan Rother [mailto:alan.rot...@gmail.com] Sent: Tuesday, September 15, 2009 4:14 PM To: cf-talk Subject: Re: What is the most like cause lf Java Heap Space error? What are you using to process

Re: What is the most like cause lf Java Heap Space error?

2009-09-15 Thread Claude Schneegans
I'm running batch files using pkzip25.exe. I may be wrong, (DOS is far away), but aren't batch files supposed to contain some sort of exit command, otherwise they may stay waiting for some one to enter the next command ? ~|

RE: What is the most like cause lf Java Heap Space error?

2009-09-15 Thread brad
Subject: RE: What is the most like cause lf Java Heap Space error? From: Rick Faircloth r...@whitestonemedia.com Date: Tue, September 15, 2009 3:30 pm To: cf-talk cf-talk@houseoffusion.com No zipping...only unzipping. And yes, I do need to add some more RAM...definitely couldn't hurt

RE: What is the most like cause lf Java Heap Space error?

2009-09-15 Thread Rick Faircloth
] Sent: Tuesday, September 15, 2009 5:09 PM To: cf-talk Subject: Re: What is the most like cause lf Java Heap Space error? I'm running batch files using pkzip25.exe. I may be wrong, (DOS is far away), but aren't batch files supposed to contain some sort of exit command, otherwise they may stay

RE: What is the most like cause lf Java Heap Space error?

2009-09-15 Thread Rick Faircloth
: RE: What is the most like cause lf Java Heap Space error? Woah, I wouldn't reduce it. If your server is already running out of memory, the last thing it needs is less to work with. Garbage collection is an automatic process of your JVM that reclaims used memory as free space if it is no longer

RE: What is the most like cause lf Java Heap Space error?

2009-09-15 Thread Rick Faircloth
is the most like cause lf Java Heap Space error? Well, now I misspoke... I originally set up the unzip commands using batch files, but went to cfexecute. (Which I assume actually executes a batch process?) Anyway, here one example of the code...perhaps there should be an exit command? cfexecute