Questions tagged [akka-remoting]

Akka is a library for building concurrent scalable applications using the Actor Model. Akka remoting is designed for communication in a peer-to-peer fashion. The remoting capabilities of Akka 2.0 are really powerful.

Akka is a toolkit and runtime for building highly concurrent, distributed, and resilient message-driven applications on the JVM. It helps in building concurrent scalable applications using the Actor Model. Akka remoting is designed for communication in a peer-to-peer fashion. The remoting capabilities of Akka 2.0 are really powerful.
Remote actor is an actor which listens on some given port. The remoting contains functionality not only to lookup a remote actor and send messages to it but also to deploy actors on remote nodes. These two types of interaction are referred to as: Lookup, Creation
It is most commonly used in distributed applications that run across the network.

63 questions
0
votes
0 answers

Create akka actor on remote node without using router

I am working on one application which demands for akka clustering. I am able to create akka cluster and create actors and pass them messages. Following is my configuration: relay.system { akka { loglevel = "INFO" actor { …
Shailesh
  • 358
  • 2
  • 13
-1
votes
1 answer

Akka Cluster basic clarifications about creating actors dynamically

In Akka remote we crate actor by defining in actor system configuration,or programmatically saying the other actor system location. We send messages to the actor by the references we created or we can get a actor reference by getting…
-1
votes
1 answer

Akka-http vs Akka-Remoting

I am new to the Akka world and want to learn what is the difference between Akka-Remoting and Akka-HTTP. Is one better than the other in terms of security or maintenance? What are the things that should be considered when implementing one of them?
1 2 3 4
5