Hi,
sorry about this, but I think there was some confusions about the versions of the H2 used in my test. It seems that there was older versions involved. I redid the test completely with version 169 and I could connect to the database after the load is finished. In my program, am trying to make a big query and am getting out of memory exception, my query looks like this, on 6 million records:
select "Col1",...,"Col50","Measures",SUM("Measure51") as "Measure51",...,SUM("Measure250") as "Measure250" from "sampleNorm_1"."NormalizedData" group by "Col1",...,"Col50","Measures"
the result should not be a lot, since each column in the group by clause include small number of distinct records.
I redid the test with H2 console, I assigned 10GB as Xmx, I still get out of memory exception,the weird part,the java goes only up to 7.5 G, I have 16G on the machine and there still more RAM free for the JVM. I'm not sure if this is something that H2 can do something about it. But For me I can simply not perform this query regardless how much Memory I assign for the JVM. Do you think H2 team can help me in this? I can provide the database for testing if needed.
Thanks a lot,
Kais