public static final long DISK_READ_SPEED = 100 * 1024 * 1024;
But when I see MapperSpeedHeuristic.java, I see that disk speed limit is fraction of block size
private double[] diskSpeedLimits = {1d/2, 1d/4, 1d/8, 1d/32}; // Fraction of HDFS block size
I feel that this disk speed limits are calculated against preset 100MB/s...not based on Block size. Please provide rationale for this.