What is the preferred way of using the Backoff Supervisor with Shard Passivation? I have Passivation implemented using a simple 'stop message as shown below
// Passivation Handlers case ReceiveTimeout => context.parent ! Passivate(stopMessage = 'stop) case 'stop => context.stop(self) But since I'm having issues on application startup with Cassandra getting overwhelmed on the actor journal load I want to add in a BackoffSupervisor to reduce the stress on Cassandra if errors start occurring. Is there a way to keep the passivation code above or is the only approach to use the PoisonPull approach mentioned in issue #19027? We're currently using Akka 2.4.11. -Richard -- >>>>>>>>>> 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.
