dependabot-preview[bot] on nuget
Bump System.Configuration.Confi… (compare)
dependabot-preview[bot] on nuget
Bump NUnit from 3.7.1 to 3.13.1… (compare)
Aaronontheweb on dev
Fix serialization verification … (compare)
var
would be much better than littering the code with comments.
} // ListPriorityQueue
Hey all, I am running into some weird issues with Docker and clustering. My cluster works perfectly fine outside of Docker, but while running in docker I get association errors after about 15 seconds of it being up. Before this Lighthouse shows both nodes as being welcomed to the cluster and moving to up. After that nothing happens out of the ordinary on the nodes, they just start throwing association errors:
**From Lighthouse**
[INFO][07/05/2018 16:29:59][Thread 0019][[akka://hub-system/system/cluster/core/daemon#107465231]] Leader can currently not perform its duties, reachability status: [Reachability([akka.tcp://hub-system@localhost:26100 -> UniqueAddress: (akka.tcp://hub-system@localhost:26800, 1690450065): Unreachable [Unreachable] (1)][akka.tcp://hub-system@localhost:26800 -> UniqueAddress: (akka.tcp://hub-system@localhost:26100, 1417053438): Unreachable [Unreachable] (1)])], member status: [$akka.tcp://hub-system@lighthouse:4053 $Up seen=$True, $akka.tcp://hub-system@localhost:26100 $Up seen=$False, $akka.tcp://hub-system@localhost:26800 $Up seen=$False]
**From a Node**
[Akka.Remote.EndpointWriter] [WARN] : AssociationError [akka.tcp://hub-system@localhost:26100] -> akka.tcp://hub-system@localhost:26800: Error [Association failed with akka.tcp://hub-system@localhost:26800] []
[remoting] [WARN] : Tried to associate with unreachable remote address [akka.tcp://hub-system@localhost:26800]. Address is now gated for 5000 ms, all messages to this address will be delivered to dead letters. Reason: [Association failed with akka.tcp://hub-system@localhost:26800] Caused by: [System.AggregateException: One or more errors occurred. (Connection refused tcp://hub-system@localhost:26800) ---> Akka.Remote.Transport.InvalidAssociationException: Connection refused tcp://hub-system@localhost:26800
Has anyone else run into this?
What's the proper way to grab an IActorRef for other Actors within the same system?
I'm initializing my ConsoleWriterActor immediately after starting up the Actor system, inside the Main method of my command line program
static void Main(string[] args) {
_actorSystem = ActorSystem.Create("FileWatcherActorSystem");
_consoleWriter = _actorSystem.ActorOf<ConsoleWriterActor>("consoleWriter");
And then I'm trying to grab that same actor two children deep, in the first Actor that needs to actually write anything.
_consoleWriter = Context.System.ActorSelection("consoleWriter").Anchor;
But when I try to Tell the consoleWriter anything, I get info about a dead letter...
I've also tried this using the absolute and relative paths to the consoleWriter.
Hello!
@bruno-alencar asked the following question above.
Can anyone help me?
I'm looking for a way to combine Rest API with Akka.net in a Cluster System. I would not connect the rest api receiver inside the cluster,
but sending messages for the cluster group.
I saw something about recepcionist, but when I tried to use inside the lighthouse system, It occurred exception because it was required that
know all messages types.
Is there any way to use these things together with best performance?
Would you have any suggestions to help us?
DistributedPubSub.Get(system)
initialized on startup