0
votes
3answers
42 views
Java HotSpot error
Curious if anyone could help out in regards to a Java HotSpot dump...saw some reference to head over to the Sun Forums, figured I would try here first...below is the dump...
#
# A …
0
votes
0answers
17 views
Jamon statistics aggregation across multiple JVMs
Hello,
I have a tomcat server running a webapp. Apart from this there are two other JVMs that run batch processing tasks. Jamon is a really cool way to monitor performance, hits e …
0
votes
1answer
23 views
Error: Your application used more memory than the safety cap of 500m. Specify -J-Xmx####m to increase it (#### = cap size in MB). Specify -w for full OutOfMemoryError stack trace
i was running a jruby something.rb script and suddenly it throws this
Error: Your application used more memory than the safety cap of 500m.
Specify -J-Xmx####m to increase it (## …
0
votes
8answers
346 views
Running a fastest-algorithm competition
I'd like to run competitions like code golf competitions, but the winner would have the fastest algorithm, not the smallest code.
One fair way to measure speed of an algorithm is …
2
votes
2answers
49 views
Setting JVM parameters at runtime
Is it possible to change/modify/adding VM parameters after the JVM is already loaded (running)? If so, how can I do it?
9
votes
7answers
223 views
Can Sun JVM handle gigantic heap sizes without problems, and how?
I have heard several people claiming that you can not scale the JVM heap size up. I've heard claims of the practical limit being 4 gigabytes (I heard an IBM consultant say that), 1 …
27
votes
13answers
1k views
In the 13 years that Java has been around, are there any specific examples of backward incompatibilities?
It has been thirteen years between the initial public release of Java 1.0 (1996) and the current stable release 1.6.0_16 (2009).
During those thirteen years the following notable …
4
votes
12answers
361 views
Why should methods have a single entry and exit points?
Looking around forums and the web, i have come across the advice that a method should have single entry and exit points. My first question is does the sinlge entry point apply to j …
1
vote
1answer
24 views
How to send signal to JVM created by JNI_CreateJavavm call?
Hello Guys
Is there any possibility that I can directly send signal to a Java virtual machine which is created by calling JVM_CreateJavavm in native C/C++ code?
e.g.:
For a nor …
1
vote
4answers
55 views
How to set an acknowlegement before JVM shuts down?
How to set an acknowledgement (like email or SMS) before JVM shuts down (this is on the server side, not client)?
3
votes
3answers
73 views
Viewing large XML files in eclipse?
I'm working on a project involving some large XML files (from 50MB to over 1GB) and it would be nice if I could view them in eclipse (simple text view is fine) without Java running …
11
votes
5answers
234 views
Why does the Sun JVM continue to consume ever more RSS memory even when the heap, etc sizes are stable?
Over the past year I've made huge improvements in my application's Java heap usage--a solid 66% reduction. In pursuit of that, I've been monitoring various metrics, such as Java h …
1
vote
4answers
56 views
How to run a java file/project in remote JVM which is present in other Network ?
I am trying to work on a project which involves running/executing the java file in three JVM on different Network. If i locally run the Java file should simultaneously should ru …
6
votes
6answers
130 views
Killer facility or scenario that would make another JVM a better choice than the Sun JVM?
For Java SE there are several JVM's available for running in production on x86:
IBM J9
Oracle JRockit - http://www.oracle.com/technology/products/jrockit/index.html
Apache Harmo …
5
votes
3answers
132 views
Do Linux JVMs actually implement Thread priorities?
Wrote a quick Java proggy to spawn 10 threads with each priority and calculate pi (4*atan(1) method) with BigDecimals 500,000 times each, join on each thread and report the elapsed …
