6

我正在尝试创建一个服务,该服务将为在我的服务结构集群中运行的应用程序更新服务端点的外部列表。(基本上我需要在我的本地 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");
}

如果您对如何实现这一点有任何提示,我很乐意看到它们。

4

1 回答 1

1

您需要将MatchNamePrefix设置为 true,如下所示:

    var filterDescription = new ServiceNotificationFilterDescription
    {
        Name = new Uri("fabric:"),
        MatchNamePrefix = true
    };

否则它只会匹配特定的服务。在我的应用程序中,当此参数设置为 时,我可以捕获集群范围的事件true

于 2017-07-26T09:36:28.230 回答