[akka-user] Are messages ordered in activator hello akka java8 tutorial?

2016-09-02 Thread queshaw
I'm early in learning Akka. The hello-akka-java8 tutorial has greeter.tell from no actor, followed by inbox.send: final ActorRef greeter = system.actorOf(Props.create(Greeter.class), "greeter"); final Inbox inbox = Inbox.create(system); greeter.tell(new WhoToGreet("akka"), ActorRef.noSender());

[akka-user] Re: Spray to Akka HTTP

2016-09-02 Thread Richard Rodseth
I've yet to test this out, but it compiles. Hope I'm on the right track. trait APIStatusMarshallers { implicit def errorMarshaller[T](implicit translator: ErrorTranslator[T], statusCodeMapper: ErrorToStatusCodeMapper, m:

[akka-user] Sharing my attempt at contributing to Akka

2016-09-02 Thread Omer van Kloeten
Hi all, First off, let me thank everyone here for their time and energy spent making Akka the amazing toolset it is today. Following the Akka developer survey I answered today, I realized I wanted to contribute to Akka and decided to just do it. Since I'm too much of a novice in the details

[akka-user] Re: Spray to Akka HTTP

2016-09-02 Thread Richard Rodseth
I'm guessing the errorMarshaller and statusMarshaller shown (which use compose) need to be recast according to http://doc.akka.io/docs/akka/2.4.9/scala/http/common/marshalling.html#Deriving_Marshallers But that paragraph of documentation could really use an example. On Thu, Sep 1, 2016 at 3:19

[akka-user] Re: Akka and Streams Concurrency Fundamentals

2016-09-02 Thread Dagny T
Yes, well; that link is rather generic, no? ;0) What I (and likely the 19 other Viewers of this post) are looking for is baseline-thorough coverage of test-cases to be aware of when testing Akka Actor and Streams operations. I'm a newbie, and I learn best through running idiomatic code

Re: [akka-user] Akka and Streams Concurrency Fundamentals

2016-09-02 Thread Patrik Nordwall
Isn't it covered in the documentation? http://akka.io/docs/ /Patrik tors 1 sep. 2016 kl. 23:43 skrev Dagny T : > > I'd like to find reliable and current information for learning this using > v2.4.9. > > I've posted a reply to someone else's related message; but wanted to

Re: [akka-user] Nodes becomes unreachable due to serialization-issues with one single message

2016-09-02 Thread Patrik Nordwall
Thanks for reporting., Fixed, will be in upcoming 2.4.10 /Patrik tors 1 sep. 2016 kl. 20:58 skrev Moax76 : > Issue created: https://github.com/akka/akka/issues/21343 > > But I'll modify my serializer anyway. > > Thanks. > > -Morten > > > On Thursday, September 1, 2016

Re: [akka-user] Method to block Migration of Cluster Sharded Actors in a Certain State

2016-09-02 Thread Patrik Nordwall
The stop signal is that the actor is terminated, i.e. you called context.stop, so stashing is fine fre 2 sep. 2016 kl. 16:46 skrev kraythe : > So if I have an actor that while on a specific state simply stashes any > message that it doesn't handle, will it ignore the stop

[akka-user] ANNOUNCE: Akka Community Survey 2016

2016-09-02 Thread Konrad Malawski
Dear hakkers, we did a lot this year already. We merged Akka Streams and HTTP into the 2.4 series of Akka, pushed 16 releases of Akka itself, and maintained the various Persistence plugins. We also reached out to create even more community collaboration with projects related to Kafka, and now are

[akka-user] Re: Akka http vs Spray performance

2016-09-02 Thread Владимир Морозов
I perform some test for 2.4.9 release > wrk -t30 -c64 http://127.0.0.1:9000/dictionaries/hello/suggestions?ngr=hond Running 10s test @ http://127.0.0.1:9000/dictionaries/hello/suggestions?ngr=hond 30 threads and 64 connections Thread Stats Avg Stdev Max +/- Stdev Latency

[akka-user] Re: Akka http vs Spray performance

2016-09-02 Thread Konrad 'ktoso' Malawski
Figured I should link to the 2.4.9 annoucement from this old thread (as it shows up high in google). In 2.4.9 we did quite some improvements, annoucement here: http://akka.io/news/2016/08/19/akka-2.4.9-released.html Highlights of the