yaooqinn commented on code in PR #42638:
URL: https://github.com/apache/spark/pull/42638#discussion_r1303716220
##########
core/src/main/scala/org/apache/spark/deploy/history/FsHistoryProvider.scala:
##########
@@ -1230,6 +1230,10 @@ private[history] class FsHistoryProvider(conf:
SparkConf, clock: Clock)
try {
return createHybridStore(dm, appId, attempt, metadata)
} catch {
+ case e: RuntimeException if e.getMessage.contains("Not enough memory
to create hybrid") =>
Review Comment:
```suggestion
case e: RuntimeException
if e.getMessage != null && e.getMessage.contains("Not enough
memory to create hybrid") =>
```
--
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]