Use this tag when using the port of Akka to Microsoft .Net and specifically using clusters.
Questions tagged [akka.net-cluster]
79 questions
0
votes
1 answer
What protocol does Akka.NET use to communicate to nodes in the cluster?
For example, setting the remote{} configuration, does that also set the transport that is used internally for cluster communication, for example, the heartbeat messages.
I am not asking for any use case purpose I am asking so I better understand…

AJ Venturella
- 4,742
- 4
- 33
- 62
0
votes
1 answer
Unable to join Akka.NET cluster
I am having a problem joining and debugging joining to Akka.NET cluster. I am using version 1.3.8. My setup is following:
Lighthouse
Almost default code from github. Runs in console akka.hocon is following:
lighthouse {
actorsystem:…

Rok
- 451
- 3
- 21
0
votes
1 answer
akka.net cluster : how to send message from seed node to non-seed node
I am new to akka.net. I have 2 .net core2 console apps in a cluster , trying to send message from actor from one console app [ which is seed node ] to remote actor on another console app [which is non-seed node].
After starting/running both the…

Ajeet Kumar
- 687
- 6
- 12
0
votes
1 answer
Enumerating available actors in Akka.NET cluster
I have two actors, lets call them ActorA and ActorB. Both actors reside in their own separate process as a Topshelf based Windows Service.
Basically they look like this.
public class ActorA : ReceiveActor
{
public ActorA()
{
…

Maxim Gershkovich
- 45,951
- 44
- 147
- 243
0
votes
0 answers
How to invoke actors on different nodes in the cluster?
It seems this is where routers come into play according to the docs (https://getakka.net/articles/clustering/cluster-routing.html) and the various tutorials and code samples I have read. What seems to be omitted though is how to have NodeB invoke an…

AJ Venturella
- 4,742
- 4
- 33
- 62
0
votes
1 answer
Using Akka.Net Cluster utilities in a single ActorSystem
I'm trying to create a simulation of a network of multiple nodes to analyse network traffic.
The nodes themselves are going to be implemented using Akka.Net and should be able to use some of Akka.Net cluster capabilities. But the simulation itself…

mtaeschner
- 78
- 6
0
votes
1 answer
Akka.net / Cluster - How to "Heal" the topology when the leader dies?
I set up a basic test topology with Petabridge Lighthouse and two simple test actors that communicate with each other. This works well so far, but there is one problem: Lighthouse (or the underlying Akka.Cluster) makes one of my actors the leader,…

rabejens
- 7,594
- 11
- 56
- 104
0
votes
1 answer
How to use Akka.Net Cluster to have an entity on only one node and have messages arrive there from all nodes
I have a test actor system with customer actors. It keeps track of state of a customer. Event messages and query messages are sent to the Coordinator. If no Customer actor exists for the message, the Coordinator creates one. Works fine and looks…

Teun D
- 5,045
- 1
- 34
- 44
0
votes
1 answer
Using ConsistentHashingPool with ClusterRouterPool
We currently use a ConsistentHashingPool to provide sticky routes and throttling for a specific type of actor:
var hashRouter = new ConsistentHashingPool(_hashPoolSize).WithHashMapping(o =>
{
var command = o as…

Phil Sandler
- 27,544
- 21
- 86
- 147
0
votes
1 answer
Akka.Net ClusterClientReceptionist multinode crash
I'm trying to create a sample that create a cluster able to process an order and a client that send order.
To do so i use the ClusterClientReceptionist and ClusterClient to communicate between an client and a cluster network.
Cluster Node code…

Mickael Thumerel
- 516
- 4
- 14
0
votes
1 answer
akka.cluster and persistence delivering issue
In our cluster we have four nodes composite of:
2 seed nodes (backend)
1 worker
1 webapi on IIS
The cluster is joined, up and running; when i send a POST to the webapi,:
IIS join the cluster
the API recieve the a post and send the message with a…

Irvin Dominin
- 30,819
- 9
- 77
- 111
0
votes
1 answer
akka.cluster with double asp.net webapi on IIS
In out cluster we have five nodes composite of:
2 seed nodes (backend)
1 worker
2 webapi on IIS
The cluster is joined, up and running; but the second IIS when perform the first message to the cluster via router make all cluster unreachable and…

Irvin Dominin
- 30,819
- 9
- 77
- 111
0
votes
2 answers
Cluster sharding client not connecting with host
After recent investigation and a Stack over flow question I realise that the cluster sharding is a better option than a cluster-consistent-hash-router. But I am having trouble getting a 2 process cluster going.
One process is the Seed and the other…

S. Harrap
- 31
- 3
0
votes
2 answers
Akka.net actor selections or references
What is more efficient in Akka.net, talking to actor selections or interacting with an IActorRef being passed in a message?

oeaoaueaa
- 91
- 1
- 4
0
votes
1 answer
I receive errors with my F# implementation of SimpleClusterListener
I have observed the following error on my F# implementation of SimpleClusterListener:
[ERROR][3/20/2017 11:32:53 AM][Thread
0008][[akka://ClusterSystem/system/endpoin
…

Scott Nimrod
- 11,206
- 11
- 54
- 118