You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HADOOP-19291. RawLocalFileSystem to allow overlapping ranges (#7101)
ChecksumFileSystem creates the chunked ranges based on the checksum chunk size and then calls
readVectored on Raw Local which may lead to overlapping ranges in some cases.
Contributed by: Mukund Thakur
Copy file name to clipboardexpand all lines: hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/contract/AbstractContractVectoredReadTest.java
+28-10
Original file line number
Diff line number
Diff line change
@@ -270,23 +270,42 @@ public void testSomeRangesMergedSomeUnmerged() throws Exception {
270
270
}
271
271
272
272
/**
273
-
* Vectored IO doesn't support overlapping ranges.
273
+
* Most file systems won't support overlapping ranges.
0 commit comments