Hi Taylor,

On 6 March 2014 at 20:42:44, Taylor Leese ([email protected]) wrote:

I believe the answer is no, but is there any way to configure the supervisor 
strategy of routers defined in the Akka config? If not, is there a reason or 
does it just not exist yet? If it's the latter where's the proper place to file 
a feature request?


You are right in that you can’t configure the supervisor strategy of a router 
in the deployment section.
To file a feature request, follow the instructions under issue tracking in the 
documentation.

B/


I'd like to be able to do something like:

/user-read-router {
  router = round-robin
  resizer {
    lower-bound = ${settings.parallelism-min}
    upper-bound = ${settings.parallelism-max}
  }
  supervisor = "MySupervisor"
}

Currently, I'm doing this:

Props(new MyActor)
  .withRouter(FromConfig().withSupervisorStrategy(routerStrategy))
  .withDispatcher(dispatcherName)

Thanks,
Taylor
--
>>>>>>>>>> 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/groups/opt_out.
-- 
Björn Antonsson
Typesafe – Reactive Apps on the JVM
twitter: @bantonsson

-- 
>>>>>>>>>>      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.

Reply via email to