PDA

View Full Version : OutOfMemoryError on business connector


starlette
06-11-2003, 02:19
Hello
I'm trying to inbound a package on developer, but it seems like there's no more space --> "OutOfMemoryError".
I don't want to delete anything else from the business connector so that I can replace a new one.
Isn't there another way to inbounding packages?
Is it probably another error affecting space in business connector?

Thx
Arlette

mrajanet
06-11-2003, 06:53
Increase the JVM size in your server.bat. It should take care of your problem.

sscott
06-11-2003, 07:16
When installing a package unselect the "Activate upon installation" and the process will use less memory. You then need to "Activate Inactive Packages" from Package Management.

rajeshrao
06-27-2003, 10:41
Hello Arlette,

Try dropping all the variables in the pipeline, which you donot need after a particular point.
You could also write a java service which calls

System.gc();

Call this after dropping records which are huge, at regular interval. Note this will slow down your process significantly. Use this as a last resort.

- Rajesh