Use this tag when using the port of Akka to Microsoft .Net and specifically using clusters.
Questions tagged [akka.net-cluster]
79 questions
1
vote
1 answer
Track messages sent to nodes in a Cluster
If there are n-nodes in a Cluster and I am routing some messages to them, is there a way to track which message has been sent to which node from within the Cluster Router(RoundRobinPool or any other if available).
i.e After sending all the messages,…

Unknown
- 531
- 5
- 18
1
vote
1 answer
Node sometimes doesn't join the Akka.Net Cluster after IIS recycle AppPool
We created an Akka Cluster infrastructure for Sms, Email and Push notifications. 3 different kind of nodes are exist in the system, which are client, sender and lighthouse. Client role is being used by Web application and API application(Web and API…

Deniz İrgin
- 597
- 3
- 15
1
vote
1 answer
Is there an event in Akka.net cluster for when my node has joined a cluster?
In my Akka.Net cluster I have several nodes. There is communication that I'd like to initiate when I've successfully joined the cluster. I can see in the log that I'm welcome to the cluster:
Welcome from [akka.tcp://Animatroller@hakan-el:8899]
but…

Haukman
- 3,726
- 2
- 21
- 33
1
vote
1 answer
Akka.NET - Cluster and ActorSelection path
I have an akka.net cluster and I want to send a message to actors that are both local and remote, and that all have the path "/user/foobar" (at least locally). Should I use ActorSelection, and what should the path look like in order to target both…

Jonas Jakobsson
- 141
- 10
1
vote
1 answer
Sending Akka.net cluster gossip to Azure worker role console
I'm developing an Azure cloud service including multiple worker roles that form an akka.net cluster. How do I accomplish getting the cluster gossip and other messages end up in the compute emulator console windows?

Landrew
- 125
- 11
1
vote
1 answer
Akka.net cluster round-robin-group configuration. Not routing messages
I am trying to configure a cluster group router and wanted to sanity check my assumptions on "how" this works.
I have 2 separate nodes in a cluster these have the following roles "mainservice" and "secondservice". Inside the "mainservice" I want to…

d--g
- 13
- 2
1
vote
1 answer
Replying an Ask in a clustered routee
I am creating a project that at this moment has an Actor (User) that calls to another actor (Concert) through a consistent-hash-group router. All works fine but my problem is that from the concert actor I can not answer the Ask message. Somehow the…

Pablo Castilla
- 2,723
- 2
- 28
- 33
0
votes
0 answers
Akka.net - remember entities issue
Getting the following errors on our Akka.net application, anyone got any idea what causes these
"Bet": Failed to load initial entity ids from remember entities store within [00:00:05],
stopping shard for backoff and restart
Message [RecoveryTick]…

Derek Goodwin
- 1
- 1
0
votes
1 answer
Can an Akka.net node hosted within a container participate in a cluster outside of the container host?
I'm fairly new to Akka.net and I'm a total noob when it comes to containers so please forgive me if this is too simple (but I kind of hope it is).
I'm trying to build a web app cluster using Azure app services. I want the lighthouse to be hosted in…

yozepi
- 362
- 3
- 9
0
votes
1 answer
Cannot add Actor in Cluster as Singleton Akka.NET
I have an interesting issue with AKKA.NET making 'SampleActor' to singleton in 'CustomCluster'. No exceptions or warnings are thrown.
During debugging on I am unable to get SampleActor initialized as cluster singleton, even in unit tests, I am able…

sura98
- 1
0
votes
0 answers
Akka.Net Cluster Nodes goes down intermittently
We are using akka.net in our project for distributed worker service. We are using Blazor application as UI (actor system with API role) and dot net core worker service multiple instances (same actor system with WLM role). Everything works good…
0
votes
1 answer
"max allowed size 128000 bytes" reached when there are a lot of publisher/subscribers
Im using distributed pub/sub in an Akka.net cluster and I've begun seeing this error when pub/sub grows to approx. 1000 subscribers and 3000 publishers.
max allowed size 128000 bytes, actual size of encoded …

yozepi
- 362
- 3
- 9
0
votes
1 answer
Akka.net: Child per entity pattern in a cluster
We are developing a project to process finantial transactions. We would like to have a "distributed memory" accross three machines where these transactions live. All machines would have their own copy of a transaction as a transaction update request…

tesgu
- 125
- 1
- 1
- 4
0
votes
1 answer
Not able to create node level local actors in Akka.Net cluster
We are trying to create couple of node level actors [pool routers] for app level administration, local routing and throttling purposes.
Node specific role is mentioned as target role for these actors for STRICTLY local routing.
Below is the sample…

Dhivya DD
- 73
- 7
0
votes
1 answer
Akka.NET: Restrict child actor creation in akka.net cluster to a single machine
We have a particular scenario in our application - All the child actors in this application deals with huge volume of data (Around 50 - 200 MB).
Due to this, we have decided to create the child actors in the same machine (worker process) in which…

Dhivya DD
- 73
- 7