Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
spark
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs525-sp18-g07
spark
Commits
e2b84774
Commit
e2b84774
authored
12 years ago
by
Matei Zaharia
Browse files
Options
Downloads
Patches
Plain Diff
Made Akka timeout and message frame size configurable, and upped the defaults
parent
dfce7e74
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/src/main/scala/spark/util/AkkaUtils.scala
+5
-2
5 additions, 2 deletions
core/src/main/scala/spark/util/AkkaUtils.scala
with
5 additions
and
2 deletions
core/src/main/scala/spark/util/AkkaUtils.scala
+
5
−
2
View file @
e2b84774
...
@@ -25,6 +25,8 @@ private[spark] object AkkaUtils {
...
@@ -25,6 +25,8 @@ private[spark] object AkkaUtils {
def
createActorSystem
(
name
:
String
,
host
:
String
,
port
:
Int
)
:
(
ActorSystem
,
Int
)
=
{
def
createActorSystem
(
name
:
String
,
host
:
String
,
port
:
Int
)
:
(
ActorSystem
,
Int
)
=
{
val
akkaThreads
=
System
.
getProperty
(
"spark.akka.threads"
,
"4"
).
toInt
val
akkaThreads
=
System
.
getProperty
(
"spark.akka.threads"
,
"4"
).
toInt
val
akkaBatchSize
=
System
.
getProperty
(
"spark.akka.batchSize"
,
"15"
).
toInt
val
akkaBatchSize
=
System
.
getProperty
(
"spark.akka.batchSize"
,
"15"
).
toInt
val
akkaTimeout
=
System
.
getProperty
(
"spark.akka.timeout"
,
"20"
).
toInt
val
akkaFrameSize
=
System
.
getProperty
(
"spark.akka.frameSize"
,
"10"
).
toInt
val
akkaConf
=
ConfigFactory
.
parseString
(
"""
val
akkaConf
=
ConfigFactory
.
parseString
(
"""
akka.daemonic = on
akka.daemonic = on
akka.event-handlers = ["akka.event.slf4j.Slf4jEventHandler"]
akka.event-handlers = ["akka.event.slf4j.Slf4jEventHandler"]
...
@@ -32,10 +34,11 @@ private[spark] object AkkaUtils {
...
@@ -32,10 +34,11 @@ private[spark] object AkkaUtils {
akka.remote.transport = "akka.remote.netty.NettyRemoteTransport"
akka.remote.transport = "akka.remote.netty.NettyRemoteTransport"
akka.remote.netty.hostname = "%s"
akka.remote.netty.hostname = "%s"
akka.remote.netty.port = %d
akka.remote.netty.port = %d
akka.remote.netty.connection-timeout = 1s
akka.remote.netty.connection-timeout = %ds
akka.remote.netty.message-frame-size = %d MiB
akka.remote.netty.execution-pool-size = %d
akka.remote.netty.execution-pool-size = %d
akka.actor.default-dispatcher.throughput = %d
akka.actor.default-dispatcher.throughput = %d
"""
.
format
(
host
,
port
,
akkaThreads
,
akkaBatchSize
))
"""
.
format
(
host
,
port
,
akkaTimeout
,
akkaFrameSize
,
akkaThreads
,
akkaBatchSize
))
val
actorSystem
=
ActorSystem
(
"spark"
,
akkaConf
,
getClass
.
getClassLoader
)
val
actorSystem
=
ActorSystem
(
"spark"
,
akkaConf
,
getClass
.
getClassLoader
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment