Skip to content
Snippets Groups Projects
Commit ad607100 authored by Raymond Liu's avatar Raymond Liu
Browse files

Need to send dummy hello message to actually estabilish akka connection.

parent dd6d347f
No related branches found
No related tags found
No related merge requests found
...@@ -60,6 +60,8 @@ class WorkerLauncher(args: ApplicationMasterArguments, conf: Configuration) exte ...@@ -60,6 +60,8 @@ class WorkerLauncher(args: ApplicationMasterArguments, conf: Configuration) exte
override def preStart() { override def preStart() {
logInfo("Listen to driver: " + driverUrl) logInfo("Listen to driver: " + driverUrl)
driver = context.actorSelection(driverUrl) driver = context.actorSelection(driverUrl)
// Send a hello message thus the connection is actually established, thus we can monitor Lifecycle Events.
driver ! "Hello"
context.system.eventStream.subscribe(self, classOf[RemotingLifecycleEvent]) context.system.eventStream.subscribe(self, classOf[RemotingLifecycleEvent])
} }
......
...@@ -61,6 +61,8 @@ class WorkerLauncher(args: ApplicationMasterArguments, conf: Configuration) exte ...@@ -61,6 +61,8 @@ class WorkerLauncher(args: ApplicationMasterArguments, conf: Configuration) exte
override def preStart() { override def preStart() {
logInfo("Listen to driver: " + driverUrl) logInfo("Listen to driver: " + driverUrl)
driver = context.actorSelection(driverUrl) driver = context.actorSelection(driverUrl)
// Send a hello message thus the connection is actually established, thus we can monitor Lifecycle Events.
driver ! "Hello"
context.system.eventStream.subscribe(self, classOf[RemotingLifecycleEvent]) context.system.eventStream.subscribe(self, classOf[RemotingLifecycleEvent])
} }
......
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