[akka-user] No matching constructor found

2017-06-07 Thread Arun kannan
class FileUploaderActor extends Actor{ override def receive: Receive = { case UploadFile(billerId, filename, subCategory, count, dueDate) => val fileOberverActor = ActorSystem().actorOf(Props[FileObserverActor]) val billerData = BillerFileUploadMetaData(billerId,filename,coun

Re: [akka-user] Questions about Cluster Aware Router

2017-06-07 Thread Mainak Ghosh
Hello Patrik and Johan, Thanks for your reply. The goal of my work is to test the performance of resizer block in a cluster aware situation where the routees are replicators who are trying to reconcile state among themselves based on application's consistency requirement. Can you please shed some

Re: [akka-user] Re: ActorSystem Uncaught fatal error shutting down ActorSystem !

2017-06-07 Thread Akka Team
I think this is because of https://github.com/akka/akka/issues/22324 It was marked as in progress but it seems there never was a PR submitted to fix that. -- Johan Akka Team On Wed, Jun 7, 2017 at 12:16 PM, wrote: > yes, *situation 1 *, the log has tell me the reason cause the error , > and i

Re: [akka-user] Re: ActorSystem Uncaught fatal error shutting down ActorSystem !

2017-06-07 Thread Johannes Rudolph
If you set `akka.jvm-exit-on-fatal-error = on` it should log stack traces in all cases to stderr. Johannes On Wed, Jun 7, 2017 at 12:16 PM, wrote: > yes, *situation 1 *, the log has tell me the reason cause the error , > and i know how to solve *situation 1 * . > but *situation 2,3,4 *, din't

Re: [akka-user] Questions about Cluster Aware Router

2017-06-07 Thread Patrik Nordwall
Note that the intention is to use the local `Replicator` so there is not much point in delegating the message with a router to remote node, unless you use nodes with different roles, such as "frontend" and "backend" and only run distributed data on the "backend" nodes and want to send the messages

Re: [akka-user] Questions about Cluster Aware Router

2017-06-07 Thread Akka Team
The error message says that you have not configured serialization for the message sample.distributeddata.ReplicatedCache.PutInCache which something tries to send between nodes. -- Johan Akka Team On Tue, May 30, 2017 at 10:37 PM, Mainak Ghosh wrote: > Hello, > > I am recently playing around wit

Re: [akka-user] Detecting connection failures - documentation appears to be incorrect

2017-06-07 Thread Akka Team
Seems like a regression to me. I have opened an issue to track it here: https://github.com/akka/akka-http/issues/1179 -- Johan Akka Team On Tue, May 2, 2017 at 8:33 PM, richard wrote: > This document >

Re: [akka-user] Akka-Http TrustStoreConfig Password?

2017-06-07 Thread Akka Team
I think that is probably an oversight. Please open a ticket over at the ssl-config project: https://github.com/typesafehub/ssl-config -- Johan Akka Team On Thu, Mar 23, 2017 at 3:57 PM, Aaron Broad wrote: > Hi all, > > I'm creating actors, where each Actor makes HTTP calls using a potentially >

Re: [akka-user] Re: ActorSystem Uncaught fatal error shutting down ActorSystem !

2017-06-07 Thread cietwwl
yes, *situation 1 *, the log has tell me the reason cause the error , and i know how to solve *situation 1 * . but *situation 2,3,4 *, din't tell me the reason ( the stack ), id dont hnow how solve this problem. 在 2017年6月7日星期三 UTC+8下午5:00:07,Johannes Rudolph写道: > > > The rest of the stack here

Re: [akka-user] Akka http compilation error due to _marshaller

2017-06-07 Thread Akka Team
You need to have a marshaller that can turn your ServerSentEvents into data to send over the wire. I'd recommend you to read up on the basics here: http://doc.akka.io/docs/akka-http/10.0.7/scala/http/common/marshalling.html#marshalling The SSE connector from Alpakka which you seem to be using dea

Re: [akka-user] Re: ActorSystem Uncaught fatal error shutting down ActorSystem !

2017-06-07 Thread Johannes Rudolph
The rest of the stack here will tell you where the problem comes from: On Wed, Jun 7, 2017 at 10:40 AM, wrote: > * situation 1 : ( has tell me the stack, and tell me *Shutdown finished * > )* > INFO | jvm 1| 2017/04/07 15:49:52 | java.lang.NoClassDefFoundError: > Lws/protos/EnumsProtos$Har

[akka-user] Re: ActorSystem Uncaught fatal error shutting down ActorSystem !

2017-06-07 Thread cietwwl
thanks for your help,below is part of my app config . akka { jvm-exit-on-fatal-error = off actor { provider = "akka.cluster.ClusterActorRefProvider" } remote { log-remote-lifecycle-events = off enabled-transports = ["akka.remote.netty.tcp"] netty.tcp { port = 20300