[
https://issues.apache.org/jira/browse/HBASE-18714?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16146849#comment-16146849
]
Hudson commented on HBASE-18714:
--------------------------------
FAILURE: Integrated in Jenkins build HBase-2.0 #422 (See
[https://builds.apache.org/job/HBase-2.0/422/])
HBASE-18714 The dropBehind and readahead don't be applied when (chia7712: rev
ca161288fb4b03f735af9cfc1685479c64ad5d73)
* (edit)
hbase-server/src/main/java/org/apache/hadoop/hbase/io/FSDataInputStreamWrapper.java
> The dropBehind and readahead don't be applied when useHBaseChecksum is enabled
> ------------------------------------------------------------------------------
>
> Key: HBASE-18714
> URL: https://issues.apache.org/jira/browse/HBASE-18714
> Project: HBase
> Issue Type: Bug
> Reporter: Chia-Ping Tsai
> Assignee: Chia-Ping Tsai
> Priority: Minor
> Fix For: 2.0.0-alpha-3
>
> Attachments: HBASE-18714.v0.patch
>
>
> {code:title=FSDataInputStreamWrapper}
> private void setStreamOptions(FSDataInputStream in) {
> try {
> this.stream.setDropBehind(dropBehind);
> } catch (Exception e) {
> // Skipped.
> }
> if (readahead >= 0) {
> try {
> this.stream.setReadahead(readahead);
> } catch (Exception e) {
> // Skipped.
> }
> }
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)