We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3457934 commit 5436c08Copy full SHA for 5436c08
cook/src/main/scala/org/apache/spark/scheduler/cluster/cook/CoarseCookSchedulerBackend.scala
@@ -110,7 +110,6 @@ class CoarseCookSchedulerBackend(
110
.setStatusUpdateInterval(10)
111
.setBatchRequestSize(24)
112
.setKerberosAuth()
113
- .setRetries(1)
114
.build()
115
116
private[this] val jobListener = new CJobListener {
@@ -280,6 +279,7 @@ class CoarseCookSchedulerBackend(
280
279
.setMemory(executorMemory(sc).toDouble)
281
.setCpus(numCores)
282
.setPriority(priority)
+ .setRetries(1)
283
284
val container = conf.get("spark.executor.cook.container", null)
285
if(container != null) {
0 commit comments