I'm trying to pass 5MB~ data from a service to an actor, and I'm getting the error:
Fabric Message is too large
How can I increase the maximum size that can be transferred between micro-services?
I looked at the following page to see my options.
I tried setting:
<Section Name="ServiceReplicatorConfig">
...
<Parameter Name="MaxReplicationMessageSize" Value="1073741824" />
</Section>
Please help.