yabola commented on PR #37779:
URL: https://github.com/apache/spark/pull/37779#issuecomment-1255907389
@mridulm I think it is sufficient. If you have any doubts please tell me~
I run my test code in spark standalone cluster(It should also have this
problem with other modes)
This is my driver code:
```
val spark = SparkSession
.builder()
.appName("plugin example")
.config("spark.plugins",
"org.apache.spark.examples.sql.ErrorSparkPlugin")
.getOrCreate()
val df = spark.range(10, 20)
df.show()
Thread.sleep(20 * 60 * 1000)
spark.stop()
```
--
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]