8

我们正在使用 Topshelf 来托管服务。在启动服务之前,我们正在调用数据库以加载大量数据。因此,在启动服务时,我们收到以下错误:

Start Service failed with return code '[7] ServiceRequestTimeout

我们使用以下代码启动服务:

HostFactory.Run(x =>
            {
                x.Service<AppService>(s =>
                {
                    s.ConstructUsing(name => new AppService(s_resolver, baseAddress, resolver));
                    s.WhenStarted(svc => svc.Start());
                    s.WhenStopped(svc => svc.Stop());
                    s.WhenShutdown(svc => svc.Shutdown());
                });

                x.EnableShutdown();
                x.RunAsLocalService();
                x.StartAutomatically();
                x.SetDisplayName("Application Host");
                x.SetDescription("Application Host");
            });

如果我尝试使用 Visual Studio 启动服务,服务运行良好。但是当服务通过 Topshelf 托管时,我得到了超时错误。

我也尝试过使用hostControl.RequestAdditionalTime(TimeSpan.FromSeconds(300)) ,但即使添加了额外的超时时间,我也无法解决问题。请提供您的建议。

4

2 回答 2

14

文档HostControl.RequestAdditionalTime未能说明的是,您最多只能要求 60 或 120 秒。否则它会忽略您的请求。

它的出色记录绝对没有我知道的地方:(如果您发现它记录在某个地方,请告诉我。

于 2013-10-25T17:24:04.110 回答
0

这里是龙

来自 TopShelf

void HostControl.RequestAdditionalTime(TimeSpan timeRemaining)
    {
        _log.DebugFormat("Requesting additional time: {0}", timeRemaining);

        RequestAdditionalTime((int)timeRemaining.TotalMilliseconds);
    }

这是来自 ServiceBase 的 JustDecompile

    /// <summary>Requests additional time for a pending operation.</summary>
    /// <param name="milliseconds">The requested time in milliseconds.</param>
    /// <exception cref="T:System.InvalidOperationException">The service is not in a pending state.</exception>
    [ComVisible(false)]
    public void RequestAdditionalTime(int milliseconds)
    {
        unsafe
        {
            fixed (NativeMethods.SERVICE_STATUS* sERVICESTATUSPointer = &this.status)
            {
                if (this.status.currentState != 5 && this.status.currentState != 2 && this.status.currentState != 3 && this.status.currentState != 6)
                {
                    throw new InvalidOperationException(Res.GetString("NotInPendingState"));
                }
                this.status.waitHint = milliseconds;
                this.status.checkPoint = this.status.checkPoint + 1;
                NativeMethods.SetServiceStatus(this.statusHandle, sERVICESTATUSPointer);
            }
        }
    }
于 2016-11-08T23:18:14.193 回答