Questions tagged [akka.net-cluster]

Use this tag when using the port of Akka to Microsoft .Net and specifically using clusters.

References

Akka .Net

79 questions
1
vote
1 answer

Akka.net Made singleton actor skip LightHouse node in cluster?

I have an akka.net cluster with some singletons for administration and cron tasks. Currently the processing nodes are also the seeds ones. I'd like to create a simple lighthouse that have only the role to be a connection spot for the cluster. This…
Mickael Thumerel
  • 516
  • 4
  • 14
1
vote
1 answer

How to setup a Akka.NET cluster when I do not really need persistence?

I have a fairly simple Akka.NET system that tracks in-memory state, but contains only derived data. So any actor can on startup load its up-to-date state from a backend database and then start receiving messages and keep their state from there. So I…
Teun D
  • 5,045
  • 1
  • 34
  • 44
1
vote
1 answer

Complete HOCON configuration for Akka.Net

I am looking for all the available parameters and their allowed values with meaning which I can configure in HOCON configuration with Akk.Net. I have got some links but they do not have the list of all the available paraments or they aren't…
1
vote
2 answers

Node in cluster stops listening for connections

We have two nodes with the same code, that are using akka.net in a cluster and send messages using remote between them. Akka.Net version is 1.2.0 and we are using dot-netty for transport. This is the relevant configuration section: actor { …
Guillermo Vasconcelos
  • 1,701
  • 2
  • 17
  • 30
1
vote
0 answers

Subscriber management for Distributed Pubsub in Akka.net

Consider a node in a cluster who has many internal actors. Many of the actors are using Distributed Pub/Sub to subscribe to a common topic. An actor in another node in the cluster is busy posting messages onto the common topic. Will the pub/sub…
S. Harrap
  • 31
  • 3
1
vote
1 answer

How do I get an updated state of an entire Akka.net cluster?

I created a monitoring node in my akka.net cluster and I'm using cluster.SendCurrentClusterState(Self) but not all nodes are visible immediately, also sometimes a node leaves the cluster and while the log says the node was removed correctly, the…
Natan
  • 4,686
  • 5
  • 30
  • 48
1
vote
1 answer

Akka.net Sender On non-actor context

My actor system is initialized on console application. I configure one actor call BankAccrountActor which is responsible for handle bank account transaction like credit/debit/account balance of an Account. On credit/debit command the actor will…
Amal Shalika
  • 1,077
  • 1
  • 13
  • 22
1
vote
1 answer

How to implement Props.Create using F#

I attempted to port a working C# sample to an OOP version of F#. Remote actors (on a separate process) are not receiving messages. I receive the following error: [ERROR][3/23/2017 4:39:10 PM][Thread…
Scott Nimrod
  • 11,206
  • 11
  • 54
  • 118
1
vote
1 answer

Is there an example of sending messages between actors using "Akkling.Cluster.Sharding"?

This may be a duplicate. Thus, I have made some progress. However, I find it challenging to interpret the reference documentation from the C# API to the desired Akka.FSharp API. Is there an example of sending messages between actors using…
Scott Nimrod
  • 11,206
  • 11
  • 54
  • 118
1
vote
1 answer

Akka.net cluster sharding: Unable to register coordinator

I am trying to setup akka.net cluster sharding by creating a simple project. Project layout: Actors - class library that defines one actor and message. Is reference by other projects Inbound - Starts ShardedRegion and is the only node participating…
1
vote
1 answer

Is ReceiveTimeout applied to stashed messages

Let's say I have abstract actor with 2 states Ready and Busy. In Busy state I want to receive only particular type of messages e.g PauseJob, CancelJob, all other messages like StartNewJob get stashed. Question: if I set SetReceiveTimeout() in…
Maxim Podkolzin
  • 378
  • 2
  • 10
1
vote
0 answers

Akka.net how to prevent parent from restarting child actor

That's probably more a design rather than implementation question. Let's say I have the folowing actor hierarchy, which forms an Akka cluster ApiActor [API Role] | MasterCoordinator …
Maxim Podkolzin
  • 378
  • 2
  • 10
1
vote
1 answer

Akka.Net: What is the best method for communicating between two or more independent clusters?

The Akka.Net cluster requires a single ActorSystem but if what if I have several ActorSystems (Distributed Apps) that need to coordinate synchronously or asynchronously? How to handle shared message libraries? Perhaps it would be best not to share…
alturium
  • 548
  • 5
  • 15
1
vote
0 answers

Fault tolerant redundancy

This might result in biased and opinion based answers, if so I'll close the question but... I have a rather basic requirement of improving our up-time and speed. As part of this I'm looking at the two main competing approaches, traditional pub/sub…
cdmdotnet
  • 1,663
  • 3
  • 17
  • 22
1
vote
0 answers

Akka.Net why are my pool actors not scaling up or down based on load

I am trying to build an actor system that can scale up/down based on the workload using the following configuration. akka { actor { serializers { wire = "Akka.Serialization.WireSerializer, Akka.Serialization.Wire" …
Kiran
  • 2,997
  • 6
  • 31
  • 62