Details
Description
There's a typo ("Invlaid" which should be "Invalid") in line 199 of MergeManagerImpl.java
currently:
if (this.maxSingleShuffleLimit >= this.mergeThreshold)
should be:
if (this.maxSingleShuffleLimit >= this.mergeThreshold)
{ throw new RuntimeException("Invalid configuration: " + "maxSingleShuffleLimit should be less than mergeThreshold" + "maxSingleShuffleLimit: " + this.maxSingleShuffleLimit + "mergeThreshold: " + this.mergeThreshold); }