Github user dongjoon-hyun commented on a diff in the pull request:
https://github.com/apache/spark/pull/21923#discussion_r207749332
--- Diff:
core/src/main/scala/org/apache/spark/internal/config/package.scala ---
@@ -567,4 +567,15 @@ package object config {
.intConf
.checkValue(v => v > 0, "The value should be a positive integer.")
.createWithDefault(2000)
+
+ private[spark] val EXECUTOR_PLUGINS =
+ ConfigBuilder("spark.executor.plugins")
+ .internal()
+ .doc("Comma-separated list of class names for \"plugins\"
implementing " +
+ "org.apache.spark.AbstractExecutorPlugin. Plugins have the same
privileges as any task " +
--- End diff --
`org.apache.spark.AbstractExecutorPlugin` ->
`org.apache.spark.ExecutorPlugin`.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]