It compiles fine for me (with some white spaces warnings) but I can not pass the tests stuck on Running org.apache.phoenix.util.StringUtilTest Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec - in org.apache.phoenix.util.StringUtilTest Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=128m; support was removed in 8.0
But I am pretty sure it just me (Windows 7, Java 8) . don't ask :) On Tue, Mar 10, 2015 at 5:05 PM, James Taylor (JIRA) <[email protected]> wrote: > > [ > https://issues.apache.org/jira/browse/PHOENIX-1711?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14355710#comment-14355710 > ] > > James Taylor commented on PHOENIX-1711: > --------------------------------------- > > You need to get the latest from the 4.0 branch in our git repo: > https://git-wip-us.apache.org/repos/asf/phoenix.git > {code} > git clone https://git-wip-us.apache.org/repos/asf/phoenix.git > git checkout 4.0 > git apply PHOENIX-1711_4.0.patch > mvn clean > mvn package -DskipTests > {code} > > > Improve performance of CSV loader > > --------------------------------- > > > > Key: PHOENIX-1711 > > URL: https://issues.apache.org/jira/browse/PHOENIX-1711 > > Project: Phoenix > > Issue Type: Bug > > Reporter: James Taylor > > Attachments: PHOENIX-1711.patch, PHOENIX-1711_4.0.patch > > > > > > Here is a break-up of percentage execution time for some of the steps > inthe mapper: > > csvParser: 18% > > csvUpsertExecutor.execute(ImmutableList.of(csvRecord)): 39% > > PhoenixRuntime.getUncommittedDataIterator(conn, true): 9% > > while (uncommittedDataIterator.hasNext()): 15% > > Read IO & custom processing: 19% > > See details here: http://s.apache.org/6rl > > > > -- > This message was sent by Atlassian JIRA > (v6.3.4#6332) >
