Skip to content

Commit 36127d3

Browse files
committed
wip
1 parent b9d2ced commit 36127d3

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

yarn/src/main/scala/org/apache/spark/deploy/yarn/ExecutorRunnable.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

yarn/src/test/resources/log4j.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
2727
log4j.logger.org.spark-project.jetty=WARN
28-
log4j.logger.org.apache.hadoop=WARN
28+
log4j.logger.org.apache.hadoop=INFO

yarn/src/test/scala/org/apache/spark/deploy/yarn/ExternalShuffleSuite.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)