exmeso icon indicating copy to clipboard operation
exmeso copied to clipboard

External Merge Sort in Java

Results 3 exmeso issues
Sort by recently updated
recently updated
newest added

When multiple `ChunkFile`s contain values that compare equal, I would expect the `mergeSortedChunks` method to respect the order of the files in the `sortedChunks` parameter. Instead the `MergeSortedIterator` uses a...

When and an input file is small enough to fit in a single chunk, distinct option doesn't remove duplicated items. The reason seems because ExternalMergeSort#mergeSortedChunksNoPartialMerge(List sortedChunks) doesn't honor config.distinct as...

The sample code to sort json file gets org.codehaus.jackson.map.RuntimeJsonMappingException as you see in [exception.txt](https://github.com/grove/exmeso/files/681709/exception.txt). The reason is a bug of org.codehaus.jackson.map.MappingIterator.java, you cannot invoke hasNext() two times or more when...