keith-turner commented on a change in pull request #669: Use optimized writeV methods in Mutations URL: https://github.com/apache/accumulo/pull/669#discussion_r222035357
########## File path: core/src/main/java/org/apache/accumulo/core/data/Mutation.java ########## @@ -1613,22 +1615,28 @@ public void write(DataOutput out) throws IOException { } out.write((byte) (0x80 | hasValues)); - WritableUtils.writeVInt(out, row.length); + int size = UnsynchronizedBuffer.writeVInt(integerBuffer, 0, row.length); Review comment: Oh, also this utillity method could have a comment about how its faster because it avoid writing single bytes which may be sync. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services