Questions tagged [akka.net-networking]

11 questions
6
votes
1 answer

Is there a way to get all instantiated actors currently available on a given node in Akka.NET

I have the following code in my application which creates an instance of an Akka.NET actor in my cluster as such: _actorSystem = ActorSystem.Create("mycluster"); _actoraActor = this._actorSystem.ActorOf(); Note that I deliberately omit the…
Maxim Gershkovich
  • 45,951
  • 44
  • 147
  • 243
3
votes
1 answer

Akka.Remote config failures

I've been trying to create an actor system that uses Akka.Remote with akka.net 1.3... However, I can't create an instance of the system due to the following exception: TypeLoadException: Cannot instantiate transport…
Marin
  • 861
  • 1
  • 11
  • 27
1
vote
1 answer

Simple TCP server with Akka.NET

Hi I'm learning to use Akka.net and what I want to do is, create a simple TCP server that will periodically send data to the tcp connection. (which will then be picked up by a processingjs client and display in the output) Not sure what I'm missing…
0
votes
0 answers

How to fix System.ArgumentNullException when deploying Remote actor on Local Host

I am new to Akka.Net and tried to follow a simple procedure from "Remotely Deploying Actors" tutorial on the getakka.net site. I however get a System.ArgumentNullException which says 'Value cannot be null. (Parameter 'typeName')'. Here's my server…
Bolu Morawo
  • 189
  • 1
  • 1
  • 6
0
votes
0 answers

In Akka.Net can we derive TcpStream actor from Tcp actor?

In Akka.Net can we derive TcpStream actor from Tcp actor ? I created a Tcp actor using Context.System.Tcp().Tell(new IoTcp.Connect(endPoint)); Then I register my self as the handler Sender.Tell(new IoTcp.Register(Self, true, true)); The endpoint…
Alex David
  • 585
  • 1
  • 11
  • 32
0
votes
0 answers

Akka.net Context.System.EventStream in aws lambda

I'm working on a solution hosting asp.net core application in AWS lambda. This allows each team member to own an environment during development only. It will run in docker for integration and go live. Corporate knowledge means it has to run this…
reckface
  • 5,678
  • 4
  • 36
  • 62
0
votes
1 answer

Debugging Akka.NET remote connections (Cant connect - Failed to bind)

Using the example Chat Server/Client project available as part of the Akka.NET source code I have attempted to modify it such that it would successfully work over two computers on my network. I have two systems that are connected via a router like…
Maxim Gershkovich
  • 45,951
  • 44
  • 147
  • 243
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…
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

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
1 answer

Round Robin Group over two different hosts is not working

I am trying to split load over more than one akka actor system. Unfortunately the round robin group in not forwarding messages to remote workers. I can see that actor is activated, but there is no work done. the full code is on github Is there any…
profesor79
  • 9,213
  • 3
  • 31
  • 52