Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

27
votes
2answers
9k views

What does JVM flag CMSClassUnloadingEnabled actually do?

I cannot for the life of me find a definition of what the Java VM flag CMSClassUnloadingEnabled actually does, other than some very fuzzy high-level definitions such as "gets rid of your PermGen ...
18
votes
6answers
57k views

Speed tradeoff of Java's -Xms and -Xmx options

Given these two commands A: $ java -Xms10G -Xmx10G myjavacode input.txt B: $ java -Xms5G -Xmx5G myjavacode input.txt I have two questions: Since command A reserves more memory with its ...
17
votes
4answers
9k views

How to give more memory to IntelliJ Idea 9

I am using IntelliJ IDEA 9. In the IDEA window On the bottom right corner I see the current memory usage, typically "224M of 254M" How do I give more memory to Idea so it may read like "224M of 512M" ...
14
votes
5answers
11k views

Debug a java application without starting the JVM with debug arguments

Normally to attach a debuger to a running jvm you would need start the jvm with arguments such as the following: > java -Xdebug -Xrunjdwp:transport=dt_socket,address=1000,server=y,suspend=n Now ...
12
votes
4answers
342 views

Why do you need to specify the Java heap size?

I have always wondered, why does Java require you set the heap size manually? I was under the impression that programs written in other languages would just allocate as much memory as needed as the ...
12
votes
3answers
1k views

Java VM tuning - Xbatch and -Xcomp

I am looking at the JVM configuration options for running Alfresco, mainly this document on the Alfresco Wiki. One of the recommendations is to use the JVM flags -Xcomp and -Xbatch. The justification ...
12
votes
2answers
11k views

Difference between -XX:UseParallelGC and -XX:+UseParNewGC

