All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ing4j.deeplearning4j-scaleout-akka.0.4-rc3.1.source-code.application.conf Maven / Gradle / Ivy

There is a newer version: 0.4-rc3.9
Show newest version
akka {

extensions = ["akka.contrib.pattern.ClusterReceptionistExtension","akka.contrib.pattern.DistributedPubSubExtension"]
  loggers = ["akka.event.slf4j.Slf4jLogger"]
   loglevel = "INFO"

	actor {
		provider = "akka.cluster.ClusterActorRefProvider"
		serialize-messages = on
		serialize-creators = off
		
		     worker-dispatcher {
  				type = Dispatcher
  				mailbox-capacity = 3000
  				mailbox-push-timeout-time = 120s
			}
		
	 deployment {
	
		
      serializers {
        java = "akka.serialization.JavaSerializer"
        proto = "akka.remote.serialization.ProtobufSerializer"
      }
 
     
		
		}
	
	}
	
	remote {
	 	transport = "akka.remote.netty.NettyRemoteTransport"
	 	log-remote-lifecycle-events = off
	 	
	 	netty.tcp {
	  	    hostname = "localhost"
	  	    port = 0
	  	    maximum-frame-size = 99999999999b
	  	}

		transport-failure-detector {
    			heartbeat-interval = 120 s
    			acceptable-heartbeat-pause = 60 s
  		}
	}

	cluster {
	 failure-detector {
      threshold = 12
      acceptable-heartbeat-pause = 120s
      heartbeat-interval = 5s
      heartbeat-request {
        expected-response-after = 120s
      }
     }
	 jmx.enabled = on
	 enabled = on
	 allow-local-routees = off
		
	 auto-down-unreachable-after = off
     roles = ["master"]

	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy