dependabot-preview[bot] on dev
Bump Google.Protobuf from 3.15.… (compare)
dependabot-preview[bot] on nuget
Is there any gotcha's when using Cluster Discovery Consul + Routing?
Here is my deployment config:
/other {
router = broadcast-group
routees.paths = ["/user/api"]
virtual-nodes-factor = 8
cluster {
enabled = on
max-nr-of-instances-per-node = 2
allow-local-routees = off
use-role = "other"
}
}
I have the other console application running with an actor ready for messages at /user/api
Here is the cluster config:
cluster {
roles = ["other"]
}
Logs are showing that the nodes are up and running with the correct roles.
But the when telling /user/other
a message it keeps deadlettering. Anyway to debug what's going on?
NewtonSoftJsonSerializer
Hey guys,
I have data duplication issue when using TCP. I'm sending from "for" loop on client and reply with the same message from akka (echo).
If the message size 15 bytes + 4 for length, everything is perfect (sent 20k messages that is arrived in order and no duplication).
If message size more than that, duplications arrived. The pattern here is 1,2,3,4,2,3,4,5,6,7,8,2,3,4,5,6,7,8,9,10, ... (not always)
From my investigation the issue caused by
I have a repro project and will send to anyone who volunteers for investigation :)