每台服务器上的 hangfire 重复作业
hangfire recurring job on every server
我有一种情况需要在集群中的每台服务器上使用 hangfire 注册一个周期性作业 运行。
(工作是在本地复制一些文件,因此需要定期在每个服务器上 运行)
到目前为止,我已尝试使用服务器名称的 ID 注册相同的作业,导致 n 个服务器的 n 个作业:
RecurringJob.AddOrUpdate(Environment.MachineName, () => CopyFiles(Environment.MachineName), Cron.MinuteInterval(_delay));
作业本身会检查它是否是正确的服务器,并且只有在正确的情况下才会执行某些操作:
public static void CopyFiles(string taskId)
{
if (string.IsNullOrWhiteSpace(taskId) || !taskId.Equals(Environment.MachineName))
{
return;
}
// do stuff here if it matches our taskname
}
问题是所有作业都在第一台服务器上执行,标记为完成,因此其他服务器不会执行。
有什么方法可以确保作业 运行 在所有服务器上都有效吗?
或者有没有办法确保只有一台服务器可以处理给定的作业?即在创建它的服务器上定位作业
使用 this link 找到答案。
只需将作业分配到特定于您要在其上处理的服务器的队列。
所以我将队列更改为:
RecurringJob.AddOrUpdate(Environment.MachineName,
() => CopyFiles(Environment.MachineName),
Cron.MinuteInterval(_delay),
queue: Environment.MachineName.ToLower(CultureInfo.CurrentCulture));
当我启动服务器时,我会这样做:
_backgroundJobServer = new BackgroundJobServer(new BackgroundJobServerOptions
{
Queues = new[] { Environment.MachineName.ToLower() }
});
我有一种情况需要在集群中的每台服务器上使用 hangfire 注册一个周期性作业 运行。
(工作是在本地复制一些文件,因此需要定期在每个服务器上 运行)
到目前为止,我已尝试使用服务器名称的 ID 注册相同的作业,导致 n 个服务器的 n 个作业:
RecurringJob.AddOrUpdate(Environment.MachineName, () => CopyFiles(Environment.MachineName), Cron.MinuteInterval(_delay));
作业本身会检查它是否是正确的服务器,并且只有在正确的情况下才会执行某些操作:
public static void CopyFiles(string taskId)
{
if (string.IsNullOrWhiteSpace(taskId) || !taskId.Equals(Environment.MachineName))
{
return;
}
// do stuff here if it matches our taskname
}
问题是所有作业都在第一台服务器上执行,标记为完成,因此其他服务器不会执行。
有什么方法可以确保作业 运行 在所有服务器上都有效吗?
或者有没有办法确保只有一台服务器可以处理给定的作业?即在创建它的服务器上定位作业
使用 this link 找到答案。
只需将作业分配到特定于您要在其上处理的服务器的队列。
所以我将队列更改为:
RecurringJob.AddOrUpdate(Environment.MachineName,
() => CopyFiles(Environment.MachineName),
Cron.MinuteInterval(_delay),
queue: Environment.MachineName.ToLower(CultureInfo.CurrentCulture));
当我启动服务器时,我会这样做:
_backgroundJobServer = new BackgroundJobServer(new BackgroundJobServerOptions
{
Queues = new[] { Environment.MachineName.ToLower() }
});