[akka-user] Correct way to model a Redis subscriber as Akka actor(s)

2014-03-23 Thread Soumya Simanta
I'm crosspointing it here to get wider coverage. http://stackoverflow.com/questions/22569664/correct-way-to-model-a-subscriber-as-an-akka-actor I'm planning to reengineer an existing system to use Akka, Play and Websockets. My current system is based on Jetty and Websockets. I've a fast

Re: [akka-user] Correct way to model a Redis subscriber as Akka actor(s)

2014-03-23 Thread Patrik Nordwall
23 mar 2014 kl. 03:48 skrev Soumya Simanta soumya.sima...@gmail.com: I'm crosspointing it here to get wider coverage. http://stackoverflow.com/questions/22569664/correct-way-to-model-a-subscriber-as-an-akka-actor I'm planning to reengineer an existing system to use Akka, Play and

Re: [akka-user] Akka-camel sending email with attachment

2014-03-23 Thread Raymond Roestenburg
There is no support yet for attachments in akka-camel. There is already a ticket for it: https://www.assembla.com/spaces/akka/tickets/1214 I'm planning to start working on this (finally) this week. On Sat, Mar 22, 2014 at 9:28 PM, Zlatko Josic zlatko.jo...@gmail.comwrote: Hi, Is there any

[akka-user] Unpersist a processor

2014-03-23 Thread Heiko Seeberger
Hi, Is it possible to remove a processor from the journal, so its id can be reused as a fresh processor later? Thanks Heiko -- Read the docs: http://akka.io/docs/ Check the FAQ: http://doc.akka.io/docs/akka/current/additional/faq.html Search the archives:

Re: [akka-user] Unpersist a processor

2014-03-23 Thread Konrad Malawski
Hello Heiko, This can be achieved but at expense of having to delete all messages stored in the journal for a given processor id. This can be done from within the Processor by calling deleteMessages(toSequenceNr = Long.MaxValue, permanent: Boolean = …), where permanent deletion is optional -

Re: [akka-user] testing akka cluster on Blue Waters @ NCSA

2014-03-23 Thread Boris Capitanu
Hi Patrik, After further testing, I'm running into an issue I can't explain and I'm hoping you could shed some light on it... The simplest form that showcases the problem is the following setup: Two actors... a Sender and a Receiver, using RemoteActorRefProvider. The receiver is started on a

Re: [akka-user] testing akka cluster on Blue Waters @ NCSA

2014-03-23 Thread √iktor Ҡlang
Hi Boris, what serializer are you using for your messages? On Sun, Mar 23, 2014 at 11:39 PM, Boris Capitanu bor...@gmail.com wrote: Hi Patrik, After further testing, I'm running into an issue I can't explain and I'm hoping you could shed some light on it... The simplest form that

Re: [akka-user] testing akka cluster on Blue Waters @ NCSA

2014-03-23 Thread Boris Capitanu
Hello Viktor, I am using whatever default serializer Akka comes with. I have not configured anything special for that. -Boris -- Read the docs: http://akka.io/docs/ Check the FAQ: http://doc.akka.io/docs/akka/current/additional/faq.html Search the archives:

Re: [akka-user] testing akka cluster on Blue Waters @ NCSA

2014-03-23 Thread √iktor Ҡlang
Hello Boris, Then you are likely to benchmark the slowness of Java Serialization. To maximize performance, one needs to choose an appropriate serializer. On Mon, Mar 24, 2014 at 1:51 AM, Boris Capitanu bor...@gmail.com wrote: Hello Viktor, I am using whatever default serializer Akka comes