Not sure akka does not provide any notification service. There are
some events which are generated when cluster nodes leave each other
and you can subscribe these events to cluster thus you can see in
logs.
you can write own notification code like email in MemberRemoved event
val Cluster = Cluster(context.system)
Cluster.subscribe(self, classOf[MemberRemoved])
case MemberRemoved(member, _) =>
logger.info("Member is Removed: {}", member.address)
// email notification service
On Thu, Sep 11, 2014 at 12:19 AM, Eugene Dzhurinsky <[email protected]> wrote:
> On Thu, Sep 11, 2014 at 12:13:58AM +0530, Piyush Mishra wrote:
>> You can tune the failure detector frequencies.
>
> Thanks, but I need to get some notification on the failed node that it has
> tried to join the cluster - but was rejected. So I could easily restart the
> whole service or just the actor system.
>
> --
> Eugene N Dzhurinsky
--
>>>>>>>>>> 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 http://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.