Github user mateiz commented on a diff in the pull request:
https://github.com/apache/spark/pull/158#discussion_r11190063
--- Diff:
core/src/main/scala/org/apache/spark/executor/ExecutorExitCode.scala ---
@@ -41,6 +41,12 @@ object ExecutorExitCode {
/** DiskStore failed to create a local temporary directory after many
attempts. */
val DISK_STORE_FAILED_TO_CREATE_DIR = 53
+ /** TachyonStore failed to create a local temporary directory after many
attempts. */
+ val TACHYON_STORE_FAILED_TO_INITIALIZE = 54
+
+ /** TachyonStore failed to create a local temporary directory after many
attempts. */
+ val TACHYON_STORE_FAILED_TO_CREATE_DIR = 55
+
def explainExitCode(exitCode: Int): String = {
--- End diff --
Because you added two new special exit codes above, you should also modify
this method to explain them. That's why we have the named exit codes here, to
give users a meaningful message if the executor crashes.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---