microsoft / service-fabric-issues

This repo is for the reporting of issues found with Azure Service Fabric.
168 stars 21 forks source link

Is it available for features similar to that of Orleans Grain Services? #1540

Closed buzzers closed 5 years ago

buzzers commented 5 years ago

I'd like to know if service fabric offers grain services and pub/sub features similar to those in Orleans.

This is necessary because my program relies on configuration data that is stored in another reliable stateful service. When this data needs to be changed, the interface of the service is requested and the configuration data is modified, and the service then needs to notify all service processes in the cluster to update the configuration.

So I need to permanently have a service within all service processes to listen for change events and get a new configuration.

But I read the documentation and didn't find these features.

MedAnd commented 5 years ago

Orleans can be hosted on Service Fabric. There are currently two points of integration with Service Fabric, see Service Fabric Hosting for details.

buzzers commented 5 years ago

OK,thanks.