zkaoudi commented on code in PR #562:
URL: https://github.com/apache/incubator-wayang/pull/562#discussion_r2077500293
##########
wayang-commons/wayang-core/src/main/java/org/apache/wayang/core/api/Job.java:
##########
@@ -304,6 +305,16 @@ protected void doExecute() {
this.logger.warn("Failed to initialize monitor: {}", e);
}
+ if
(this.configuration.getBooleanProperty("wayang.core.explain.enabled")) {
+ ExplainUtils.write(
+ ExplainUtils.parsePlan(this.wayangPlan, true),
+
this.configuration.getStringProperty("wayang.core.explain.logical.file")
+ );
+ ExplainUtils.write(
+ ExplainUtils.parsePlan(executionPlan, true),
+
this.configuration.getStringProperty("wayang.core.explain.execution.file")
Review Comment:
what if the user did not specify the file path?
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]