הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
Prints the (logical and physical) plans to the console for debugging.
Syntax
explain(extended=False)
Parameters
| Parameter | Type | Description |
|---|---|---|
extended |
bool, optional | If False (default), prints only the physical plan. If True, prints the parsed, analyzed, and optimized logical plans as well. |
Returns
None
Examples
sdf = spark.readStream.format("rate").load()
sq = sdf.writeStream.format('memory').queryName('query_explain').start()
sq.processAllAvailable()
Print the physical plan only:
sq.explain()
# == Physical Plan ==
# ...
Print all plans:
sq.explain(True)
# == Parsed Logical Plan ==
# ...
# == Analyzed Logical Plan ==
# ...
# == Optimized Logical Plan ==
# ...
# == Physical Plan ==
# ...
sq.stop()