Re: fixing outofmemoryerror: java heap space

2007-10-24 Thread Tom Chiverton
On Tuesday 23 Oct 2007, [EMAIL PROTECTED] wrote:
 java heap space.  I have just set up this server-- so I am hoping there is
 some value I can tweak that will allow this page to run... it is vitally
 important to the website that it works... does anybody know what I could
 do?  Thanks!

Well, you can adjust the Java arguments CF uses, but it's probably a much 
better idea to find out why your app is so memoray intensive and fix that.

-- 
Tom Chiverton. Are you a great ColdFusion programmer, who knows Reactor and 
ColdSpring, and has done some Flex work ? Would you like to work for a top 30 
law firm in Manchester, UK ? Are not an agency ? If yes, send email !



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office.  Any reference to a partner in 
relation to Halliwells LLP means a member of Halliwells LLP.  Regulated by The 
Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291939
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


fixing outofmemoryerror: java heap space

2007-10-23 Thread Jessica Kennedy
Hi, I am running a coldfusion page that calculates a large volume of variables, 
which has thus far not been a problem.  The pages have worked fine (maybe taken 
a while to load) on my testing server  on some web space I have.  However, I 
uploaded the file to  its final resting place on a semi-dedicated server, and 
I am now getting an error 500- outofmemoryerror: java heap space.  I have just 
set up this server-- so I am hoping there is some value I can tweak that will 
allow this page to run... it is vitally important to the website that it 
works... does anybody know what I could do?  Thanks! 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291856
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: fixing outofmemoryerror: java heap space

2007-10-23 Thread Matthew Small
Hi Jessica,
   What I'm about to say isn't CF-specific, but it true for all web apps.
   Simply testing the application on a server does not indicate that it's going 
to run fine in a production environment.  The fact that you know of a large 
amount of variables indicates that you already know that there's a basic 
problem in the application.
   Additionally, consider that you're running this in a hosting space with 
other applications that are also consuming resources.  If you use too many 
objects and/or objects that are pinned in memory, you will quickly run out of 
memory space on the heap.  
   Keep in mind, there's no fix my problem registry key for everything.  You 
have a basic memory leak problem, and the resolution is to fix the code that 
causing the memory leak.

- Matt Small

 Hi, I am running a coldfusion page that calculates a large volume of 
 variables, which has thus far not been a problem.  The pages have 
 worked fine (maybe taken a while to load) on my testing server  on 
 some web space I have.  However, I uploaded the file to  its final 
 resting place on a semi-dedicated server, and I am now getting an 
 error 500- outofmemoryerror: java heap space.  I have just set up this 
 server-- so I am hoping there is some value I can tweak that will 
 allow this page to run... it is vitally important to the website that 
 it works... does anybody know what I could do?  Thanks! 


~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291875
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: fixing outofmemoryerror: java heap space

2007-10-23 Thread Matthew Small
Hi Jessica,
   What I'm about to say isn't CF-specific, but it true for all web apps.
   Simply testing the application on a server does not indicate that it's going 
to run fine in a production environment.  The fact that you know of a large 
amount of variables indicates that you already know that there's a basic 
problem in the application.
Additiona

 Hi, I am running a coldfusion page that calculates a large volume of 
 variables, which has thus far not been a problem.  The pages have 
 worked fine (maybe taken a while to load) on my testing server  on 
 some web space I have.  However, I uploaded the file to  its final 
 resting place on a semi-dedicated server, and I am now getting an 
 error 500- outofmemoryerror: java heap space.  I have just set up this 
 server-- so I am hoping there is some value I can tweak that will 
 allow this page to run... it is vitally important to the website that 
 it works... does anybody know what I could do?  Thanks! 


~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291873
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: fixing outofmemoryerror: java heap space

2007-10-23 Thread Matthew Small
Hi Jessica,
   What I'm about to say isn't CF-specific, but it true for all web apps.
   Simply testing the application on a server does not indicate that it's going 
to run fine in a production environment.  The fact that you know of a large 
amount of variables indicates that you already know that there's a basic 
problem in the application.
Additiona

 Hi, I am running a coldfusion page that calculates a large volume of 
 variables, which has thus far not been a problem.  The pages have 
 worked fine (maybe taken a while to load) on my testing server  on 
 some web space I have.  However, I uploaded the file to  its final 
 resting place on a semi-dedicated server, and I am now getting an 
 error 500- outofmemoryerror: java heap space.  I have just set up this 
 server-- so I am hoping there is some value I can tweak that will 
 allow this page to run... it is vitally important to the website that 
 it works... does anybody know what I could do?  Thanks! 


~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291872
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: fixing outofmemoryerror: java heap space

2007-10-23 Thread Matthew Small
Hi Jessica,
   What I'm about to say isn't CF-specific, but it true for all web apps.
   Simply testing the application on a server does not indicate that it's going 
to run fine in a production environment.  The fact that you know of a large 
amount of variables indicates that you already know that there's a basic 
problem in the application.
Additiona

 Hi, I am running a coldfusion page that calculates a large volume of 
 variables, which has thus far not been a problem.  The pages have 
 worked fine (maybe taken a while to load) on my testing server  on 
 some web space I have.  However, I uploaded the file to  its final 
 resting place on a semi-dedicated server, and I am now getting an 
 error 500- outofmemoryerror: java heap space.  I have just set up this 
 server-- so I am hoping there is some value I can tweak that will 
 allow this page to run... it is vitally important to the website that 
 it works... does anybody know what I could do?  Thanks! 


~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291874
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4