shameersss1 commented on a change in pull request #60: URL: https://github.com/apache/tez/pull/60#discussion_r821870419
########## File path: tez-dag/src/main/java/org/apache/tez/dag/app/dag/impl/DAGImpl.java ########## @@ -1772,6 +1774,52 @@ private static void parseVertexEdges(DAGImpl dag, Map<String, EdgePlan> edgePlan vertex.setInputVertices(inVertices); vertex.setOutputVertices(outVertices); + boolean cleanupShuffleDataAtVertexLevel = dag.dagConf.getBoolean(TezConfiguration.TEZ_AM_VERTEX_CLEANUP_ON_COMPLETION, + TezConfiguration.TEZ_AM_VERTEX_CLEANUP_ON_COMPLETION_DEFAULT) && ShuffleUtils.isTezShuffleHandler(dag.dagConf); + if (cleanupShuffleDataAtVertexLevel) { + int deletionHeight = dag.dagConf.getInt(TezConfiguration.TEZ_AM_VERTEX_CLEANUP_HEIGHT, + TezConfiguration.TEZ_AM_VERTEX_CLEANUP_HEIGHT_DEFAULT); + getSpannedVerticesAncestors(vertex, ancestors, deletionHeight); Review comment: ack. I will fix this in next revision. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@tez.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org