Re: [akka-user] AkkaPersistence in Cluster

2014-08-17 Thread Martin Jöhren
Thanks mate. That makes it clear. Have a nice weekend too. Martin On Aug 17, 2014 12:34 AM, Konrad Malawski kt...@typesafe.com wrote: Hello Martin, Yes, there needs to be exactly one actor which performs writes for a given persistenceId in the system (though using *ClusterSharding*

Re: [akka-user] Akka microkernel parameters

2014-08-17 Thread Shawn
Patrik, would you kindly elaborate on why akka-sbt-plugin was retired? sbt-native-packager is more general and powerful but I don't recall it having anything built-in to support Akka. So, prior to 2.3.x we had an relatively easy and documented way for a *newbie* to deploy an Akka app with the

[akka-user] Re: sbt dist with version 2.3.2

2014-08-17 Thread Shawn
I'd like to hear more on this as well. Searching the documentation for 2.3.5 doesn't even discuss deployment in any detail. I recognize that sbt-native-packager is cool, but for an later version of Akka to have *less documentation* on how to deploy than the previous version is rather sad,

Re: [akka-user] sbt dist with version 2.3.2

2014-08-17 Thread Konrad 'ktoso' Malawski
Hi guys, Have you seen the http://www.scala-sbt.org/sbt-native-packager/index.html sbt plugin? The sbt guys are pouring loads of effort into making apps easily packagable using that plugin. So instead of having a custom akka plugin we’d rather recommend that one. I created an issue for linking

Re: [akka-user] how to tune akka remoting performance

2014-08-17 Thread Sean Zhong
I have not tried to investigate why akka remote is slow, however I wrote a out of band netty transport(not in framework of akka remote) as simple as possible which 1) do batching send and receive 2) remove sender and receiver address overhead 3) simplified wire format. 4) try to avoid to

[akka-user] Camel Routes not working in OSGi

2014-08-17 Thread Gaurav Sharma
Hi, I'm trying to create a node that creates a UntypedConsumer that would read through a file location. I have everything configured in Karaf and not getting any error but still I'm not able to see my file being moved... The akka version i'm using is 2.3.4 and I have all of it loaded in my

[akka-user] Re: Camel Routes not working in OSGi

2014-08-17 Thread Gaurav Sharma
Fixed the problem - The solution to my problem was in this link that I stumbled upon - http://stackoverflow.com/questions/17415076/akka-camel-untypedconsumeractor-not-consuming-from-file-based-queue I was not calling the super.preStart in my code. thanks! On Sunday, August 17, 2014 7:58:17

Re: [akka-user] sbt dist with version 2.3.2

2014-08-17 Thread Shawn
Konrad, I don't see how simply linking to sbt-native-packager helps with the original question. As I mentioned, sbt-native-packager has nothing akka specific about it, whereas akka-sbt-plugin was akka-aware and *did* akka-specific things. What the documentation needs is an example built.sbt or

Re: [akka-user] sbt dist with version 2.3.2

2014-08-17 Thread Konrad Malawski
Sure, agreed – feel free to add this requirement to the issue and we'll get to it eventually (or someone of the community might give a helping hand here). On Sun, Aug 17, 2014 at 6:33 PM, Shawn j...@shawntalbert.com wrote: Konrad, I don't see how simply linking to sbt-native-packager helps

Re: [akka-user] What would it take to make actors in another language/platform

2014-08-17 Thread Glenn / devalias
It's been a while since i've looked into pi/etc, but from memory there were arduino shields that you could add onto it, giving you the best of the power of pi, with the better I/O support of arduino. Not sure how easy it is to get going/cost/etc, but might fit your solution? Alternately, I

[akka-user] Difference between ClusterReceptionistExtension(system).registerService and DistributedPubSubMediator.Put

2014-08-17 Thread JasonQ
Hello, Per my understanding after going through AKKA document, if I want to use mediator to send message to some actor in the cluster , I need use DistributedPubSubMediator.Put. When using ClusterClient.send, there's sample code using registerService in the doc instead of