Re: Cannot start GRT shell in debug (Java OutOfMemory Error)
Posted by: Michael G. Zinner
Date: November 21, 2005 05:11AM

How much main memory do you have? I have 1GB and it works without a problem here.

These are the debugging options we use for the JVM.

if (grt->options & MYX_GRT_REMOTE_DEBUG)
{
jvm_options[1].optionString= "-Xdebug";
jvm_options[2].optionString= strdup("-Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n");
jvm_options[3].optionString= "-Xnoagent";
jvm_options[4].optionString= "-Djava.compiler=NONE";
jvm_options[5].optionString= "-Xmx256m";
}
else
jvm_options[1].optionString= "-Xmx256m";

As you can see, there is little different in the normal and debugging mode in respect to memory. So I am not sure how to help you. Would you have a different machine you could try on? Or just run Eclipse and the MT directly after system start?

Mike

Michael Zinner, Team Lead, Developer Tools
MySQL AB, www.mysql.com

Are you MySQL certified? www.mysql.com/certification

Options: ReplyQuote


Subject
Written By
Posted
Re: Cannot start GRT shell in debug (Java OutOfMemory Error)
November 21, 2005 05:11AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.