Maximum numbers of threads and heap size

2006-10-18 Thread Joseph S
java version "1.5.0_08" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_08-b03) Java HotSpot(TM) Client VM (build 1.5.0_08-b03, mixed mode) On a redhat 9 machine, I can get a maximum of 612 threads in tomcat when I start it with -Xmx1500M. Without a -Xmx param I get 3448 threads.

Adjusting heap size (Was: server sees no body...)

2001-01-30 Thread Steinar Bang
ng > to top it gives up way before it can make a serious impact on the > available swap space? > Is there some command line argument I have to give to the java > runtime, I wonder? Yes, there is. "-mx" sets the maximum heap size. This is 16MB or thereabouts by default.

Re: JVM and heap size?

2000-10-08 Thread Peter Schuller
> My program run well in BLKDOWN Jdk1.2.2. So, I think it is not related to my > program > such as dead lock. Of course, I focused on the dead lock for several days. That reminds me; I have had dead-lock problems with IBM's JDK 1.3 too, in an IRC implementation I have written/am writing. For hist

JVM & heap size and an irrecoverable stack overflow has occurred!

2000-10-07 Thread yangyuexiang
Hi, Everyone, When I add shutDownHook to the Runtime, the system print out "an irrecoverable stack overflow has occurred". My program run under SUN JVM(current version). What's mean? Thanks yangyuexiang -- To UNSUBSCRIBE, em

Re: JVM and heap size?

2000-10-07 Thread yangyuexiang
Hi, Everybody: The problem is actually related to the IBM JVM (At least I think so). Previousely, I used JVM which was download about June. This JVM had fatel Garbage collection, IBM already listed in the fixing of August. Actually, I download Java(TM) 2 Runtime Environment, Standard Edition (bu

Re: JVM and heap size?

2000-10-07 Thread Peter Schuller
> > HotSpot is a Sun thing; there is no "HotSpot" in IBM's JVM. > > To be pandantic, HotSpot is a java Just-in-time compiler, aka JIT. > IBM's JVM also has a JIT, it just has a different name, and it's > on by default. IBM requires an -option at runtime to disable it. Yes I know, HotSpot *is* a

Re: JVM and heap size?

2000-10-06 Thread Joi Ellis
ore with SEGV errors. Consistantly. When I posted a polite query about it on their newsgroup, they canceled my post. :p > > > Who can give me suggestions to control the heap size of JVM? > > My system is Redhat 6.2. > > -Xmx and -Xms. "java -X" for more info. -- Jo

Re: JVM and heap size?

2000-10-06 Thread Peter Schuller
ctly how does it "crash"? > Who can give me suggestions to control the heap size of JVM? > My system is Redhat 6.2. -Xmx and -Xms. "java -X" for more info. -- / Peter Schuller, InfiDyne Technologies HB PGP userID: 0x5584BD98 or 'Peter Schuller <[EMAIL PROTECTED]&g

Re: JVM and heap size?

2000-10-06 Thread Joi Ellis
xpectedly and the JVM hangs finally. > It seems there is some memory leak in the HotSpot of IBM JVM. > > Who can give me suggestions to control the heap size of JVM? > My system is Redhat 6.2. > > Thanks very much! > > yangyuexiang > I consider the IBM JVM for linux

JVM and heap size?

2000-10-06 Thread yangyuexiang
leak in the HotSpot of IBM JVM. Who can give me suggestions to control the heap size of JVM? My system is Redhat 6.2. Thanks very much! yangyuexiang -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubs

Re: heap size

2000-01-31 Thread Jo Uthus
yangyuex wrote: | How to restrict the initial/Max heap size when the Java VM is started? java -Xmx18m your.app ^^^ Your heapsize -- Jo Uthus| e-mail: [EMAIL PROTECTED] (private) Software Engineer | e-mail: [EMAIL PROTECTED] (work

heap size

2000-01-30 Thread yangyuex
Hi, How to restrict the initial/Max heap size when the Java VM is started? Thanks very much! yang -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: Changing heap size

1999-01-02 Thread Joseph Shraibman
alias java="java -Xmx555" ALPESH KOTHARI wrote: > Hello, > > I am using Java2 on RH6.0. I have developed an GUI > application using Java. Now it runs out of memory at > some places. So I am increasing heap size with the > help of -Xmx and it works fine. But, I have t

Changing heap size

1999-01-02 Thread ALPESH KOTHARI
Hello, I am using Java2 on RH6.0. I have developed an GUI application using Java. Now it runs out of memory at some places. So I am increasing heap size with the help of -Xmx and it works fine. But, I have to do this every time I run application. Is it possible someway to permenantly change the

Re: Maximum Heap Size

1998-12-08 Thread Robert Ritchy
I don't know if this has been mentioned but we developed a multi-threaded app and had OutOfMemoryError problems similiar to yours. The culprit was the 1.1.5 jdk (had thread memory leak problems). After upgrading the jdk our problems went away. Robert Mehrdad Jahansoozi wrote: > This is usual

Re: Maximum Heap Size

1998-12-08 Thread Mehrdad Jahansoozi
This is usual in multithreaded programs There are two solutions to these sorts of problems 1) Limit the number of threads to 5 at any time. 2) Write the data on a temporary files and read it later. Which one is a mater of time ( speed ). If you are reading over a network, pipe the data directly

Re: Maximum Heap Size

1998-12-08 Thread Dimitris Vyzovitis
> I am running into a problem where my vm grows too big, to fast (faster than the > consumers of the collected data can consume it), resulting in a > OutOfMemoryError in all running threads. I changed the vm to run with -mx50m > and it ran for much longer (about 5 days) then it too did the same t

Re: Maximum Heap Size

1998-12-08 Thread Michael D. James
ay to get the maximum heap size from inside java. I though that > Runtime.totalMemory() would return that, but it does not. I current am running > one vm with -mx50m and totalMemory() is returning 5242872, which is about 5mb > not 50mb... unless I am totally crazy. > > I am running into

Maximum Heap Size

1998-12-08 Thread Jason Dillon
Is there any way to get the maximum heap size from inside java. I though that Runtime.totalMemory() would return that, but it does not. I current am running one vm with -mx50m and totalMemory() is returning 5242872, which is about 5mb not 50mb... unless I am totally crazy. I am running into a