itholic opened a new pull request, #43537: URL: https://github.com/apache/spark/pull/43537
### What changes were proposed in this pull request? This PR proposes to improve error message for `SparkContext` on Spark Connect. ### Why are the changes needed? To improve the usability of error message by using proper error class. ### Does this PR introduce _any_ user-facing change? No API change, but only user-facing error message is improved as below: **Before** ``` >>> spark.sparkContext PySparkNotImplementedError: [NOT_IMPLEMENTED] sparkContext() is not implemented. ``` **After** ``` >>> spark.sparkContext PySparkAttributeError: [JVM_ATTRIBUTE_NOT_SUPPORTED] Attribute `sparkContext` is not supported in Spark Connect as it depends on the JVM. If you need to use this attribute, do not use Spark Connect when creating your session. ``` ### How was this patch tested? The existing CI should pass ### Was this patch authored or co-authored using generative AI tooling? No. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
