[akka-user] Application.conf not being used under test

2015-01-04 Thread manwood
I have a small Akka application with application.conf files under both test and main directories. Initially, when running the tests, the application.conf file under the test directory was being used (as desired). However, whilst building out the application, adding dependencies etc, at some poi

[akka-user] Akka Cluster Project - Monolithic JAR or JARs per "service"?

2015-01-04 Thread Kane Rogers
Hi, hAkkers! We're in the process of moving our distributed Akka service from the dark ages of remoting and manual management of IPs (shudder) into the wonderful new world of Akka Cluster. Currently, our project is split up something like this: - spray-frontend - worker-1 - worker-2

[akka-user] Customizing failure-zones in distributed publish subscribe

2015-01-04 Thread Muthukumaran Kothandaraman
I have following requirements for designing a clusterwide messaging system 1. There can be many to many relationship between topics and subscribers. ie. one module (OSGi) in each cluster node can subscribe to more than one topic and each topic can be subscribed to by more than one module. So, I

[akka-user] /me still away tomorrow

2015-01-04 Thread Konrad Malawski
Hey guys, Hope you had a great break :-) Just a quick note in case you're not sure if/when I'm around. I'm back in PL already but off work until the 6th (as the 6th is a public holiday in poland ). I'm arranging some family stuffs over these days, bu

Re: [akka-user] akka-http HttpService equivalent

2015-01-04 Thread Konrad 'ktoso' Malawski
Hi Jacek, As the name implies, japi is the java api, you’re not meant to be using those if you’re using Scala - just use the normal scala APIs. The Scala Routing DSL cannot be reused directly by Java since it’s using all kinds of Scala types which simlpy do not look as nice in Java. Akka HTTP (an

Re: [akka-user] akka-http HttpService equivalent

2015-01-04 Thread Jacek Laskowski
Hi, It appears to be "first step of Java routing API" [1] with just a single commit (perhaps squashed earlier to make it look so). What's Java routing API? How is this different from Scala's one if any? [1] https://github.com/akka/akka/commits/release-2.3-dev/akka-http-java/src/main/scala/akka

Re: [akka-user] akka-http HttpService equivalent

2015-01-04 Thread Jacek Laskowski
Hi, Thanks for the hint, Björn. I've been pursuing the idea and used japi.HttpApp, but ended up with the following compilation error: [error] found : akka.http.server.scala.Route [error] (which expands to) akka.http.server.RequestContext => scala. concurrent.Future[akka.http.server.Route

[akka-user] Reproducing akka.remote.OversizedPayloadException locally

2015-01-04 Thread Maksym Besida
A few days ago I stumbled across *akka.remote.OversizedPayloadException*. Successfully I found the solution in this user list: the problem was in *akka.remote.netty.tcp.maximum-frame-size* config parameter which is set to128000 bytes by default. My question is how can I reproduce this exception