Skip to content
Merged
Show file tree
Hide file tree
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 @@ -360,7 +360,7 @@ public List<Event> initialize() throws Exception {
}
} else {
// Raw splits
splits = inputFormat.getSplits(jobConf, numSplits.orElse(Math.multiplyExact(availableSlots, (int)waves)));
splits = inputFormat.getSplits(jobConf, numSplits.orElse((int) (availableSlots * waves)));
}
// Sort the splits, so that subsequent grouping is consistent.
Arrays.sort(splits, new InputSplitComparator());
Expand Down
2 changes: 1 addition & 1 deletion ql/src/test/results/clientpositive/llap/mm_all.q.out
Original file line number Diff line number Diff line change
Expand Up @@ -1998,7 +1998,7 @@ Table Type: MANAGED_TABLE
Table Parameters:
COLUMN_STATS_ACCURATE {\"BASIC_STATS\":\"true\"}
bucketing_version 2
numFiles 16
numFiles 27
numRows 500
rawDataSize 5312
totalSize #Masked#
Expand Down
Loading