|
|
@@ -1,16 +1,25 @@
|
|
|
-namespace Admin.NET.Core.Service;
|
|
|
+//using Nest;
|
|
|
+using Furion.Schedule;
|
|
|
+
|
|
|
+namespace Admin.NET.Core.Service;
|
|
|
|
|
|
/// <summary>
|
|
|
/// 作业集群控制
|
|
|
/// </summary>
|
|
|
public class JobClusterServer : IJobClusterServer
|
|
|
{
|
|
|
- private readonly SqlSugarRepository<SysJobCluster> _sysJobClusterRep;
|
|
|
+ private readonly Random ro=new Random(DateTime.Now.Millisecond);
|
|
|
|
|
|
- public JobClusterServer(SqlSugarRepository<SysJobCluster> sysJobClusterRep)
|
|
|
+ public JobClusterServer()
|
|
|
{
|
|
|
- _sysJobClusterRep = sysJobClusterRep;
|
|
|
}
|
|
|
+ //public JobClusterServer(SqlSugarRepository<SysJobCluster> sysJobClusterRep)
|
|
|
+ //{
|
|
|
+ // _sysJobClusterRep = sysJobClusterRep;
|
|
|
+
|
|
|
+
|
|
|
+ //}
|
|
|
+
|
|
|
|
|
|
/// <summary>
|
|
|
/// 当前作业调度器启动通知
|
|
|
@@ -18,15 +27,26 @@ public class JobClusterServer : IJobClusterServer
|
|
|
/// <param name="context">作业集群服务上下文</param>
|
|
|
public async void Start(JobClusterContext context)
|
|
|
{
|
|
|
+ var _sysJobClusterRep = App.GetService<SqlSugarRepository<SysJobCluster>>();
|
|
|
// 在作业集群表中,如果 clusterId 不存在,则新增一条(否则更新一条),并设置 status 为 ClusterStatus.Waiting
|
|
|
- if (await _sysJobClusterRep.IsAnyAsync(u => u.ClusterId == context.ClusterId))
|
|
|
+ var clusters = await _sysJobClusterRep.AsQueryable().Where(u => u.ClusterId == context.ClusterId).ToListAsync();
|
|
|
+ if (clusters.Any())
|
|
|
{
|
|
|
- await _sysJobClusterRep.UpdateSetColumnsTrueAsync(u => new SysJobCluster { Status = ClusterStatus.Waiting }, u => u.ClusterId == context.ClusterId);
|
|
|
+ await _sysJobClusterRep.AsUpdateable().SetColumns(u => u.Status == ClusterStatus.Waiting).Where(u => u.ClusterId == context.ClusterId).ExecuteCommandAsync();
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- await _sysJobClusterRep.InsertAsync(new SysJobCluster { ClusterId = context.ClusterId, Status = ClusterStatus.Waiting });
|
|
|
+
|
|
|
+ await _sysJobClusterRep.AsInsertable(new SysJobCluster { ClusterId = context.ClusterId, Status = ClusterStatus.Waiting }).ExecuteCommandAsync();
|
|
|
}
|
|
|
+ //if (await _sysJobClusterRep.IsAnyAsync(u => u.ClusterId == context.ClusterId))
|
|
|
+ //{
|
|
|
+ // await _sysJobClusterRep.UpdateSetColumnsTrueAsync(u => new SysJobCluster { Status = ClusterStatus.Waiting }, u => u.ClusterId == context.ClusterId);
|
|
|
+ //}
|
|
|
+ //else
|
|
|
+ //{
|
|
|
+ // await _sysJobClusterRep.InsertAsync(new SysJobCluster { ClusterId = context.ClusterId, Status = ClusterStatus.Waiting });
|
|
|
+ //}
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
|
@@ -42,20 +62,28 @@ public class JobClusterServer : IJobClusterServer
|
|
|
{
|
|
|
try
|
|
|
{
|
|
|
- // 在这里查询数据库,根据以下两种情况处理
|
|
|
- // 1) 如果作业集群表已有 status 为 ClusterStatus.Working 则继续循环
|
|
|
- // 2) 如果作业集群表中还没有其他服务或只有自己,则插入一条集群服务或调用 await WorkNowAsync(clusterId); 之后 return;
|
|
|
- // 3) 如果作业集群表中没有 status 为 ClusterStatus.Working 的,调用 await WorkNowAsync(clusterId); 之后 return;
|
|
|
- if (await _sysJobClusterRep.IsAnyAsync(u => u.Status == ClusterStatus.Working))
|
|
|
- continue;
|
|
|
+ ICache _cache = App.GetService<ICache>();
|
|
|
+ //使用分布式锁
|
|
|
+ using (_cache.AcquireLock("lock:JobClusterServer:WaitingForAsync", 1000))
|
|
|
+ {
|
|
|
+
|
|
|
+ var _sysJobClusterRep = App.GetService<SqlSugarRepository<SysJobCluster>>();
|
|
|
+ // 在这里查询数据库,根据以下两种情况处理
|
|
|
+ // 1) 如果作业集群表已有 status 为 ClusterStatus.Working 则继续循环
|
|
|
+ // 2) 如果作业集群表中还没有其他服务或只有自己,则插入一条集群服务或调用 await WorkNowAsync(clusterId); 之后 return;
|
|
|
+ // 3) 如果作业集群表中没有 status 为 ClusterStatus.Working 的,调用 await WorkNowAsync(clusterId); 之后 return;
|
|
|
+ if (await _sysJobClusterRep.IsAnyAsync(u => u.Status == ClusterStatus.Working))
|
|
|
+ continue;
|
|
|
|
|
|
- WorkNowAsync(clusterId);
|
|
|
- return;
|
|
|
+ WorkNowAsync(clusterId);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
catch { }
|
|
|
|
|
|
// 控制集群心跳频率
|
|
|
- await Task.Delay(3000);
|
|
|
+ await Task.Delay(3000+ ro.Next(500,1000));//错开集群同时启动
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -65,6 +93,7 @@ public class JobClusterServer : IJobClusterServer
|
|
|
/// <param name="context">作业集群服务上下文</param>
|
|
|
public async void Stop(JobClusterContext context)
|
|
|
{
|
|
|
+ var _sysJobClusterRep = App.GetService<SqlSugarRepository<SysJobCluster>>();
|
|
|
// 在作业集群表中,更新 clusterId 的 status 为 ClusterStatus.Crashed
|
|
|
await _sysJobClusterRep.UpdateSetColumnsTrueAsync(u => new SysJobCluster { Status = ClusterStatus.Crashed }, u => u.ClusterId == context.ClusterId);
|
|
|
}
|
|
|
@@ -75,6 +104,7 @@ public class JobClusterServer : IJobClusterServer
|
|
|
/// <param name="context">作业集群服务上下文</param>
|
|
|
public async void Crash(JobClusterContext context)
|
|
|
{
|
|
|
+ var _sysJobClusterRep = App.GetService<SqlSugarRepository<SysJobCluster>>();
|
|
|
// 在作业集群表中,更新 clusterId 的 status 为 ClusterStatus.Crashed
|
|
|
await _sysJobClusterRep.UpdateSetColumnsTrueAsync(u => new SysJobCluster { Status = ClusterStatus.Crashed }, u => u.ClusterId == context.ClusterId);
|
|
|
}
|
|
|
@@ -86,6 +116,7 @@ public class JobClusterServer : IJobClusterServer
|
|
|
/// <returns></returns>
|
|
|
private async void WorkNowAsync(string clusterId)
|
|
|
{
|
|
|
+ var _sysJobClusterRep = App.GetService<SqlSugarRepository<SysJobCluster>>();
|
|
|
// 在作业集群表中,更新 clusterId 的 status 为 ClusterStatus.Working
|
|
|
await _sysJobClusterRep.UpdateSetColumnsTrueAsync(u => new SysJobCluster { Status = ClusterStatus.Working }, u => u.ClusterId == clusterId);
|
|
|
}
|