I am trying get my cluster up and running on my localhost with below
configuration (application.conf).
But I am getting follwing error.
Caused by: com.typesafe.config.ConfigException$Missing: No configuration
setting found for key 'enabled'
I am pretty sure it finds the application.conffile as I confirmed that any
changes to file will cause to take effect in next run.
I keep wondering where is this 'enabled' config that I am missing in
application.conf:
Master {
akka {
actor {
provider = "cluster"
}
remote {
maximum-payload-bytes = 30000000 bytes
log-remote-lifecycle-events = off
netty.tcp {
hostname = "127.0.0.1"
port = 0
message-frame-size = 30000000b
send-buffer-size = 30000000b
receive-buffer-size = 30000000b
maximum-frame-size = 30000000b
}
}
cluster {
roles = ["Master"]
seed-nodes = [
"akka.tcp://[email protected]:2556"]
# auto downing is NOT safe for production deployments.
# you may want to use it during development, read more about it in the
docs.
#
#auto-down-unreachable-after = 10s
}
}
}
Worker {
akka {
actor {
provider = "cluster"
}
remote {
maximum-payload-bytes = 30000000 bytes
log-remote-lifecycle-events = off
netty.tcp {
hostname = "127.0.0.1"
port = 0
message-frame-size = 30000000b
send-buffer-size = 30000000b
receive-buffer-size = 30000000b
maximum-frame-size = 30000000b
}
}
cluster {
roles = ["Worker"]
seed-nodes = [
"akka.tcp://[email protected]:2556"]
# auto downing is NOT safe for production deployments.
# you may want to use it during development, read more about it in the
docs.
#
# auto-down-unreachable-after = 10s
}
}
}
--
*****************************************************************************************************
** New discussion forum: https://discuss.akka.io/ replacing akka-user
google-group soon.
** This group will soon be put into read-only mode, and replaced by
discuss.akka.io
** More details: https://akka.io/blog/news/2018/03/13/discuss.akka.io-announced
*****************************************************************************************************
>>>>>>>>>>
>>>>>>>>>> Read the docs: http://akka.io/docs/
>>>>>>>>>> Check the FAQ:
>>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user
---
You received this message because you are subscribed to the Google Groups "Akka
User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.