Command-line options and environment variables that can affect the performance characteristics of the Java Virtual Machine
1
vote
1answer
40 views
java process eats only 1 cpu core
i run my program using maven with the following command:
mvn exec:java -Dexec.mainClass="some.path.to.my.class"
on a Linux multi-cpu server. when i check the CPU usage, i see that java eats only 1 ...
0
votes
1answer
36 views
Tuning JVM Args for CloudBees App
I just read the CloudBees developer doc on adjusting PermGen but was wondering if they offer anything else for tuning heap, GC and the JVM in general.
I usually tune my Tomcat apps extensively and ...
0
votes
0answers
17 views
How to make Glassfish use different configuration for every application
I am using GlassFish, JBoss, Tomcat for my application servers.
I want to use different log4j.properties for my applications on local, dev, test and prod envirment. So every project's application ...
0
votes
1answer
36 views
How to set Heap Space for non executable JAR using JNI
Currently I am working on a mac application in which I am getting OutOfMemoryError frequently. Currently we are using non executable JAR file for our application so I cannot set heap size before ...
0
votes
0answers
8 views
Jonas 5.2.4 not launching from terminal
I am currently trying to deploy a web app on Jonas 5.2.4 (using the "full" version of the server), on a W7 Entreprise. All environment variables are setup accordingly. The problem being the following ...
0
votes
0answers
14 views
Home folder in the vmargs
once again, I have a question :-).
How can I take a relative path to my home-folder in the vmargs?
I'm using Mac.
I just tried ~/ and $HOME as well as /~/ and/$HOME/. But this doesn't work. If I ...
0
votes
2answers
58 views
Maven Eclipse plugin increased memory?
I've read several other questions and answers here, none of which seem to help me. I'm trying to build a mgwt project that will have lots of permutations so the memory setting must be really high.
...
3
votes
2answers
91 views
Young generation is tiny despite NewRatio=2
At some point my application starts to create a lot of temporary arrays, this is expected behaviour, and I want to give a lot of space to Young Generation, so temporary arrays don't get promoted to ...
0
votes
1answer
54 views
How to use all files in a Java program in RAM?
Is there a way to have all files used in a Java application in RAM? I don't need to have file synchronization, just need to put the file in RAM when opened for the first time and every writes will ...
0
votes
2answers
46 views
Configuring eclipse/java to boost the performance to the fullest
I have a windows pc with 64 bit OS (windows 7 Enterprise) and 8 GB of RAM. I want to run a heavy java program on eclipse and I would like to allocate as much of the PC resources only to eclipse/JVM to ...
1
vote
1answer
98 views
How to set WebLogic JVM argument on multiple servers
I want to set a JVM argument to some WebLogic managed servers.
This arguments are same on all servers. (-Dconfserver=11.1.1.1:6666)
I know how to set it on a single server (in console "server start" ...
0
votes
1answer
215 views
“Running a 64-bit JVM is not supported on this platform” with java -d64 option on 64bit linux
I have a 64 bit linux os:
$ uname -p
x86_64
java -version listed:
java version "1.6.0_43"
Java(TM) SE Runtime Environment (build 1.6.0_43-b01)
Java HotSpot(TM) Server VM (build 20.14-b01, mixed ...
0
votes
1answer
14 views
getting error while using JAW
hi I am a JAW beginner.
I followed the steps given by a site for using JAW. but getting following error. It would be a great help if some one tell me what will be the directory path for VM argument.. ...
0
votes
1answer
236 views
Eclipse Ant: bundle .jar into .app using appbundler
Edit: all the problem above can be avoided by creating an executable jar with built-in jvm arguments. Once created, I can bundle it into a .app using appbundler. How can I integrate VM arguments into ...
1
vote
0answers
118 views
JNLP XX:-UseSplitVerifier in 1.7
Is there a way how to set -XX:-UseSplitVerifier jvm arg in JNLP file in 1.7? In doc I did not find it is supported and when I tried it is ignored.
0
votes
1answer
43 views
What is glassfish-jvm-option “http.proxyHost” for / when to use it?
I have just setup my glassfish-as behind a HAProxy.
I found the glassfish-jvm-option "java.http.proxyHost"¹ and "java.http.proxyPort"¹. I have not set this value in my glassfish, so I am asking ...
1
vote
1answer
69 views
Can't allocate a JVM heap of more than 1397mb [duplicate]
If I try to run Java with more than 1397mb using -Xmx1397m command line parameter it fails to initialize. Why is this?
I.E.:
"java path\java.exe" -Xmx1397m -> works
java path\java.exe" -Xmx1398m ...
2
votes
1answer
93 views
Setting ratio of Young and Tenure generation in JVM for a String processing app
I have an app which groups array of strings based on their similarity. It is exposed from a TomCat server and the start params are
/usr/lib/jvm/java/bin/java -XX:+HeapDumpOnOutOfMemoryError ...
0
votes
1answer
220 views
Override log level (java.util.logging) with JVM-argument?
Is it possible to override/set log level of java.util.logging.Logger by passing an JVM option on start of the application?
3
votes
1answer
241 views
JVM option XX:UseFastEmptyMethods/XX:UseFastAccessorMethods
While looking at possible JVM flags for optimizing launching startup time of my RCP product, I found these attractively-named -XX:UseFastEmptyMethods and -XX:UseFastAccessorMethods.
It seems that ...
0
votes
1answer
60 views
Where does jruby log to?
I see a lot of config options like jit.logging=true, and I want to watch out for things like when the jvm gives CodeCache is full. Compiler has been disabled messages, where does jruby log this stuff? ...
0
votes
1answer
123 views
Increase memory in Jboss eap 5.1
I' m using Jboss-eap-5.1. when I trying to change memory parameters through run.conf.bat, it is not change. when I run the server after doing changes i saw through Java Visual VM, changes are not ...
0
votes
1answer
122 views
What is the difference between -HeapDumpOnOutOfMemoryError and +HeapDumpOnOutOfMemoryError options?
In Oracle's official doc HeapDumpOnOutOfMemoryError option specified with plus and minus sign. I'm just curious what do they stand for since it's not explained in official user guide
0
votes
0answers
50 views
Java process for Websphere on Windows OS 64 bit not releasing memory which was consumed while maximum users load
I am working on Performance test using HP Load runner, Need to know how Java process should behave after completion of test.
I have set appropriate min and max heap size and maxpermsize
Performance ...
12
votes
2answers
182 views
Can I force the JVM to natively compile a given method?
I have a performance-critical method called often when my app starts up. Eventually, it gets JIT-compiled, but not after some noticeable time being run in the interpreter.
Is there any way I can tell ...
1
vote
0answers
114 views
Eclipse: socks proxy parameter error after jdk 1.7 upgrade
I had the following proxy VM args configured in Eclipse for a few months:
-DsocksProxyHost=socks.OUR-HOST-SERVER-HERE.com -DsocksProxyPort=1080
Following an upgrade to Java 1.7, the following error ...
0
votes
2answers
286 views
Cannot assign additional memory to Coldfusion JVM
Good Day,
I am running Coldfusion 8 MX on a Windows 2003 32bit server with 4gig of RAM (2gig is always free) but I am unable to assign much more than 550m to the JVM.
I had already submitted this ...
0
votes
1answer
76 views
eclipse slash in vm argument
I have the same code runing on java 6 and java 7, but in java 7 it doesn't work as I expect.
I write in the VM argument:
-Dmy.root=D:\mvobs\S.4.8.600_view\
When I run it with java 6 everythink is ...
0
votes
0answers
628 views
VM Could not reserve enough space for object heap
I have just upgraded to Jenkins 1.500 on a windows machine. I also have a windows slave with 8GB RAM. I have made a remote connection to this slave and started it from the Jenkins webinterface (using ...
1
vote
2answers
267 views
How to set default parameters to jvm?
I'd like to know how I can pass parameters to JVM before it is started. For example,
I think I need to modify JVM timezone parameter.
I use eclipse with windows 7.
0
votes
1answer
157 views
It be fail to startup MyEclipse 10.7 when the argument -vm be changed to other jdk ,SOS
why I can't change myeclipse 10.7 64bit configeration file : myelispse.ini, change config argument "-vm" will fail to start up.by the way,my operation system is win8 64bit,and my jdk work without any ...
1
vote
3answers
197 views
Cloud Foundry : Set Environment Variables via Manifest.yml
My question is very simple
Is there any way to set environment variables via Manifest.yml *without* running the vmc command set-env [application name] key = value ??
On Amazon it is possible to do ...
1
vote
2answers
97 views
accessing VM arguments during compile time
I have problem in accessing VM arguments in My program. I am writing an annotation processor in which i want to access some VM arguments. I am Using NETBeans IDE. I create the jar file of the ...
0
votes
2answers
477 views
How can I pass jvm argument via Ant - Swing
I want to pass the JVM argument -Dfile.encoding=UTF-8 to my swing application using Ant script, I'm using eclipse and I'm looking for the minimum Ant script content to do this. this is my first use of ...
0
votes
1answer
168 views
Xbooting a Java class
Basically I want to replace the Canvas class at runtime by an application that uses my custom Canvas class, I heard xbooting can do this but there are no tutorials or anything.
So I'm just wondering ...
-2
votes
2answers
316 views
Java - Default value of MaxPermSize - Sun JVM [duplicate]
Possible Duplicate:
Default values for Xmx, Xms, MaxPermSize on non-server-class machines
We are using Sun JVM, and need to know the default value assigned to MaxPermSize
We are not ...
0
votes
1answer
166 views
Can't debug intellij plugin - invalid initial heap size
I'm developing an intellij plugin and when i'm trying to run the plugin (or debug it) i keep getting the following error:
Could not create the Java virtual machine. Invalid initial heap size:
...
0
votes
2answers
1k views
How to set log level in log4j from properties file in runtime
How do I set log level in log4j.xml using properties file in runtime time?
<appender name="ConsoleAppender" class="org.apache.log4j.ConsoleAppender">
<layout ...
3
votes
4answers
179 views
Extremely long GC times
We're running JBoss with the following startup arguments but are having problems with long GC times (>5 minutes).
-Xms116042m -Xmx116042m -XX:PermSize=256M -XX:MaxPermSize=256M ...
0
votes
0answers
103 views
Packaging jar file with changeable jvm arguments
I have a requirement to create an exe file out of jar file.
Here is the file structure
/MyProject
- /lib/ *.jar (Dependency jars)
- myproject.jar
To execute myproject.jar, I have to pass ...
0
votes
1answer
391 views
How to add jvm parameters for a runnable jar?
For the runnable jar that i am creating. it requires xmx1024 as JVM argument. How can i do this ? Or is there any alternative ?
3
votes
3answers
185 views
Is there a way to increase Java heap space in the code itself? [duplicate]
Possible Duplicate:
Is it possible to dynamically change maximum java heap size?
I know there is an XMX option for the Java launcher, but is there some kind of preprocessing directive that ...
1
vote
1answer
86 views
Any way to increase the memory settings for rational clearcase remote client
I am using rational clearcase remote client Version 7.1.1.3.
Since this is an Eclipse based tool; I was trying to find out if I can increase the memory settings for minimum and maximum memory for this ...
1
vote
1answer
603 views
Eclipse Juno with JRE 7 causes problems on startup
The issue that is explained seems to be a common one and different solutions have been proposed already, many of which work. One example of this discussion can be found here.
My question is more ...
31
votes
3answers
9k views
How to increase IDE memory limit in IntelliJ IDEA on Mac?
I'm using IDEA 12 Leda on Mountain Lion. I wanted to increase the maximum memory that IDE can use. I set the VMOptions in Info.plist file to be
-Xmx2048m -ea -XX:+HeapDumpOnOutOfMemoryError ...
0
votes
2answers
202 views
HotSpot JVM Option HeapDumpOnOutOfMemoryError - Any Issues?
I've recently learned about the -XX:+HeapDumpOnOutOfMemoryError VM argument and was told that it should be added as a matter of course to the HotSpot JVM as it is off by default. One of my co-workers ...
0
votes
3answers
158 views
How can i read XX:MaxPermSize during runtime? [duplicate]
Possible Duplicate:
Read Java JVM startup parameters (eg -Xmx)
We have a desktop application where some old installations does not have the appropriate memory settings.
They experience ...
0
votes
1answer
296 views
eclipse.ini non-standard options
Im having out of memory errors and generally a very slow eclipse running with window builder and dealing with some big visual classes, so after some research I realized that increasing the heap java ...
2
votes
1answer
129 views
Changing property values while redeploying new version of .war in tomcat
In my Java web application where I am using tomcat as my app server, I am interested in a way of passing different value to a particular property to the application when it is deployed/redeployed.
...
0
votes
3answers
201 views
How to configure JVM to allocate memory only when is really necessary?
I have an application that can be executed when I use the jvm command -Xmx65m. Although it is running fine, I want to allow the application to consume more memory, because it has some features that ...

