Re: [akka-user] Re: actor making long http call

2014-07-22 Thread Greg Flanagan
Konrad, thanks for the reply and input. I agree that I should just test it out and see what / if anything gets clogged and use introspection tools to find out what is going on. Cheers, Greg On Monday, July 21, 2014 2:33:08 AM UTC-7, Konrad Malawski wrote: Hi guys, That's an interesting

Re: [akka-user] Re: actor making long http call

2014-07-21 Thread Konrad Malawski
Hi guys, That's an interesting area you work in Greg :-) You seem to already use work-pulling, so while small tweaks can be done that seams the way to go for me. And don't worry too much about the downloads until they actually clog something - you can look at the threads using visualvm to get a

[akka-user] Re: actor making long http call

2014-07-19 Thread Soumya Simanta
You can have a parent actor that spawns multiple child actors (in this case 3). Each of this child actor is responsible for send the requests to the external service and waiting for the result. Ideally I would recommend using Spray client to handle this. Can the server side of the service