Questions tagged [akka.net]

A toolkit and runtime for building highly concurrent, distributed and fault tolerant event-driven applications on .NET & Mono.

Akka.NET is a port of the popular Java/Scala framework Akka to .NET.

It is a community driven port and is not affiliated with Typesafe who makes the original Java/Scala version.

References

674 questions
0
votes
1 answer

Akka.net carry on information within an actor hierarchy

I'm trying to pass on certain information about a hierarchy of actors so that's available when they receive messages. For example, I have one actor chain per user and I would like to make available the user information (name) across all children of…
Carlos Torrecillas
  • 4,965
  • 7
  • 38
  • 69
0
votes
0 answers

c# MongoDB lacked sufficient buffer space or because a quee was full

I create Akka console application (http://getakka.net/) with c# language using database mongoDB 3.x, Driver mongoDB 2.1.1.5, application connect to localhost mongoDB. throw error if too many request handle in 2hrs. "Unhandled Exception :…
0
votes
1 answer

Actor Pattern (Akka.Net) - Actors should be Constants OR Dynamic

Im confused between deciding what you use for my actors. Lets say iam building a Employee Management system in which there are 1.Multiple employees. 2.Each of one is supposed come to work every day. 3.Will mark his attendance and 4.Then will be…
Parv Sharma
  • 12,581
  • 4
  • 48
  • 80
0
votes
1 answer

Akka.net Passivation for DDD Aggregate Coordinator (repository)

I am using Akka.net and looking to implement a reactive equivalent of a 'DDD repository', from what I have seen from here http://qnalist.com/questions/5585484/ddd-eventsourcing-with-akka-persistence and…
morleyc
  • 2,169
  • 10
  • 48
  • 108
0
votes
1 answer

Replay events from Akka.net Persistence Journal

I'm implementing a CQRS/ES solution with Akka.Net and Akka.Net.Persistence with a SQL Server Journal. So far everything seems to work great with the default sql-server plugin. Last thing to verify was the ability to be able to reload/replay events…
schepersk
  • 31
  • 5
0
votes
1 answer

Architecture for DataPipline Best Practice

Given: Somekind of data import of an external source. The data can be read in chunks of defined size. For example 10 items at once. For Example Emails. Now each chunk has to pass some steps which transform the data, filters items out and so…
Boas Enkler
  • 12,264
  • 16
  • 69
  • 143
0
votes
0 answers

Compatibility of Akka.net in UAP

I would like to add Akka.net to my Windows 10 app, but get this when trying to install the nuget package for version 1.0.5 Akka 1.0.5 is not compatible with UAP,Version=v10.0. Some packages are not compatible with UAP,Version=v10.0. Is this support…
0
votes
1 answer

How to split Akka.NET remoting solution to two solutions?

I have made 2 Akka.NET solutions in the hope of testing out Remoting on a simple hello world example, however, I keep getting a Disassociated exception when the communication attempt is made. I have reason to believe that this is because of the…
Marin
  • 861
  • 1
  • 11
  • 27
0
votes
1 answer

Querying with the Akka.net ask pattern

I has an restful API which uses an odata request to query data front the database. I'm looking to start to swapping out domain logic with akka.net but I don't want to change the clients. Is there any way I can hook the ask pattern to use…
Andrew Davis
  • 460
  • 3
  • 17
0
votes
2 answers

How to solve the Newtonsoft.Json confilict in vs2015

I try to build the Akka.NET as build all ,but there is a error: CS0433: Configuration\Hocon\HoconObject.cs(47,10): The type 'JsonIgnoreAttribute' exists in both 'Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'…
huoxudong125
  • 1,966
  • 2
  • 26
  • 42
0
votes
2 answers

Akka.NET TestKit getting timeout error

I am testing with NUnit. What am I doing wrong? public class ZipActor : ReceiveActor { public ZipActor() { Receive(message => HandleZipMessage(message)); } private void HandleZipMessage(ZipMessage message) { …
0
votes
2 answers

Akka.net ActorSystem.AwaitTermination triggers DeathWatchNotification when no messages are sent

This message is written to the console in the simplest of Akka.net sample applications. [INFO][11/3/2015 7:21:06 PM][Thread 0008][akka://TestActorSystem/user] Message DeathWatchNotification from akka://TestActorSystem/user to …
Rodney S. Foley
  • 10,190
  • 12
  • 48
  • 66
0
votes
1 answer

Akka.net EchoServer Example deadletter when closing connection

I am getting the following deadletter when closing the connection with the Akka.Net TcpEchoService Example (http://getakka.net/docs/IO): [INFO][2015-09-04 09:13:51 AM][Thread 0013][akka://system/system/IO-TCP/selectors/$b/1] Message…
0
votes
1 answer

Why do I get a DeathWatchNotification of an undelivered message on shutdown?

Why do a get a DeathWatchNotification when running this console app: class Program { private static ActorSystem TestSystem; static void Main(string[] args) { TestSystem = ActorSystem.Create("TestSystem"); …
Kyle Reed
  • 71
  • 5
0
votes
0 answers

Invalid ActorSelection address

I set up two actors locally but with different actor systems. The objective here is to get actor A to send messages to actor B. However I just couldn't get that actor A to send a message(remoting) to actor B using ActorSelection like this: …
himekami
  • 1,419
  • 3
  • 13
  • 21
1 2 3
44
45