HADOOP-18531. Fix assertion failure in ITestS3APrefetchingInputStream (#5149)
This patch MUST be applied to all branches containing HADOOP-18378 so as to ensure reliable test runs. Contributed by Ashutosh Gupta
This commit is contained in:
parent
ac958777af
commit
2c1158e858
@ -173,8 +173,6 @@ public void testReadLargeFileFullyLazySeek() throws Throwable {
|
||||
}
|
||||
// Verify that once stream is closed, all memory is freed
|
||||
verifyStatisticGaugeValue(ioStats, STREAM_READ_ACTIVE_MEMORY_IN_USE, 0);
|
||||
assertThatStatisticMaximum(ioStats,
|
||||
ACTION_EXECUTOR_ACQUIRED + SUFFIX_MAX).isGreaterThan(0);
|
||||
}
|
||||
|
||||
@Test
|
||||
@ -211,8 +209,6 @@ public void testRandomReadLargeFile() throws Throwable {
|
||||
}
|
||||
verifyStatisticGaugeValue(ioStats, STREAM_READ_BLOCKS_IN_FILE_CACHE, 0);
|
||||
verifyStatisticGaugeValue(ioStats, STREAM_READ_ACTIVE_MEMORY_IN_USE, 0);
|
||||
assertThatStatisticMaximum(ioStats,
|
||||
ACTION_EXECUTOR_ACQUIRED + SUFFIX_MAX).isGreaterThan(0);
|
||||
}
|
||||
|
||||
@Test
|
||||
|
Loading…
Reference in New Issue
Block a user