I am dealing with a large volume of data, and I get the following error :
java.lang.Exception: A mapping task failed: java.lang.OutOfMemoryError: Java heap space
I am starting jetty from a main method...like below:
final Server server = new Server(port);
server.start();
server.join();
I would expect that there might be some kind of configurations file..or some way to set -Xmx... but I can't find any..
Thanks! Dan