[akka-user] Akka Distributed Data Sample thowing OversizedPayloadException

2017-05-22 Thread Mainak Ghosh
Hello, I am trying to run the akka distributed data sample in Java using Akka 2.5. I am getting the following error: [JVM-3] [INFO] [05/22/2017 16:31:12.845] [ScalaTest-main] [akka.remote.Remoting] Starting remoting [JVM-1] [INFO] [05/22/2017 16:31:12.861] [ScalaTest-main]

Re: [akka-user] Re: Actor per process or service ?

2017-05-22 Thread Konrad Malawski
I see, well then it's just about how constrained you want the parallelism basically which starts to sound like you'd know more about since the actual operations they will do are very tied to what your app actually does hmm -- Konrad `ktoso` Malawski Akka @ Lightbend

[akka-user] Re: Actor per process or service ?

2017-05-22 Thread gervais.b
The beginning of the track will be done by a post-commit hook form our Git server. However the build and static analysis don't have webhooks so I have to poll them. On Monday, 22 May 2017 16:11:26 UTC+2, gervais.b wrote: > > Hi there, > > I'm going to write a "*commit tracker*" that will follow

Re: [akka-user] Actor per process or service ?

2017-05-22 Thread Konrad Malawski
I did a similar thing in the past, however we were able to not poll, by using https://git-scm.com/book/gr/v2/Customizing-Git-Git-Hooks on the server - sure you can't do that? If it's a hosted repo perhaps they provide other hooks? In general though - the question is how many processes doing

[akka-user] Actor per process or service ?

2017-05-22 Thread gervais.b
Hi there, I'm going to write a "*commit tracker*" that will follow and a source code commit from our Git server trough the build until the static analysis. The goal is to display and update a message like "Commit xyz received, (delay) and build succesfully, (delay) and incerase quality of 1%".

[akka-user] Re: How to map unstructured Json to a case class in Akka-Http

2017-05-22 Thread johannes . rudolph
Hi, try this case class structure instead: case class Customer(name: String,jsonData: JsValue) Johannes On Saturday, May 13, 2017 at 10:47:52 AM UTC+2, vishal...@exadatum.com wrote: > > > I am trying to create the REST service using akka Http and slick . I am > trying to persist the Raw

[akka-user] Re: has anyone attempted a multi-source authentication?

2017-05-22 Thread johannes . rudolph
Hi Andrew, here's a general idea at how it could work: If you model each authentication method as a `Directive1[Session]` that returns the session (or user, principal, etc.) for that authentication method and all of the directive return the a value of the same type or a type with a common

Re: [akka-user] Akka Cluster Failing for Huge Data File

2017-05-22 Thread Kunal Ghosh
Hi Patrik , Thanks for all your help. I found a solution for the issue i was facing last time. akka.actor.serialize-messages was 'on' i switched it to 'off'. Now while running program gets stuck after processing 1 - 15000 rows it never throw any error or exception. the processing is done

[akka-user] Re: akka-http ssl setup documentation / examples isn't very clear. Is config-based

2017-05-22 Thread johannes . rudolph
Hi Andrew, your observation is correct. Server side TLS configuration is only possible through code right now. We have tickets to track improving documentation and maybe adding the configuration based approach https://github.com/akka/akka-http/issues/55