-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Akka.Cluster.Sharding GetShardRegionStats serialization issue #3830
Comments
Looks like we're missing a protobuf message definition for this inside the JVM project: I had figured as much - I'll go and add this. |
Looks like the issue is actually |
akka.net/src/contrib/cluster/Akka.Cluster.Sharding/ShardingMessages.cs Lines 144 to 180 in dbc25db
Address using JSON.NET.
|
* close akkadotnet#3830 - added serialization support for ClusterShardingStats
* close akkadotnet#3830 - added serialization support for ClusterShardingStats
* close akkadotnet#3830 - added serialization support for ClusterShardingStats
Version: Akka.NET v1.4.0 current
dev
branchError occurs when attempting to send a
GetClusterShardingStats
message from a non-coordinatorShardRegion
to thePersistentShardRegion
coordinator, in this case via the Petabridge.Cmd.Cluster.Sharding command palette, a deserialization error occurs in JSON.NET when deserializing theClusterShardingStats
response sent back by the coordinator:The issue here is that we're using JSON.NET at all for this - this should be in a protobuf message.
The text was updated successfully, but these errors were encountered: