Skip to content

Commit c8d1eec

Browse files
committed
HBASE-27896 Disable hdfs readahead for pread reads (#5336)
Signed-off-by: Reid Chan <[email protected]>
1 parent bd3484e commit c8d1eec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/StoreFileInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public class StoreFileInfo implements Configurable {
7373
Pattern.compile(String.format("^(%s|%s)\\.(.+)$", HFILE_NAME_REGEX, HFileLink.LINK_NAME_REGEX));
7474

7575
public static final String STORE_FILE_READER_NO_READAHEAD = "hbase.store.reader.no-readahead";
76-
public static final boolean DEFAULT_STORE_FILE_READER_NO_READAHEAD = false;
76+
public static final boolean DEFAULT_STORE_FILE_READER_NO_READAHEAD = true;
7777

7878
// Configuration
7979
private Configuration conf;

0 commit comments

Comments
 (0)