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_r222061231
########## File path: core/src/main/java/org/apache/accumulo/core/data/Mutation.java ########## @@ -1613,22 +1615,22 @@ public void write(DataOutput out) throws IOException { } out.write((byte) (0x80 | hasValues)); - WritableUtils.writeVInt(out, row.length); + UnsynchronizedBuffer.writeVInt(out, integerBuffer, row.length); Review comment: I don't think it changes persisted data. Which makes think that this change could be made to 1.9. ---------------------------------------------------------------- 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