Re: [akka-user] Handling boundary data in chunked requests

2015-01-22 Thread Yogesh
d correctly then you’ll want to use akka-http which has > support for handling multipart/formdata. This has the downside that > akka-http is still being developed, but you can try out milestone 1.0-M2 to > see if that works for you. > > Regards, > > Roland > > 21 jan

[akka-user] Handling boundary data in chunked requests

2015-01-20 Thread Yogesh Pandit
ntent-Type: text/csv --WebKitFormBoundary5mkhOpb3GjmIWL7a-- Thanks you, -Yogesh -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: >>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/

[akka-user] Docs/samples on large file (10GB) uploads using akka-stream

2015-01-10 Thread Yogesh Pandit
Hello, I am writing a web-service to upload file/s as large as 10GB. Just looking for some pointers on how to go about it using akka-stream (haven't used it every before) Thanks, -Yogesh -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>

[akka-user] Re: Application throughput decreasing with time

2014-12-09 Thread Yogesh
Soumya, On Tuesday, December 9, 2014 11:18:42 PM UTC-5, Soumya Simanta wrote: > > Yogesh, > > Are the client and server running on the same physical node ? > [YA] Even if I run client and server on different machines I am getting similar result > How long does it take

[akka-user] Re: Application throughput decreasing with time

2014-12-09 Thread Yogesh
Soumya, On Tuesday, December 9, 2014 11:18:42 PM UTC-5, Soumya Simanta wrote: > > Yogesh, > > Are the client and server running on the same physical node ? > [YA] Even if I run client and server on different machines I am getting similar result How long does it take for thin

[akka-user] Re: Application throughput decreasing with time

2014-12-09 Thread Yogesh
(user actors) sends less number of messages and server processes even lesser of what client is sending. Regards, Yogesh On Tuesday, December 9, 2014 10:40:08 PM UTC-5, Soumya Simanta wrote: > > What kind of work is done by your server actors ? I mean what's in the > receive method

[akka-user] Application throughput decreasing with time

2014-12-09 Thread Yogesh
Hi, I am writing a client-server application using akka and scala which works as follows: On client machine I create 10 user actors, each with its own scheduler All schedulers sends messages to server after a specified duration continuously On Server machine I have a round robin router of

Re: [akka-user] Akka actors not processing messages after a while

2014-11-27 Thread Yogesh
Hi Martynas, I was using mutable hashmap which multiple actors were trying to access. I think that was creating a deadlock. So after changing it to ConcurrentTrieMap the problem was resolved. Thanks for your input. Regards, Yogesh On Wednesday, November 26, 2014 5:16:03 AM UTC-5, Martynas

[akka-user] Akka actors not processing messages after a while

2014-11-25 Thread Yogesh
continuously sending the messages. Are the messages getting lost in between client and server? Thanks for your help. Regards, Yogesh -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: >>

[akka-user] Re: Trying to figure out why all threads for a dispatcher will block at the same time consistently

2014-11-25 Thread Yogesh
Hi Soumya, I am facing a similar issue with my application. Could you please let me know the tool you used to monitor the state of the running threads in your application. I would like to confirm if this exactly what is happening with my application also. Thanks, Yogesh On Tuesday, November

[akka-user] Actor constructor lazy initialization?

2014-08-23 Thread Yogesh Shetty
I have recently ported some of my code to leverage akka framework and I randomly come across errors where I think actor constructor is not initialized completed. I have this ActorFactory class which spins of supervisor actor, and in each supervisor actor constructor i have code to spawn child