Reputation: 1778
What is the justifications for the service fabric reliable collections. The team I am working with is replacing the stateful services with stateless and removing the state to a redis server. As far as I understood was service fabric should eliminate the unnecassary talk and be fast at solving issues. I guess the persistance state parameter in service fabric and the debugging is so hard that the team gave up on it.
How should we approach service fabric projects
PS
I still feel that SF is the way to go as It gives us the 1000 server Virtual Machine scale sets architecture.
Upvotes: 1
Views: 1354
Reputation: 907
Reliable collections are fantastic if
Reliable collections are a brilliant solution if all the above set of features are needed. Individual points can be achieved by other means but getting all of it together needs some heavy lifting and thought/experience.
Making all services stateless will make the individual services fast, but they still need to read and write to redis which is another executable to maintain and make highly available.
Upvotes: 4