web-dev-qa-db-ja.com

再起動時にその特定のサーバーの古いサーバーデータを強制的にhangfireサーバーから削除するにはどうすればよいですか?

現在自分のページで実行されているhangfireサーバーのリストを表示しています。

コンソールアプリケーションでhangfireサーバーを実行していますが、問題は、コンソールアプリケーションを実行していない場合でも、hangfireapiがhangfireサーバーを返すことです。

さらに、コンソールアプリケーションを複数回実行すると、コンソールアプリケーションで実行されているhangfireサーバーは1つだけですが、3〜4つのhangfireサーバーが表示されます。

MVCアプリケーション:

IMonitoringApi monitoringApi = JobStorage.Current.GetMonitoringApi();
var servers = monitoringApi.Servers().OrderByDescending(s => s.StartedAt);

コンソールアプリケーション:Hangfireサーバー

public static void Main(string[] args)
{
    var sqlServerPolling = new SqlServerStorageOptions
    {
        QueuePollInterval = TimeSpan.FromSeconds(20) // Default value
    };
    GlobalConfiguration.Configuration.UseSqlServerStorage("ConnectionString", sqlServerPolling);

    // Set automatic retry attempt
    GlobalJobFilters.Filters.Add(new AutomaticRetryAttribute { Attempts = 0 });

    // Set worker count
    var options = new BackgroundJobServerOptions
    {
        WorkerCount = 1,
    };
    using (var server = new BackgroundJobServer(options))
    {
        Console.WriteLine("Hangfire Server1 started. Press any key to exit...");
        Console.ReadKey();
    }
}

Hangfireサーバーは、その特定のサーバーに対してコンソールアプリケーションを再度実行するたびに、古いサーバーデータを自動的に削除しますか?

私はどんな助けにも感謝します:)

11

私はソースコードを掘り下げて見つけました:

IMonitoringApi monitoringApi = JobStorage.Current.GetMonitoringApi();
var serverToRemove = monitoringApi.Servers().First(); //<-- adjust query as needed
JobStorage.Current.GetConnection().RemoveServer(serverToRemove.Name)

コードを自分で確認したい場合は、関連するソースコードファイルを次に示します。

最後のリンクから、サーバー名をカスタマイズして、検索と削除を簡単に行えることも明らかです。

var options = new BackgroundJobServerOptions
{
    WorkerCount = 1,
    ServerName = "removeMe",
};
// ....
IMonitoringApi monitoringApi = JobStorage.Current.GetMonitoringApi();
var serverToRemove = monitoringApi.Servers().First(svr => srv.Name.Contains("removeMe"));
JobStorage.Current.GetConnection().RemoveServer(serverToRemove.Name);
7
caesay

コードに従って、同じサーバー内の重複を削除します。

        //Start Hangfire Server
        var varJobOptions = new BackgroundJobServerOptions();
        varJobOptions.ServerName = "job.fiscal.io";
        varJobOptions.WorkerCount = Environment.ProcessorCount * 10;
        app.UseHangfireServer(varJobOptions);
        app.UseHangfireDashboard("/jobs", new DashboardOptions {
            Authorization = new[] { new clsHangFireAuthFilter() }
        });
        //Remove Duplicte HangFire Server
        var varMonitoringApi = JobStorage.Current.GetMonitoringApi();
        var varServerList = varMonitoringApi.Servers().Where(r => r.Name.Contains("job.fiscal.io"));
        foreach( var varServerItem in varServerList) {
            JobStorage.Current.GetConnection().RemoveServer(varServerItem.Name);
        }
1
Lucas Lima