Massive memory hemorrhage that causes heap size to go from about 64mb, to 1.5gb in roughly 8 seconds. Issue with garbage collector?
Try specifying a garbage collector manually. Concurrent Mark Sweep is a good general purpose one that provides a good balance between low-pause and reasonable throughput. If you are on Java 7 or later Java 6, G1 collector is probably better since it is able to also prevent memory fragmentation. You can check the Java SE … Read more