Skip to content
Snippets Groups Projects
Commit 85a85646 authored by Patrick Wendell's avatar Patrick Wendell
Browse files

Disable remote lifecycle logging from Akka.

This changes the default setting to `off` for remote lifecycle events. When this is on, it is very chatty at the INFO level. It also prints out several ERROR messages sometimes when sc.stop() is called.
parent fb762505
No related branches found
No related tags found
No related merge requests found
...@@ -37,7 +37,7 @@ private[spark] object AkkaUtils { ...@@ -37,7 +37,7 @@ private[spark] object AkkaUtils {
akka.stdout-loglevel = "ERROR" akka.stdout-loglevel = "ERROR"
akka.actor.provider = "akka.remote.RemoteActorRefProvider" akka.actor.provider = "akka.remote.RemoteActorRefProvider"
akka.remote.transport = "akka.remote.netty.NettyRemoteTransport" akka.remote.transport = "akka.remote.netty.NettyRemoteTransport"
akka.remote.log-remote-lifecycle-events = on akka.remote.log-remote-lifecycle-events = off
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 = %ds akka.remote.netty.connection-timeout = %ds
......
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