You might need to programmatically lookup details about a service. The FabricClient class can be used to lookup various things from the cluster.
|
The result of GetPartitionListAsync
should never change for a service as you can’t change the partition information after a service has been created. It would be safe and give better performance to cache this.
The endpoint of the primary replica however can move between machines, so this does need to be resolved more frequently. You can also cache this if you have a retry strategy that will re-resolve after an EndpointNotFoundException
.
|