That explains it. Serializer 9 is DistributedPubSubMessageSerializer Serialization errors are not transient (that is changed in new remoting Artery). See this ticket for discussion https://github.com/akka/akka/issues/20641
In your case you have not included the distribute-data jar in the classpath of these nodes, but messages are sent there anyway, since you have not used the role. Regards, Patrik On Fri, Oct 21, 2016 at 7:49 PM, Philippe N. <[email protected]> wrote: > Hi, > > Please see the logs attached. The logs are directly taken from Kibana so > the formatting is not great. > > On a side note we are running each of our component inside a docker > container on AWS. > > Thank you, > Philippe > > The main hint for us when this happens is when we see the following > exception: > > October 19th 2016, 17:59:58.243 - AssociationError > [akka.tcp://[email protected]:46696] <- > [akka.tcp://[email protected]:33744]: > Error [Cannot find serializer with id [9]. The most probable reason is that > the configuration entry akka.actor.serializers is not in synch between the > two systems.] [ > java.io.NotSerializableException: Cannot find serializer with id [9]. The > most probable reason is that the configuration entry akka.actor.serializers > is not in synch between the two systems. > at akka.serialization.Serialization$$anonfun$deserialize$2.apply( > Serialization.scala:116) > at scala.util.Try$.apply(Try.scala:192) > at akka.serialization.Serialization.deserialize(Serialization.scala:114) > at akka.remote.serialization.MessageContainerSerializer.fromBinary( > MessageContainerSerializer.scala:80) > at akka.serialization.Serialization$$anonfun$deserialize$2.apply( > Serialization.scala:124) > at scala.util.Try$.apply(Try.scala:192) > at akka.serialization.Serialization.deserialize(Serialization.scala:114) > at akka.remote.MessageSerializer$.deserialize(MessageSerializer.scala:24) > at akka.remote.DefaultMessageDispatcher.payload$lzycompute$1(Endpoint. > scala:60) > at akka.remote.DefaultMessageDispatcher.payload$1(Endpoint.scala:60) > at akka.remote.DefaultMessageDispatcher.dispatch(Endpoint.scala:78) > at akka.remote.EndpointReader$$anonfun$receive$2.applyOrElse( > Endpoint.scala:978) > at akka.actor.Actor$class.aroundReceive(Actor.scala:484) > at akka.remote.EndpointActor.aroundReceive(Endpoint.scala:447) > at akka.actor.ActorCell.receiveMessage(ActorCell.scala:526) > at akka.actor.ActorCell.invoke(ActorCell.scala:495) > at akka.dispatch.Mailbox.processMailbox(Mailbox.scala:257) > at akka.dispatch.Mailbox.run(Mailbox.scala:224) > at akka.dispatch.Mailbox.exec(Mailbox.scala:234) > at scala.concurrent.forkjoin.ForkJoinTask.doExec(ForkJoinTask.java:260) > at scala.concurrent.forkjoin.ForkJoinPool$WorkQueue. > runTask(ForkJoinPool.java:1339) > at scala.concurrent.forkjoin.ForkJoinPool.runWorker( > ForkJoinPool.java:1979) > at scala.concurrent.forkjoin.ForkJoinWorkerThread.run( > ForkJoinWorkerThread.java:107) > ] > > -- > >>>>>>>>>> Read the docs: http://akka.io/docs/ > >>>>>>>>>> Check the FAQ: http://doc.akka.io/docs/akka/ > current/additional/faq.html > >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user > --- > You received this message because you are subscribed to the Google Groups > "Akka User List" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at https://groups.google.com/group/akka-user. > For more options, visit https://groups.google.com/d/optout. > -- Patrik Nordwall Akka Tech Lead Lightbend <http://www.lightbend.com/> - Reactive apps on the JVM Twitter: @patriknw -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: >>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/d/optout.
