MCPcopy Create free account
hub / github.com/apache/pig / explain

Method explain

src/org/apache/pig/PigServer.java:1135–1138  ·  view source on GitHub ↗

Provide information on how a pig query will be executed. For now this information is very developer focussed, and probably not very useful to the average user. @param alias Name of alias to explain. @param stream PrintStream to write explanation to. @throws IOException if the requested alias cannot

(String alias,
                        PrintStream stream)

Source from the content-addressed store, hash-verified

1133 * @throws IOException if the requested alias cannot be found.
1134 */
1135 public void explain(String alias,
1136 PrintStream stream) throws IOException {
1137 explain(alias, "text", true, false, stream, stream, null, null);
1138 }
1139
1140 /**
1141 * Provide information on how a pig query will be executed.

Calls 7

buildStorePlanMethod · 0.95
markAsExecutedMethod · 0.80
explainMethod · 0.65
sizeMethod · 0.65
getExecutionEngineMethod · 0.65
optimizeMethod · 0.45
equalsMethod · 0.45