gpt4 book ai didi

azure-service-fabric - Service Fabric ServicePartitionResolver ResolveAsync

转载 作者:行者123 更新时间:2023-12-02 15:16:42 26 4
gpt4 key购买 nike

我目前正在使用 ServicePartitionResolver 获取集群中另一个应用程序的 http 端点。

var resolver = ServicePartitionResolver.GetDefault();
var partition = await resolver.ResolveAsync(serviceUri, partitionKey ?? ServicePartitionKey.Singleton, CancellationToken.None);
var endpoints = JObject.Parse(partition.GetEndpoint().Address)["Endpoints"];
return endpoints[endpointName].ToString().TrimEnd('/');

这按预期工作,但是如果我重新部署我的目标应用程序并且它在我的本地开发箱上的端口发生变化,源应用程序仍然返回旧端点(现在无效)。我可以清除某个地方的缓存吗?或者这是一个错误?

最佳答案

是的,它们被缓存了。如果您知道该分区不再有效,或者如果您收到错误,您可以调用 resolver.ResolveAsync(),它具有一个采用早期 ResolvedServicePartition 的重载previousRsp,触发刷新。

This api-overload is used in cases where the client knows that the resolved service partition that it has is no longer valid.

查看此 article也是。

关于azure-service-fabric - Service Fabric ServicePartitionResolver ResolveAsync,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39831877/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com