They are algorithms for the young generation garbage collection. The second one (UseParNewGC) gets activated automatically with the concurrent tenured generation garbage collection (see Java ...
11
votes
5answers
21k views

Java stack overflow error - how to increase the stack size in Eclipse?

I am running a program that I've written in Java in Eclipse. The program has a very deep level of recursion for very large inputs. For smaller inputs the program runs fine however when large inputs ...
11
votes
6answers
9k views

JVM performance tuning for large applications

The default JVM parameters are not optimal for running large applications. Any insights from people who have tuned it on a real application would be helpful. We are running the application on a 32-bit ...
10
votes
4answers
8k views

How to get vm arguments from inside of java application?

I need to check if some option which can be passed to JVM is explicitly set or is it have default value. To be more specific: I need to create one specific thread with higher native stack size than ...
10
votes
3answers
10k views

increase the java heap size permanently?

Is there a way that I can set the default heap size for the jvm on my own computer? I want to set it to 1g, because I'm always running custom programs that always hit the overage point in the default ...
9
votes
1answer
8k views

CMSPermGenSweepingEnabled vs CMSClassUnloadingEnabled

I've kind of asked this question before, but this time it's slightly different! If I start a Java VM with the -XX:+CMSPermGenSweepingEnabled flag set, the following message is printed: Please use ...
9
votes
1answer
9k views

Runing java with JAVA_OPTS env variable

Greetings, In a shell script,I have setup JAVA_OPTS environment(to enable remote debuggin and increase memory) and then execute the jar file as follows: export JAVA_OPTS="-Xdebug ...
8
votes
3answers
7k views

Increasing the JVM maximum heap size for memory intensive applications

I need to run a Java memory intensive application that uses more than 2GB, but I am having problems to increase the heap maximum size. So far, I have tried the following approaches: Setting the -Xmx ...
8
votes
4answers
1k views

Java -classpath option

Will the use of -classpath option with java, add to or replace the contents of the CLASSPATH env variable?
8
votes
5answers
3k views

JVM -XX:+StringCache argument?

I was recently reading about all the JVM arguments available in JRE 6 [Java VM Options] and saw this : -XX:+StringCache : Enables caching of commonly allocated strings. Now I was always under ...
7
votes
3answers
390 views

Encourage the JVM to GC rather than grow the heap?

(Note that when I say "JVM", I really mean "Hotspot", and I'm running the latest Java 1.6 update.) Example situation: My JVM is running with -Xmx set to 1gb. Currently, the heap has 500mb ...
6
votes
1answer
230 views

Why does 64 bit JVM throw Out Of Memory before xms is reached?

I am wrestling with large memory requirements for a java app. In order to address more memory I have switch to a 64 bit JVM and am using a large xmx. However, when the xmx is above 2GB the app seems ...
6
votes
2answers
348 views

Set vm default arguments via maven for eclipse

I want to specify vm args of -Djava.library.path=./src/main/resources so that a dll is picked up automatically, and I want to specify this in maven, so other developers don't have to manually ...
6
votes
3answers
3k views

What is Java's -XX:+UseMembar parameter

I see this parameter in all kinds of places (forums, etc.) and the common answer it help highly concurrent servers. Still, I cannot find an official documentation from sun explaining what it does. ...
5
votes
5answers
7k views

JVM heap parameters

After reading already asked question on the subject and a lot of googling I am still not able to have a clear view of -Xms option My question is: what's the difference between java -Xms=512m ...
4
votes
4answers
684 views

Which memory related Tomcat JVM startup parameters are worth tuning?

I'm trying to understand the fine art of tuning Tomcat memory settings. In this quest I have the following three questions: Which memory related JVM startup parameters are worth setting when running ...
4
votes
2answers
749 views

creating a JVM from within a JNI method

Is it possible to create a JVM from within a JNI method using the JNI API? I've tried to do this using the JNI function "JNI_CreateJavaVM()", but it's not working (the function keeps returning a ...
3
votes
3answers
106 views

Appropriate JVM/GC tuning for 4GB JVM with 3GB cache

I am looking for the appropriate settings to configure the JVM for a web application. I have read about old/young/perm generation, but I have trouble using those parameters at best for this ...
3
votes
2answers
84 views

Why does setting the -Xmx too high sometimes cause the JVM to fail, even if there's available RAM?

Basically we've noticed that on some computers setting the JVM option -Xmx (max heap size) sometimes cause the JVM to fail to initialize, even if there's more than adequate RAM on the system. So for ...
3
votes
2answers
692 views

Java heap space Xmx Xms on a vServer with burstable RAM

We run a Minecraft server that relies on Java on a vServer that has 1GB guaranteed RAM and 4GB burstable RAM. We run Debian 6.0 (Squeeze) Minimal (64Bit) with a lighttpd webserver with php/mySQL ...
3
votes
2answers
70 views

loading clojure-contrib

I'm new to the whole JVM thing, and trying to play with clojure. I'm attempting to load clojure-contrib and failing: # in bash $ java -cp /path/to/clojure.jar:/path/to/contrib.jar clojure.main # in ...
3
votes
3answers
2k views

How do I read JVM arguments in the Spring applicationContext.xml

I have a JSF web application with Spring and I am trying to figure out a way to reference the JVM arguments from the applicationContext.xml. I am starting the JVM with an environment argument ...
3
votes
1answer
914 views

How to let the PSOldGen expand to accomodate very large objects?

I have a program which needs to allocate heap space for one very large object, but I'm finding that I get OutOfMemoryExceptions when there appears to be much more free heap than that large object ...
3
votes
2answers
324 views

how to catch OutOfMemoryError in JVM and run a script if it's caught?

I have a program that sometimes throw OOME, I understand that there is a flag in the JVM options that I can set and whenever a certain Error/Exception appears (such as OOME) it calls a script I ...
3
votes
4answers
411 views

Duplicated Java runtime options : what is the order of preference?

Considering the following command line java -Xms128m -Xms256m myapp.jar Which settings will apply for JVM Minimum memory (Xms option) : 128m or 256m ?
3
votes
3answers
3k views

Putting JVM arguments in a file to be picked up at runtime

I'm building a jar of my current application, which required several JVM arguments to be set. Is there a way of setting these JVM arguments in a file rather than on the command line? I've done some ...
3
votes
3answers
1k views

How to specify firstDayOfWeek for java.util.Calendar using a JVM argument

I'm trying to change default firstDayOfWeek for java.util.Calendar from SUNDAY to MONDAY. Is it possible to achieve this through JVM configuration instead of adding this piece of code? ...
2
votes
5answers
237 views

What is the largest possible heap size with a 64-bit JVM?

The theoretical maximum heap value that can be set with -Xmx in a 32-bit system is of course 2^32 bytes, but typically one cannot use all 4GB. For a 64-bit JVM running in a 64-bit OS on a 64-bit ...
2
votes
2answers
1k views

Passing JVM arguments to Tomcat when running as a service?

I need to pass a couple of JVM arguments to the JVM which Tomcat is running in so that my application can pick them up. I want to follow the process outlined in this article to pick up environment ...
2
votes
1answer
301 views

Passing JVM args to SBT

My SBT build is echoing: [error] Note: Some input files use unchecked or unsafe operations. [error] Note: Recompile with -Xlint:unchecked for details. How can I pass the -Xlint:unchecked argument ...
2
votes
1answer
151 views

JDK 1.6 GC AdaptiveSizeThroughPutPolicy

Please explain the detailed meaning of VALUE used in the GC option : -XX:AdaptiveSizeThroughPutPolicy By default value given is 0. Does this VALUE imply - the number of steps to use heuristics ...
2
votes
3answers
689 views

Is there something like “-XX:OnError” or “-XX:OnOutOfMemoryError” in IBM JVM?

There are two following options in Java HotSpot VM Options: -XX:OnError="<cmd args>;<cmd args>" Run user-defined commands on fatal error. (Introduced in 1.4.2 update 9.) ...
2
votes
3answers
231 views

who is the owner of JVM?

Lot of Mobile devices are coming with JVM with its OS(for example Nokia,sony ericcson).will all devices have same JVM? are all JVMs owned by sun micro systems? has device manufacturer paid for it to ...
2
votes
2answers
4k views

How can one send a Ctrl-Break to a running Linux process?

I am debugging a memory leak in an application running on Sun's JDK 1.4.2_18. It appears that this version supports the command line param -XX:+HeapDumpOnCtrlBreak which supposedly causes the JVM to ...
2
votes
3answers
722 views

How do I get an error message when failing to load a JVM via JNI?

I would like to retrieve an error message that explains why the jvm failed to load. From the examples provided here: http://java.sun.com/docs/books/jni/html/invoke.html I extracted this example: ...
1
vote
0answers
79 views

Global Java Memory Tuning

Is it possible for java memory tuning parameters to be set globally on a system? I only know of java_opts as commandline parameters to be given to the virtual machine java -Xmx256M -Xms256M .... I ...
1
vote
3answers
195 views

how to increase java memory (algorithms runs on ubuntu but not on mac; same machine configuration)

Recently I've been getting the notorious error message: OutOfMemoryError. I've a 64Bit Mac with 16GB Ram and 2X2.6 GH quad core. Getting this error message simply doesn't make sense to me because the ...
1
vote
1answer
93 views

JVM minimum heap size recommendation reasons?

BEA recommends to keep both min and max heap sizes same. They didn't elaborate the reason for the suggestion. Can someone provide details? I also got another recommendation from an architect of ...
1
vote
1answer
48 views

Where can I define java compiler options so that they are seen by any java process running on the machine?

Following http://lucene.apache.org/java/docs/index.html#28+July+2011+-+WARNING%3A+Index+corruption+and+crashes+in+Apache+Lucene+Core+%2F+Apache+Solr+with+Java+7 I wish to set the -XX:-UseLoopPredicate ...
1
vote
1answer
94 views

Rhino does not enumerate 'arguments' to a function

I'm trying to use the 'arguments' variable available to a function in order to enumerate the arguments passed to a function, in Javascript, using : for (var i in arguments){ ... } This seems to ...
1
vote
1answer
325 views

what's the difference between ParallelGC and ParallelOldGC?

I have some questions about the GC Algorithm: First when we use the parameters such UseSerialGC, UseParallelGC,UseParallelOldGC and so on, we specify a GC Algorithm. Each of them all can do GC in all ...
1
vote
1answer
265 views

mvn test java.lang.OutOfMemoryError: unable to create new native thread

When I run mvn test I receive the below exception. I have tried both raising and lowering my Xmx and Xss JVM settings and bumping all limits under ulimit. There are about 1300 tests and the last 200 ...
1
vote
3answers
582 views

Passing an entire file to JVM arguments

I have several systems that all need to load the same properties to the JVM. I can use the -D flag to load one property at a time, but i am looking for something that will load all the properties in ...
1
vote
2answers
373 views

Java: option -Xms is not applied immediately?

I execute the following command: java -Xms1024M -Xmx1024M mypackage.MyClass I expect that resources are captured by JVM immediately, but in fact my resource manager is showing that 7.2M was ...

1 2