39 lines
919 B
Plaintext
39 lines
919 B
Plaintext
akka {
|
|
log-dead-letters = 1
|
|
log-dead-letters-during-shutdown = off
|
|
loglevel = INFO
|
|
|
|
actor {
|
|
provider = "akka.cluster.ClusterActorRefProvider"
|
|
debug {
|
|
receive = on
|
|
autoreceive = on
|
|
lifecycle = on
|
|
fsm = on
|
|
}
|
|
}
|
|
|
|
remote {
|
|
maximum-payload-bytes = 10000000 bytes
|
|
enabled-transports = [ "akka.remote.netty.tcp" ]
|
|
netty.tcp {
|
|
hostname = WOKEN_VALIDATION_HOST # external (logical) hostname
|
|
port = WOKEN_VALIDATION_PORT # external (logical) port
|
|
|
|
bind-hostname = localhost # internal (bind) hostname
|
|
bind-port = WOKEN_VALIDATION_PORT # internal (bind) port
|
|
|
|
message-frame-size = 10000000b
|
|
send-buffer-size = 10000000b
|
|
receive-buffer-size = 10000000b
|
|
maximum-frame-size = 10000000b
|
|
}
|
|
}
|
|
|
|
cluster {
|
|
seed-nodes = [ "akka.tcp://woken@WOKEN_HOST:WOKEN_AKKA_PORT" ]
|
|
|
|
roles = [ "validation" ]
|
|
}
|
|
}
|