You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This one is a bit ugly.
The JVM Api is designed around long values for journal sequence numbers, which is all fine.
In our specific implementation here, there are two issues;
We use Linq to objects to filter the journal, l2o uses integers for its methods, thus, the value needs to be truncated.
We are probably not going to ever be able to deserialize more than int.Max entries from servicefabric. as that would probably take a couple of days and a bizarre amount of memory to deserialize such object.
It is probably a corner case considering that it would assume that an Actor would need 100s GB of storage for its state. We may want to catch this case at the plug-in level and return some sort of error.
The read count is truncated from Long to Int. Document this behavior.
In
ServiceFabricPersistence.ServiceFabricEventJournal.GetMessagesAsync
int m = max > int.MaxValue ? int.MaxValue : (int)max;
The text was updated successfully, but these errors were encountered: