Github user vanzin commented on a diff in the pull request: https://github.com/apache/spark/pull/22192#discussion_r214486250 --- Diff: core/src/main/scala/org/apache/spark/internal/config/package.scala --- @@ -604,4 +604,14 @@ package object config { .intConf .checkValue(v => v > 0, "The max failures should be a positive value.") .createWithDefault(40) + + private[spark] val EXECUTOR_PLUGINS = + ConfigBuilder("spark.executor.plugins") + .doc("Comma-separated list of class names for \"plugins\" implementing " + + "org.apache.spark.ExecutorPlugin. Plugins have the same privileges as any task " + + "in a spark executor. They can also interfere with task execution and fail in " + --- End diff -- Spark
--- --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org