Description
For example `Rebalance` provide a functionality that split the large reduce partition into smalls. However we have seen many SQL produce small files due to the last partition.
Let's say we have one reduce partition and six map partitions and the blocks are:
[10, 10, 10, 10, 10, 10]
If the target size is 50, we will get two files with 50 and 10. And it will get worse if there are thousands of reduce partitions.
It should be helpful if we can control the min partition size.