Re: Join create OOM with java heap space on phoenix client

2015-05-26 Thread Maryann Xue
Hi Krunal, Sorry for the late reply. I have been on vacation. 1. Can you make sure that the connection/statement is closed after each run of your query (even with exception)? 2. You might want to try switching the join tables in your query first by putting the larger table as LHS, and if it

Re: Date parsing error, or user error.

2015-05-26 Thread Nick Dimiduk
Ah! Thanks Gabriel. On Tue, May 26, 2015 at 1:09 PM, Gabriel Reid gabriel.r...@gmail.com wrote: It works in the integration test because the date format is specifically set (as an extra bit of testing)

Re: Date parsing error, or user error.

2015-05-26 Thread Gabriel Reid
It works in the integration test because the date format is specifically set (as an extra bit of testing) https://github.com/apache/phoenix/blob/master/phoenix-core/src/it/java/org/apache/phoenix/mapreduce/CsvBulkLoadToolIT.java#L105 On Tue, May 26, 2015 at 9:33 PM Nick Dimiduk

Re: Date parsing error, or user error.

2015-05-26 Thread Nick Dimiduk
This is working for me as expected, thanks Gabriel. I find it odd that we don't have an issue in our IT test though printWriter.println(1,Name 1,1970/01/01); printWriter.println(2,Name 2,1970/01/02);