The framework I'm using starts so many threads. I know 1500 threads is
really a lot, I just thought maybe somebody had similar problem and
found a solution. I set the -Xss64k after reading this link
http://blogs.msdn.com/oldnewthing/archive/2005/07/29/444912.aspx , I
thought it should work. 1500 threads * 64k = 96M.
> The framework I'm using starts so many threads.
What framework is it that uses so many many ? Seems odd to me...
>I set the -Xss64k after reading this link
> http://blogs.msdn.com/oldnewthing/archive/2005/07/29/444912.aspx , I
> thought it should work. 1500 threads * 64k = 96M.
At a guess the problem is more about fragmenting the address space, than
running out of RAM as such. Also, don't forget that the JVM will take more
memory than the -Xmx flag implies. For instance, it'll need space for its own
code -- code dynamically generated by the JIT and the static code in the JVM
DLL itself.
Maybe jconsole (standard tool in 1.5) would help you find out more.
-- chris
jacek - 16 May 2006 09:06 GMT
www.jooneworld.com
Basic idea of the framework is nice, but it's not good for the size of
neural networks I need.
did anyone have some positive experience with other monitoring and
management java tools than jconsole? Because of
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6301562 I cannot use
it and I'm looking for some different tools of this kind.
--jacek
Chris Uppal - 16 May 2006 13:07 GMT
> www.jooneworld.com
Thanks.
> did anyone have some positive experience with other monitoring and
> management java tools than jconsole?
Not me.
> Because of
> http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6301562 I cannot use
> it and I'm looking for some different tools of this kind.
Is it really so difficult to get a temporary new login ? Your system
adminstrators much be real monsters ;-)
-- chris