File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
main/scala/org/apache/spark/deploy/yarn
scala/org/apache/spark/deploy/yarn Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ class ExecutorRunnable(
105105 // Authentication is not enabled, so just provide dummy metadata
106106 ByteBuffer .allocate(0 )
107107 }
108+ // throw an exception here, and things just hang
108109 ctx.setServiceData(Map [String , ByteBuffer ](" spark_shuffle" -> secretBytes))
109110 }
110111
Original file line number Diff line number Diff line change @@ -25,4 +25,4 @@ log4j.appender.file.layout.ConversionPattern=%d{yy/MM/dd HH:mm:ss.SSS} %t %p %c{
2525
2626# Ignore messages below warning level from Jetty, because it's a bit verbose
2727log4j.logger.org.spark-project.jetty =WARN
28- log4j.logger.org.apache.hadoop =WARN
28+ log4j.logger.org.apache.hadoop =INFO
Original file line number Diff line number Diff line change @@ -151,8 +151,8 @@ class ExternalShuffleSuite extends SparkFunSuite with BeforeAndAfterAll with Mat
151151 false ,
152152 mainClassName(ExternalShuffleDriver .getClass),
153153 appArgs = Seq (result.getAbsolutePath()),
154- extraConf = Map ()
155- // extraConf = Map("spark.shuffle.service.enabled" -> "true")
154+ // extraConf = Map()
155+ extraConf = Map (" spark.shuffle.service.enabled" -> " true" )
156156 )
157157 checkResult(result)
158158 }
You can’t perform that action at this time.
0 commit comments