Repository: tez Updated Branches: refs/heads/branch-0.7 3dca7d3f7 -> a0d63ed05
TEZ-2496. Consider scheduling tasks in ShuffleVertexManager based on the partition sizes from the source. Addendum patch. (rbalamohan) Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/a0d63ed0 Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/a0d63ed0 Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/a0d63ed0 Branch: refs/heads/branch-0.7 Commit: a0d63ed05b074036319aaedafc83abfe09b8de6d Parents: 3dca7d3 Author: Rajesh Balamohan <[email protected]> Authored: Wed Dec 16 04:48:08 2015 +0530 Committer: Rajesh Balamohan <[email protected]> Committed: Wed Dec 16 04:48:08 2015 +0530 ---------------------------------------------------------------------- .../java/org/apache/tez/runtime/library/utils/DATA_RANGE_IN_MB.java | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/a0d63ed0/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/utils/DATA_RANGE_IN_MB.java ---------------------------------------------------------------------- diff --git a/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/utils/DATA_RANGE_IN_MB.java b/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/utils/DATA_RANGE_IN_MB.java index 126f04e..7569818 100644 --- a/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/utils/DATA_RANGE_IN_MB.java +++ b/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/utils/DATA_RANGE_IN_MB.java @@ -18,7 +18,6 @@ package org.apache.tez.runtime.library.utils; -import org.apache.commons.math3.util.FastMath; public enum DATA_RANGE_IN_MB { THOUSAND(1000), HUNDRED(100), TEN(10), ONE(1), ZERO(0);
