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
93fe331e
Commit
93fe331e
authored
12 years ago
by
Denny
Browse files
Options
Downloads
Patches
Plain Diff
Delete old DeployUtils.
parent
cf074f9c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/src/main/scala/spark/deploy/DeployUtils.scala
+0
-53
0 additions, 53 deletions
core/src/main/scala/spark/deploy/DeployUtils.scala
with
0 additions
and
53 deletions
core/src/main/scala/spark/deploy/DeployUtils.scala
deleted
100644 → 0
+
0
−
53
View file @
cf074f9c
package
spark.deploy
import
akka.actor.
{
ActorRef
,
Props
,
Actor
,
ActorSystem
,
Terminated
}
import
spark.deploy.worker.Worker
import
spark.deploy.master.Master
import
spark.util.AkkaUtils
import
spark.
{
Logging
,
Utils
}
import
scala.collection.mutable.ArrayBuffer
object
DeployUtils
extends
Logging
{
/* Starts a local standalone Spark cluster with a specified number of slaves */
def
startLocalSparkCluster
(
numSlaves
:
Int
,
coresPerSlave
:
Int
,
memoryPerSlave
:
Int
)
:
String
=
{
logInfo
(
"Starting a local Spark cluster with "
+
numSlaves
+
" slaves."
)
val
threadPool
=
Utils
.
newDaemonFixedThreadPool
(
numSlaves
+
1
)
val
localIpAddress
=
Utils
.
localIpAddress
val
workers
=
ArrayBuffer
[
ActorRef
]()
/* Start the Master */
val
(
actorSystem
,
boundPort
)
=
AkkaUtils
.
createActorSystem
(
"sparkMaster"
,
localIpAddress
,
0
)
val
masterUrl
=
"spark://"
+
localIpAddress
+
":"
+
boundPort
threadPool
.
execute
(
new
Runnable
{
def
run
()
{
val
actor
=
actorSystem
.
actorOf
(
Props
(
new
Master
(
localIpAddress
,
boundPort
,
8080
)),
name
=
"Master"
)
actorSystem
.
awaitTermination
()
}
})
/* Start the Slaves */
(
1
to
numSlaves
+
1
).
foreach
{
slaveNum
=>
val
(
actorSystem
,
boundPort
)
=
AkkaUtils
.
createActorSystem
(
"sparkWorker"
+
slaveNum
,
localIpAddress
,
0
)
threadPool
.
execute
(
new
Runnable
{
def
run
()
{
val
actor
=
actorSystem
.
actorOf
(
Props
(
new
Worker
(
localIpAddress
,
boundPort
,
8080
+
slaveNum
,
coresPerSlave
,
memoryPerSlave
,
masterUrl
)),
name
=
"Worker"
)
workers
+=
actor
actorSystem
.
awaitTermination
()
}
})
}
return
masterUrl
}
}
\ No newline at end of file
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