[akka-user] Resumable Projection

2016-11-14 Thread Richard Rodseth
Any good examples out there of resumable projections driving non-trivial streams? I'm guessing I will have to keep the stream 1-1 and pass the offset all the way downstream so I can save it at the end? -- >> Read the docs: http://akka.io/docs/ >> Check the FAQ:

Re: [akka-user] Idiomatic Fault Tolerance handling

2016-11-14 Thread Justin du coeur
There's no hard-and-fast rule, but I've generally found that *expected* exceptions should be handled in code, with normal message. Supervision is more about the assumption that *something* is going to go wrong in unexpected ways, so have a plan to respond to that. To your particular case, I

[akka-user] Idiomatic Fault Tolerance handling

2016-11-14 Thread 'Erik' via Akka User List
Hi guys is there a best-practice to determine when failures should be handled via fault tolerance / supervision versus with a normal message? *Example*: A user wants to *authenticate* with a username / password. I start a separate actor to handle the authentication (since it might fail). If

[akka-user] Optimal Size Exploring Resizer vs default resizer when to use which one?

2016-11-14 Thread Avico
Hi , Are there any thumb rules (or strict rules ) for akka configuration ? when should I use Optimal Size Exploring Resizer or the default resizer ? Thanks Avico -- >> Read the docs: http://akka.io/docs/ >> Check the FAQ: >>

Re: [akka-user] Re: Akka Agent for Scala 2.12

2016-11-14 Thread Patrik Nordwall
Thanks, let us know when scala-stm is available for 2.12 and we will publish akka-agent. /Patrik On Mon, Nov 14, 2016 at 9:13 AM, Ian de Beer wrote: > I see akka-agent fails due to the dependency on scala-stm 0.7. I have > updated the scala-stm 0.7 sbt to build with scala

[akka-user] Re: Akka Agent for Scala 2.12

2016-11-14 Thread Ian de Beer
I see akka-agent fails due to the dependency on scala-stm 0.7. I have updated the scala-stm 0.7 sbt to build with scala 2.12 and sent a a pull request to the maintainer. akka-agent builds after that (from my local ivy) On Sunday, 13 November 2016 17:05:48 UTC+2, Ian de Beer wrote: > > Hi >