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:
Ashutosh Gupta 2022-11-23 17:47:39 +00:00 committed by Steve Loughran
parent 0f1a3f23a5
commit 5ba5980731
No known key found for this signature in database
GPG Key ID: D22CF846DBB162A0
1 changed files with 0 additions and 4 deletions

View File

@ -170,8 +170,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
@ -208,8 +206,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