I'm implementing an API gateway on a service fabric cluster where the API gateway service is the public endpoint that routes external HTTP requests into a set of worker services running in the cluster. For inter-service communication between the gateway and the internal services, we're using the ServicePartitionClient.
I've found that when using the ServicePartitionClient to resolve service addresses and communicate with an stateless service, it will pick a single instance of the stateless service and only communicate with that one instance with every communication attempt. In my case, I have multiple instance of my stateless service running and would like to distribute load across them (e.g. round robin). Is there a way to do this using ServicePartitionClient that doesn't require a hit to the NamingService service every time (which is too expensive for our use case)?