我正在尝试创建一个服务,该服务将为在我的服务结构集群中运行的应用程序更新服务端点的外部列表。(基本上我需要在我的本地 F5 负载均衡器中复制 Azure 负载均衡器。)
在上个月的 Service Fabric 问答中,团队向我指出了RegisterServiceNotificationFilterAsync。
我使用这种方法制作了一个无状态服务,并将其部署到我的开发集群中。然后我通过运行 ASP.NET Core Stateless 服务模板创建了一个新服务。
我预计当我部署第二个服务时,断点会在我的第一个服务中命中,表明已经添加了一个服务。但是没有命中断点。
我在互联网上找到的这种事情的例子很少,所以我在这里问别人已经做到了这一点,并且可以告诉我哪里出错了。
这是我的服务的代码,它试图捕捉应用程序的变化:
protected override async Task RunAsync(CancellationToken cancellationToken)
{
var fabricClient = new FabricClient();
long? filterId = null;
try
{
var filterDescription = new ServiceNotificationFilterDescription
{
Name = new Uri("fabric:")
};
fabricClient.ServiceManager.ServiceNotificationFilterMatched += ServiceManager_ServiceNotificationFilterMatched;
filterId = await fabricClient.ServiceManager.RegisterServiceNotificationFilterAsync(filterDescription);
long iterations = 0;
while (true)
{
cancellationToken.ThrowIfCancellationRequested();
ServiceEventSource.Current.ServiceMessage(this.Context, "Working-{0}", ++iterations);
await Task.Delay(TimeSpan.FromSeconds(1), cancellationToken);
}
}
finally
{
if (filterId != null)
await fabricClient.ServiceManager.UnregisterServiceNotificationFilterAsync(filterId.Value);
}
}
private void ServiceManager_ServiceNotificationFilterMatched(object sender, EventArgs e)
{
Debug.WriteLine("Change Occured");
}
如果您对如何实现这一点有任何提示,我很乐意看到它们。