Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SPARK-45682][CORE][FOLLOW-UP] Restore console progress bar in Spark …
…shells ### What changes were proposed in this pull request? This PR is a followup of #43573 that restore the console progress bar in Spark shells. Previously it was `CR + bar + CR` but mistakenly it was fixed as `s"${CR}bar$CR"`. Before: ``` >>> spark.range(10000).repartition(4000).count() bar ``` After: ``` >>> spark.range(10000).repartition(4000).count() [Stage 5:==============> (1121 + 16) / 4000] ``` ### Why are the changes needed? To have the proper working console bar. This is a regression. ### Does this PR introduce _any_ user-facing change? Not yet because the main change has not been released out yet. ### How was this patch tested? Manually tested: ```bash ./bin/pyspark spark.range(10000).repartition(4000).count() ``` ### Was this patch authored or co-authored using generative AI tooling? No. Closes #43900 from HyukjinKwon/SPARK-45682. Authored-by: Hyukjin Kwon <gurwls223@apache.org> Signed-off-by: Hyukjin Kwon <gurwls223@apache.org>
- Loading branch information