如何重启 Hangfire 服务器,或停止它并启动一个新服务器,以更改它正在处理的队列?

How to restart Hangfire server, or stop it and start a new one, to change the Queues it's processing?

在我的 asp.net 5 应用程序中,我使用 Hangfire 仅处理某些队列,基于服务器应照顾的租户。所以在应用程序启动时,我会查找哪些队列并相应地启动 Hangfire 服务器。

    public void ConfigureServices(IServiceCollection services)
    {
        // ... do stuff

        services.AddHangfire(config => config
                                .SetDataCompatibilityLevel(CompatibilityLevel.Version_170)
                                .UseSimpleAssemblyNameTypeSerializer()
                                .UseSqlServerStorage(hangfireConnectionString, new SqlServerStorageOptions
                                {
                                    QueuePollInterval = new TimeSpan(0, 0, 0, 0, 500)
                                })
        );

        string[] queueNames = GetQueueNamesForThisServerToProcess();

        services.AddHangfireServer(options =>
        {
            options.Queues = queueNames;
        });

        // ... do more stuff
    }

稍后我想更改此服务器正在处理的队列。我 认为 我需要停止这个 hangfire 服务器并启动另一个...但是 a) 我如何获得对这个 hangfire 的引用,以及 b) 我应该如何正确启动一个新的一,假设在 aspnet core 中启动 Hangfire 服务器的建议方法是使用 services.AddHangfireServer()?

停止 运行 服务器

BackgroundProcessingServer注入后可以在任意控制器访问

_server.SendStop();
await _server.WaitForShutdownAsync(new System.Threading.CancellationToken());
_server.Dispose();

启动新服务器

可以触发 AddHangfireServer 访问注入的 IApplicationBuilder

  _applicationBuilder.UseHangfireServer(new BackgroundJobServerOptions
  {
    WorkerCount = 1,
    Queues = new[] { "customqueuename" },
    ServerName = "Custom server 2",
  });

startup.cs

  services.AddSingleton<IBackgroundProcessingServer, BackgroundProcessingServer>();
  services.AddSingleton<IApplicationBuilder, ApplicationBuilder>();

here for a complete POC.

使用JobStorage.Current.GetConnection().RemoveTimedOutServers(new TimeSpan(0, 0, 15));更新/hangfire/servers