Repository: tez Updated Branches: refs/heads/master 8ce4621ff -> e2a1a1f54
TEZ-3579. Wrong configuration key for max slow start fraction in CartesianProductVertexManager. Contributed by Zhiyuan Yang. Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/e2a1a1f5 Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/e2a1a1f5 Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/e2a1a1f5 Branch: refs/heads/master Commit: e2a1a1f54b9fc4beaf43b703428bf5023d3169c9 Parents: 8ce4621 Author: Siddharth Seth <[email protected]> Authored: Wed Jan 18 10:30:26 2017 -0800 Committer: Siddharth Seth <[email protected]> Committed: Wed Jan 18 10:30:26 2017 -0800 ---------------------------------------------------------------------- CHANGES.txt | 1 + .../library/cartesianproduct/CartesianProductVertexManager.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/e2a1a1f5/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 116bd91..0326e0b 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -7,6 +7,7 @@ INCOMPATIBLE CHANGES ALL CHANGES: + TEZ-3579. Wrong configuration key for max slow start fraction in CartesianProductVertexManager. TEZ-3458. Auto grouping for cartesian product edge(unpartitioned case). TEZ-3574. Container reuse won't pickup extra dag level local resource. TEZ-3443. Remove a repeated/unused method from MRTask. http://git-wip-us.apache.org/repos/asf/tez/blob/e2a1a1f5/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/cartesianproduct/CartesianProductVertexManager.java ---------------------------------------------------------------------- diff --git a/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/cartesianproduct/CartesianProductVertexManager.java b/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/cartesianproduct/CartesianProductVertexManager.java index 38e2355..0062579 100644 --- a/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/cartesianproduct/CartesianProductVertexManager.java +++ b/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/cartesianproduct/CartesianProductVertexManager.java @@ -59,7 +59,7 @@ public class CartesianProductVertexManager extends VertexManagerPlugin { * Schedule all tasks when the fraction of finished cartesian product source tasks reach this value */ public static final String TEZ_CARTESIAN_PRODUCT_SLOW_START_MAX_FRACTION = - "tez.cartesian-product.min-src-fraction"; + "tez.cartesian-product.max-src-fraction"; public static final float TEZ_CARTESIAN_PRODUCT_SLOW_START_MAX_FRACTION_DEFAULT = 0.75f; /**
