Skip to content
Snippets Groups Projects
Commit c729fa7c authored by Prashant Sharma's avatar Prashant Sharma
Browse files

formatting related fixes suggested by Patrick.

parent b84dc780
No related branches found
No related tags found
No related merge requests found
...@@ -173,11 +173,7 @@ class SparkConf(loadDefaults: Boolean) extends Serializable with Cloneable with ...@@ -173,11 +173,7 @@ class SparkConf(loadDefaults: Boolean) extends Serializable with Cloneable with
} }
/** Get all akka conf variables set on this SparkConf */ /** Get all akka conf variables set on this SparkConf */
def getAkkaConf: Seq[(String, String)] = { def getAkkaConf: Seq[(String, String)] = getAll.filter {case (k, v) => k.startsWith("akka.")}
getAll.filter {
case (k, v) => k.startsWith("akka.")
}
}
/** Does the configuration contain a given parameter? */ /** Does the configuration contain a given parameter? */
def contains(key: String): Boolean = settings.contains(key) def contains(key: String): Boolean = settings.contains(key)
......
...@@ -364,7 +364,7 @@ Apart from these, the following properties are also available, and may be useful ...@@ -364,7 +364,7 @@ Apart from these, the following properties are also available, and may be useful
<td>akka.x.y....</td> <td>akka.x.y....</td>
<td>value</td> <td>value</td>
<td> <td>
An arbitrary akka configuration can be set directly on spark conf and it is applied for all the ActorSystems created spark wide for that spark context and its assigned executors as well. An arbitrary akka configuration can be set directly on spark conf and it is applied for all the ActorSystems created spark wide for that SparkContext and its assigned executors as well.
</td> </td>
</tr> </tr>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment