Erick B
Erick B

Reputation: 516

Azure Service Fabric – Service Remoting vs HTTP vs messaging system?

Let say I’ll have millions of Actors producing data that will end up in a DB. It would be a terrible idea to let the Actors interact with the DB so I’m adding another Service B in the middle. This Service B will write to DB in batches.

What should I use for the communication between Actors and Service B? Service Remoting, HTTP, an asynchronous messaging system?

Is Service Remoting a good solution? Especially when data is already persisted in the Actor (StatePersistence.Persisted)

Can Service Remoting handle millions of Actors concurrently calling Service B? Can you mention anything negative about going with the Service Remoting approach?

Thanks

Upvotes: 3

Views: 670

Answers (0)

Related Questions