[ 
https://issues.apache.org/jira/browse/HBASE-13817?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14572304#comment-14572304
 ] 

Hudson commented on HBASE-13817:
--------------------------------

FAILURE: Integrated in HBase-TRUNK #6545 (See 
[https://builds.apache.org/job/HBase-TRUNK/6545/])
HBASE-13817 ByteBufferOuputStream - add writeInt support. (anoopsamjohn: rev 
bb62d5b2e8db1677568723bb8d0d8ea4fd2c6f46)
* hbase-common/src/main/java/org/apache/hadoop/hbase/KeyValueUtil.java
* 
hbase-common/src/main/java/org/apache/hadoop/hbase/io/encoding/BufferedDataBlockEncoder.java
* hbase-common/src/main/java/org/apache/hadoop/hbase/KeyValue.java
* 
hbase-common/src/main/java/org/apache/hadoop/hbase/io/ByteBufferOutputStream.java
* hbase-common/src/main/java/org/apache/hadoop/hbase/NoTagsKeyValue.java


> ByteBufferOuputStream - add writeInt support
> --------------------------------------------
>
>                 Key: HBASE-13817
>                 URL: https://issues.apache.org/jira/browse/HBASE-13817
>             Project: HBase
>          Issue Type: Sub-task
>          Components: Scanners
>            Reporter: Anoop Sam John
>            Assignee: Anoop Sam John
>             Fix For: 2.0.0
>
>         Attachments: HBASE-13817.patch, HBASE-13817_V2.patch, 
> HBASE-13817_V3.patch, benchmark.zip
>
>
> While writing Cells to this stream, to make the CellBlock ByteBuffer, we do 
> write length of the cell as int. We use StreamUtils to do this which will 
> write each byte one after the other. So 4 write calls on Stream.(OutputSteam 
> has only this support) With ByteBufferOuputStream we have the overhead of 
> checking for size limit and possible grow with every write call. Internally 
> this stream writes to a ByteBuffer. Again inside the ByteBuffer 
> implementations there is position limit checks.  If we do write these length 
> as int in one go we can reduce this overhead.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to