Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,9 @@ public void testInMemAllocationWithJvmMaxMemory() throws IOException {
// check if requestSize is greater than maxSingleShuffleLimit
assertTrue(requestSize > inputManager.maxSingleShuffleLimit);

// check if really test case failure catch in tez ci
assertTrue(requestSize < inputManager.maxSingleShuffleLimit);

// requestSize is greater than the maxSingleShuffleLimit, so allocation is from DISK
FetchedInput fi1 = inputManager.allocate(requestSize, compressedSize, new InputAttemptIdentifier(1, 1));
assertEquals(FetchedInput.Type.DISK, fi1.getType());
Expand Down