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

kka-cluster-seed_2.10.1.3.source-code.application.conf Maven / Gradle / Ivy

akka {
    loggers = ["akka.event.slf4j.Slf4jLogger"]
    loglevel = DEBUG
    stdout-loglevel = DEBUG
    debug {
        receive = on
        autoreceive = on
        lifecycle = on
        event-stream = on
    }
    actor {
        provider = "akka.cluster.ClusterActorRefProvider"
    }
    remote {
        log-remote-lifecycle-events = off
        netty.tcp {
            hostname = db.sandinh.com
            port = 2552
        }
    }
    cluster {
        seed-nodes = [
            "akka.tcp://[email protected]:2552", #seed
            "akka.tcp://[email protected]:2555", #chan
            "akka.tcp://[email protected]:2551", #api
        ]
        gossip-interval = 2s
        metrics.enabled = off
    }
    #extensions = ["akka.contrib.pattern.DistributedPubSubExtension"]
    contrib.cluster.pub-sub {
        # How often the DistributedPubSubMediator should send out gossip information
        gossip-interval = 2s
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy