-1
votes
1answer
19 views

Tomcat 7, best memory setting , jrockit jvm 64 bit [closed]

i need help to configure/tune jvm setting for tomcat 7. I use jrockit : java.version 1.6.0_37 java.vm.info compiled mode java.vm.name Oracle JRockit(R) java.vm.specification.name Java ...
-3
votes
0answers
25 views

JVM not release the RAM memory [closed]

I need help with the next situation. I have settings in my JVM with the following parameters: -XX:+CMSIncrementalMode -XX:+UseCompressedOops -XX:+UseConcMarkSweepGC -XX:MaxPermSize=512m ...
0
votes
0answers
70 views

Java - How to know more about “caller” of object without source code?

I am dealing with an Application memory leak issue - from the IBM Portable Heap Dump I could clearly see over 7500 instances of a class have been created in a Hashmap, which of course is ridiculous. ...
0
votes
0answers
92 views

physical memory mapping to websphere application servers

Suppose, there is a server (8 CPUs, 4 cores each) which has 64 GB RAM. WAS is installed in it and has 8 application servers managed by a single node agent and deployment manager. In this case, how ...
1
vote
1answer
70 views

Options I've passed to JVM seems to have no effect

I am working with an application that uses bean shell scripting to pass java (jvm) arguments. My application needs more than the default 88M PermGen. I've tried all manner of methods from specifying ...
-3
votes
1answer
190 views

Can I allocate an object larger than 4GB on 32bit system [closed]

Assuming that there is no limit of runtime or OS. Can I allocate an object that is bigger than Virtual Address Space?
0
votes
1answer
268 views

Maximum heap size for JVM on a 32-bit and 64-bit windows server

I have a third party application that was installed on my Windows Server 2008 and came with a JRE. The server is a 64-bit machine, but when I try to adjust the heap size past about 1.5 GB, the JVM ...
3
votes
0answers
76 views

Understanding the Java Heap [closed]

I have a Windows Server 2008 machine with 2 drives: C:\ and G:\ On the G:\ drive (the larger one), I have installed a third party tool that we use to generate PDFs on the file. It has it's own server ...
0
votes
0answers
58 views

A good Java Tool to monitor the heap

I have been searching, and see that there is Jstat, VisualJVM, and even Eclipse mat tools, but they all seem to have the JDK needing to be installed. I have a third party tool used in my .NET ...
0
votes
0answers
97 views

Tools to monitor the Java Heap Size [closed]

What are some good tools to monitor the Java Heap Size? I am using a third party server application that sits on top of the JVM for creating large PDFs on the fly. I need like a visual or command ...
5
votes
2answers
82 views

Accurate measurement of object sizes

The code at the bottom of this question is a bit long but basically creates a few objects and determines their size in memory. I execute the code with the following JVM parameters (TLAB to avoid chunk ...
9
votes
3answers
112 views

Java Heap Behaviour

Given a java memory configuration like the following -Xmx2048m -Xms512m What would be the behaviour of the VM when memory usage increases past 512m? Is there a particular algorithm that it ...
-1
votes
3answers
84 views

How do I access the memory used by a Java program?

I want to access memory locations currently used by Java variables. I plan to access these locations using C or another language, and I plan to change the location values. The program which will ...
5
votes
5answers
154 views

How can a Java program keep track of the maximum actual heap size used during its run?

I'm running a certain Java program, with its -Xmx higher than -Xms, i.e. its heap can grow. The heap size at execution end is (IIRC) not the maximum used during the run. How can I get the current ...
1
vote
2answers
276 views

Java -Xms and -Xmx test

i make a class, Main which contains the main method like this: public class Main { public static void main(String[] _args) { System.out.println("free:" + Runtime.getRuntime().freeMemory() ...
1
vote
2answers
194 views

Apache HTTP Compoonents size limit response?

I connect to server that juts returns non-finite stream of "A". I.e: this $ nc 1.2.3.4 9001 ...
1
vote
3answers
94 views

Monitoring all running and spawning JVMs [closed]

I have a 8Go compilation server, running a Jenkins instance, a Jenkins slave agent. All jobs run the same script sh. This script launches others scripts and a big ant build. In this build, several JVM ...
1
vote
2answers
133 views

Heapdump vs profiling memory in visual vm

I start using visual vm , in order to find out why the app is using so much memory. Just to be sure i understand things: A complete memory map is aquired via the heapdump ? With memory profiler ...
39
votes
6answers
1k views

How to predict the maximum call depth of a recursive method?

For the purposes of estimating the maximum call depth a recursive method may achieve with a given amount of memory, what is the (approximate) formula for calculating the memory used before a ...
-1
votes
1answer
65 views

In OBJECT tag the heap setting is not working [closed]

We can set JVM heap setting like <APPLET CODE="Main.class" WIDTH="800" HEIGHT="500"> <PARAM name="separate_jvm" value="true"> <PARAM name="java_arguments" value="-Xmx512M"> ...
3
votes
3answers
174 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
3answers
167 views

How Android release memory or classes (or JVM / Java)?

I simple question but maybe a complex content. For example, I have this clases: ActivityA.class ActivityB.class ActivityC.class Singleton.class Singleton is a singleton class pattern, for ...
8
votes
5answers
220 views

How to reduce the number of objects created in Scala?

I'm programming a computer graphics application in Scala which uses a RGB class to return the color at a point in the image. As you can imagine, the function which return the color RGB object is ...
0
votes
0answers
63 views

More information about OutOfMemoryError

Some time i have an error about java.lang.OutOfMemoryError: Java heap space but when i add more size for Xms, Xmx and Xss, i don't have an error. So i want to know what is difference between Xms, Xmx ...
0
votes
1answer
280 views

why is -Xss not increasing the number of threads created?

I need some input on how to best tweak my memory settings to allow a higher number of threads. I read through the posing on How many threads can a Java VM support? and followed the java example there ...
0
votes
2answers
85 views

How to tell if one of the heap-generations is full?

We are experiencing some problems in our production environment, where we get an InvalidPropertyException from one of the compiled jsps (which one differs from time to time) after a bit of time. I ...
4
votes
3answers
397 views

Can multiple JVM processes share memory for common classes?

I'd like to run multiple Java processes on my web server, one for each web app. I'm using a web framework (Play) that has a lot of supporting classes and jar files, and the Java processes use a lot ...
0
votes
3answers
155 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
2answers
244 views

JDBC Connection Pool Memory Issues (Java EE Application)

I currently have a Java EE application in which I have implemented my own connection pool class. Each method I use does a simple query (Statement and ResultSet). In the finally block of each method ...
0
votes
1answer
99 views

How do you deal with Java applications on the client requiring a lot of memory (“-J-Xmx”?

I have a Java SE desktop application which uses a lot of memory (1,1 GB would be desired). All target machines (Win 7, Win Vista) have plenty of physical memory (at least 4GB, most of them have more). ...
1
vote
2answers
166 views

JVM sawtooth pattern when idle? what does the JVM do in the meantime?

I was wondering. I have a simple Java web project with a servlet. When no users are using it (I host it local on GlassFish) I still see a sawtooth pattern in the memory usage of the process. I can't ...
0
votes
0answers
114 views

Does JVM memory management work the same on Windows and Linux?

My original question is that, is this technically rational to check the required heap-size of my Java program on Windows 7, via VisualVM, and come to this conclusion that the program will require the ...
0
votes
1answer
78 views

Tracking multiple java applications resources allocation

Can you suggest me a tool for monitoring multiple java processes running on a Windows 7 machine. More specifically I have like 10 similar applications running with default JVM settings. I need ...
0
votes
0answers
267 views

Configure Tomcat Memory (6 GB dedicated RAM for Apache Tomcat)

I am trying to extend the Memory dedicated to JVM. In my calatlina.bat configuration file. How can I dedicate atleast 6 GB of memory to the Java Virtual Machine (JVM)? Below is my catalina.bat file. ...
3
votes
1answer
283 views

Regarding memory usage of Java Application

I have a question regarding memory usage of java web applications.. In Task manager, Tomcat service seems to occupy 8,677,544,000 Bytes of memory In jvisualvm, memory usage of java application ...
0
votes
1answer
86 views

Java program's memory usage is not accurate

In my java application, I display the memory usage of the program. Unfortunately it is sporadic and is often wrong. My current code is component.setText("Memory usage : ...
1
vote
4answers
219 views

java - memory usage

I'm developing an application which loads lots of data (like from csv). I'm creating List<List<SimpleCell>> and loading into it the readed cells. SimpleCell class contains 5 * String, ...
1
vote
2answers
118 views

Getting the memory usage details of other jvm

When I try using System.getRunTime() and get the memory details, I am getting the memory details of current JVM. But I need the memory details another java process. I do have a reference to that ...
5
votes
3answers
156 views

Does s take 3 bytes in Java? when : String s = “abc”; Java

If I write this in Java: String s = "abc"; Does s only occupy 3 bytes in the memory? If true, how JVM finds the end of the String object? Does this take more bytes in memory?
9
votes
2answers
195 views

guidance on jvm options in idiomatic scala

OK, I understand that I should benchmark my specific application and blah blah blah, but: The default JVM settings for -Xmx, the default garbage collector, etc, are defaults that are reasonable ...
9
votes
5answers
730 views

Is the garbage collector guaranteed to run before Out of Memory Error?

In case the heap is full, the JVM throws an OutOfMemoryError. But is it assured that a (full) garbage collection always takes place before such an exception is thrown? This would mean that the ...
2
votes
4answers
235 views

Where to find the evidence of how to calculate the size of a java object

I've searched about the size of a java object for a long time, there are a lot of answers like this, everyone is telling me that the size of the overhead of a java object, and how to calculate out the ...
3
votes
1answer
105 views

Why do we specify min and max heap memory when starting a jvm [duplicate]

Possible Duplicate: Why does the (Sun) JVM have a fixed upper limit for memory usage (-Xmx)? JVM should be like any other process and in a normal process, we don't specify max memory ...
2
votes
3answers
151 views

Do 2 java processes share JVM

Say I run 2 java processes in a machine, do they share JVM or they have their own separate JVM. I remember setting something like export JVM_OPTS="-Xms64m -Xmx1024m" then which JVM is this for?
2
votes
1answer
684 views

JVM Memory : Why memory on task manager difference with JProbe (or JConsole tool)

The problem that I faced is my application's memory used is only 100MB after that it decreased 50MB, but on Window Task Manager it showed 150MB and always keep or increase but not decrease, How can ...
0
votes
3answers
326 views

What does Java start the heap at if I do not specify a -Xms? [duplicate]

Possible Duplicate: How is the default java heap size determined? Im curious what happens if I do not specify a -Xms for initial JVM heap size with Java? Currently I have -Xms256m and ...
0
votes
2answers
844 views

JVM crashes when eden space is 100%

I have a production system with a JBoss application server running on JDK 1.6.0_24, JBoss 4.3. Every now and then, the server crashes and a dump file created by the JVM has consistent results: {Heap ...
1
vote
4answers
81 views

== with Abstract datatypes, different results for the same kind of conditions [duplicate]

Possible Duplicate: Integer wrapper objects share the same instances only within the value 127? public class test { public static void main(String args[]) { Integer a1=127; ...
0
votes
1answer
296 views

Why there is memory usage difference between xmx and top?

I set the xmx of jvm equals to 4 G, but after running for a time, when I use top to see the memory, it shows the process used 12 G memory. So what the xmx actually mean? what should I do if I want to ...
-2
votes
1answer
2k views

How to set maximum JVM memory size (-Xmx) in my Java code?

I have a Java program which required -Xmx1g memory. I am using Netbeans IDE for application developing. I can set this parameter from the IDE, Right click on the project --> select 'set ...

1 2 3 4