2

我有一个在 RunAsync 方法中运行后台进程的无状态服务。

这个后台进程必须永远运行。它的作用无关紧要,但它实际上每 60 秒轮询一次数据库。

与辅助角色或 WebJob 不同,Service Fabric 服务中的 RunAsync 方法可以运行到完成,并且服务实例将保持运行。

当 Service Fabric 向传递给 RunAsync 的取消令牌发出信号时,已观察到会发生这种情况。

一旦 Service Fabric 决定从 RunAsync 方法正常返回,如何再次重新运行轮询例程?

以及如何确定 Service Fabric 首先发出取消令牌的原因?

我当前的解决方法是抛出异常,以便强制重新启动服务。

    public class Stateless1 : StatelessService
    {       
        protected override async Task RunAsync(CancellationToken cancellationToken)
        {
                try
                {
                    await Start(cancellationToken);
                }
                catch(OperationCanceledException ex)
                {
                     throw; 

    //If an OperationCanceledException escapes from
    //RunAsync(CancellationToken) and Service Fabric runtime has requested
    //cancellation by signaling cancellationToken passed to
    //RunAsync(CancellationToken), Service Fabric runtime handles this exception and
    //considers it as graceful completion of RunAsyn(CancellationToken).                     

                }
                catch(Exception ex)
                {
                    //  log error
                    throw; 
 // force service to restart, If an exception of any other type escapes from
 // RunAsync(CancellationToken) then the process that is hosting this service
 // instance is brought down
                }

        }

        private async Task Start(CancellationToken cancellationToken)
        {
            while(true)
            {
                   cancellationToken.ThrowIfCancellationRequested(); // honour cancellation token
                try
                {


                    await PollDatabase(); 
                }

                catch(Exception ex)
                {
                    //  log error
                    throw; 
                }
                finally
                {
                    for (var i = 0; i < 12; i++)
                    {
                        cancellationToken.ThrowIfCancellationRequested();  // honour cancellation token

                        await Task.Delay(TimeSpan.FromSeconds(5), cancellationToken);
                    }
                }

            }               
        }
    }
4

2 回答 2

0

一旦 Service Fabric 决定从 RunAsync 方法正常返回,如何再次重新运行轮询例程?

据我了解, RunAsync 将在返回后再次调用。在可靠服务生命周期概述中,您可以阅读以下内容。

对于有状态的可靠服务,如果服务从主服务降级,然后又提升回主服务,则将再次调用 RunAsync()。

您还可以在那里阅读降级和升级的主副本的生命周期,其中不包括 OnCloseAsync。

以及如何确定 Service Fabric 首先发出取消令牌的原因?

恐怕您需要搜索抛出的异常。请注意,我不确定这个答案,这只是我的怀疑。

于 2017-08-15T14:05:50.727 回答
0

你可以让轮询方法返回Task<T>而不是Task?您可以在您选择的对象中返回原因。

https://blog.stephencleary.com/2012/02/async-and-await.html

于 2017-07-19T22:31:40.780 回答