Reputation: 892
I am handling a huge data file, with 5 million lines and file size is 468m.b The program requires too much of iteration and creation of hash tables.
I have increased xmx in .ini file of Eclipse to 1812, also, in run, run configuration, I have set variable for my Program more than 1500. However the heap status shows: heap size:117M of total 127 max: 1621 mark < none >;
I need help in this. Can I increase the total? Please reply. Thank you in advance.
Upvotes: 0
Views: 1247
Reputation: 5531
Right click on you main prog then select Run AS --> run configuration select "argument" tab In VM arguments set memory as per your requirement (-Xms1024m -Xmx1024m) and then run
Upvotes: 3