Hi, I want to form a better understanding of how akka remote transport works. It's a very interessting tech. Sadly we have to run our applications on a Cloud Foundry PaaS which disallows node to node communication.
I looked into akka remote and found, that you could in theory, implement custom transport mechanisms. I started a simple Redis based implementation to understand the mechanics. https://github.com/cgrotz/akka-remote-redis/tree/master/src/main/java/de/cgrotz/akka/remote/transport/redis I added some examples from Akka remote to test with them. I am even able to receive the messages at the other end. But my handling of the message seems to be wrong/I'm unsure how to dispatch the message. [INFO] [04/14/2016 23:01:40.696] [CalculatorWorkerSystem-akka.actor.default-dispatcher-7] [akka://CalculatorWorkerSystem/system/transports/akkaprotocolmanager.redis0/akkaProtocol-redis%3A%2F%2FCalculatorWorkerSystem%40calculator%3A2552-1] Message [akka.remote.transport.AssociationHandle$InboundPayload] from Actor[akka://CalculatorWorkerSystem/deadLetters] to Actor[akka://CalculatorWorkerSystem/system/transports/akkaprotocolmanager.redis0/akkaProtocol-redis%3A%2F%2FCalculatorWorkerSystem%40calculator%3A2552-1#-1413392120] was not delivered. [1] dead letters encountered. This logging can be turned off or adjusted with configuration settings 'akka.log-dead-letters' and 'akka.log-dead-letters-during-shutdown'. Does anybody have an example which I could lookup or has a hint, what I'm doing wrong? Thanks, Christoph -- >>>>>>>>>> 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.
