VenkatSNarayanan commented on code in PR #339: URL: https://github.com/apache/tez/pull/339#discussion_r1550307095
########## tez-mapreduce/src/main/java/org/apache/tez/mapreduce/common/Utils.java: ########## @@ -63,5 +64,8 @@ public static Counter getMRCounter(TezCounter tezCounter) { Objects.requireNonNull(tezCounter); return new MRCounters.MRCounter(tezCounter); } - + + public static String createJobUUID(long clusterId, int appId, int dagIdentifier) { + return new JobID(String.valueOf(clusterId), appId).toString()+"_"+String.valueOf(dagIdentifier); Review Comment: Addressed. -- 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