TBScheduleManagerFactory.java
15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
package com.taobao.pamirs.schedule.strategy;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.Timer;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
import org.apache.zookeeper.ZooKeeper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import com.taobao.pamirs.schedule.ConsoleManager;
import com.taobao.pamirs.schedule.IScheduleTaskDeal;
import com.taobao.pamirs.schedule.ScheduleUtil;
import com.taobao.pamirs.schedule.taskmanager.IScheduleDataManager;
import com.taobao.pamirs.schedule.taskmanager.TBScheduleManagerStatic;
import com.taobao.pamirs.schedule.zk.ScheduleDataManager4ZK;
import com.taobao.pamirs.schedule.zk.ScheduleStrategyDataManager4ZK;
import com.taobao.pamirs.schedule.zk.ZKManager;
/**
* 调度服务器构造器
*
* @author xuannan
*
*/
public class TBScheduleManagerFactory implements ApplicationContextAware {
protected static transient Logger logger = LoggerFactory.getLogger(TBScheduleManagerFactory.class);
private Map<String,String> zkConfig;
protected ZKManager zkManager;
/**
* 是否启动调度管理,如果只是做系统管理,应该设置为false
*/
public boolean start = true;
private int timerInterval = 2000;
/**
* ManagerFactoryTimerTask上次执行的时间戳。<br/>
* zk环境不稳定,可能导致所有task自循环丢失,调度停止。<br/>
* 外层应用,通过jmx暴露心跳时间,监控这个tbschedule最重要的大循环。<br/>
*/
public volatile long timerTaskHeartBeatTS = System.currentTimeMillis();
/**
* 调度配置中心客服端
*/
private IScheduleDataManager scheduleDataManager;
private ScheduleStrategyDataManager4ZK scheduleStrategyManager;
private Map<String,List<IStrategyTask>> managerMap = new ConcurrentHashMap<String, List<IStrategyTask>>();
private ApplicationContext applicationcontext;
private String uuid;
private String ip;
private String hostName;
private Timer timer;
private ManagerFactoryTimerTask timerTask;
protected Lock lock = new ReentrantLock();
volatile String errorMessage ="No config Zookeeper connect infomation";
private InitialThread initialThread;
public TBScheduleManagerFactory() {
this.ip = ScheduleUtil.getLocalIP();
this.hostName = ScheduleUtil.getLocalHostName();
}
public void init() throws Exception {
Properties properties = new Properties();
for(Map.Entry<String,String> e: this.zkConfig.entrySet()){
properties.put(e.getKey(),e.getValue());
}
this.init(properties);
}
public void reInit(Properties p) throws Exception{
if(this.start == true || this.timer != null || this.managerMap.size() >0){
throw new Exception("调度器有任务处理,不能重新初始化");
}
this.init(p);
}
public void init(Properties p) throws Exception {
if(this.initialThread != null){
this.initialThread.stopThread();
}
this.lock.lock();
try{
this.scheduleDataManager = null;
this.scheduleStrategyManager = null;
ConsoleManager.setScheduleManagerFactory(this);
if(this.zkManager != null){
this.zkManager.close();
}
this.zkManager = new ZKManager(p);
this.errorMessage = "Zookeeper connecting ......" + this.zkManager.getConnectStr();
initialThread = new InitialThread(this);
initialThread.setName("TBScheduleManagerFactory-initialThread");
initialThread.start();
}finally{
this.lock.unlock();
}
}
/**
* 在Zk状态正常后回调数据初始化
* @throws Exception
*/
public void initialData() throws Exception{
this.zkManager.initial();
this.scheduleDataManager = new ScheduleDataManager4ZK(this.zkManager);
this.scheduleStrategyManager = new ScheduleStrategyDataManager4ZK(this.zkManager);
if (this.start == true) {
// 注册调度管理器
this.scheduleStrategyManager.registerManagerFactory(this);
if(timer == null){
timer = new Timer("TBScheduleManagerFactory-Timer");
}
if(timerTask == null){
timerTask = new ManagerFactoryTimerTask(this);
timer.schedule(timerTask, 2000,this.timerInterval);
}
}
}
/**
* 创建调度服务器
* @param baseTaskType
* @param ownSign
* @return
* @throws Exception
*/
public IStrategyTask createStrategyTask(ScheduleStrategy strategy)
throws Exception {
IStrategyTask result = null;
try{
if(ScheduleStrategy.Kind.Schedule == strategy.getKind()){
String baseTaskType = ScheduleUtil.splitBaseTaskTypeFromTaskType(strategy.getTaskName());
String ownSign =ScheduleUtil.splitOwnsignFromTaskType(strategy.getTaskName());
result = new TBScheduleManagerStatic(this,baseTaskType,ownSign,scheduleDataManager);
}else if(ScheduleStrategy.Kind.Java == strategy.getKind()){
result=(IStrategyTask)Class.forName(strategy.getTaskName()).newInstance();
result.initialTaskParameter(strategy.getStrategyName(),strategy.getTaskParameter());
}else if(ScheduleStrategy.Kind.Bean == strategy.getKind()){
result=(IStrategyTask)this.getBean(strategy.getTaskName());
result.initialTaskParameter(strategy.getStrategyName(),strategy.getTaskParameter());
}
}catch(Exception e ){
logger.error("strategy 获取对应的java or bean 出错,schedule并没有加载该任务,请确认" +strategy.getStrategyName(),e);
}
return result;
}
public void refresh() throws Exception {
this.lock.lock();
try {
// 判断状态是否终止
ManagerFactoryInfo stsInfo = null;
boolean isException = false;
try {
stsInfo = this.getScheduleStrategyManager().loadManagerFactoryInfo(this.getUuid());
} catch (Exception e) {
isException = true;
logger.error("获取服务器信息有误:uuid="+this.getUuid(), e);
}
if (isException == true) {
try {
stopServer(null); // 停止所有的调度任务
this.getScheduleStrategyManager().unRregisterManagerFactory(this);
} finally {
reRegisterManagerFactory();
}
} else if (stsInfo.isStart() == false) {
stopServer(null); // 停止所有的调度任务
this.getScheduleStrategyManager().unRregisterManagerFactory(
this);
} else {
reRegisterManagerFactory();
}
} finally {
this.lock.unlock();
}
}
public void reRegisterManagerFactory() throws Exception{
//重新分配调度器
List<String> stopList = this.getScheduleStrategyManager().registerManagerFactory(this);
for (String strategyName : stopList) {
this.stopServer(strategyName);
}
this.assignScheduleServer();
this.reRunScheduleServer();
}
/**
* 根据策略重新分配调度任务的机器
* @throws Exception
*/
public void assignScheduleServer() throws Exception{
for(ScheduleStrategyRunntime run: this.scheduleStrategyManager.loadAllScheduleStrategyRunntimeByUUID(this.uuid)){
List<ScheduleStrategyRunntime> factoryList = this.scheduleStrategyManager.loadAllScheduleStrategyRunntimeByTaskType(run.getStrategyName());
if(factoryList.size() == 0 || this.isLeader(this.uuid, factoryList) ==false){
continue;
}
ScheduleStrategy scheduleStrategy =this.scheduleStrategyManager.loadStrategy(run.getStrategyName());
int[] nums = ScheduleUtil.assignTaskNumber(factoryList.size(), scheduleStrategy.getAssignNum(), scheduleStrategy.getNumOfSingleServer());
for(int i=0;i<factoryList.size();i++){
ScheduleStrategyRunntime factory = factoryList.get(i);
//更新请求的服务器数量
this.scheduleStrategyManager.updateStrategyRunntimeReqestNum(run.getStrategyName(),
factory.getUuid(),nums[i]);
}
}
}
public boolean isLeader(String uuid, List<ScheduleStrategyRunntime> factoryList) {
try {
long no = Long.parseLong(uuid.substring(uuid.lastIndexOf("$") + 1));
for (ScheduleStrategyRunntime server : factoryList) {
if (no > Long.parseLong(server.getUuid().substring(
server.getUuid().lastIndexOf("$") + 1))) {
return false;
}
}
return true;
} catch (Exception e) {
logger.error("判断Leader出错:uuif="+uuid, e);
return true;
}
}
public void reRunScheduleServer() throws Exception{
for (ScheduleStrategyRunntime run : this.scheduleStrategyManager.loadAllScheduleStrategyRunntimeByUUID(this.uuid)) {
List<IStrategyTask> list = this.managerMap.get(run.getStrategyName());
if(list == null){
list = new ArrayList<IStrategyTask>();
this.managerMap.put(run.getStrategyName(),list);
}
while(list.size() > run.getRequestNum() && list.size() >0){
IStrategyTask task = list.remove(list.size() - 1);
try {
task.stop(run.getStrategyName());
} catch (Throwable e) {
logger.error("注销任务错误:strategyName=" + run.getStrategyName(), e);
}
}
//不足,增加调度器
ScheduleStrategy strategy = this.scheduleStrategyManager.loadStrategy(run.getStrategyName());
while(list.size() < run.getRequestNum()){
IStrategyTask result = this.createStrategyTask(strategy);
if(null==result){
logger.error("strategy 对应的配置有问题。strategy name="+strategy.getStrategyName());
}
list.add(result);
}
}
}
/**
* 终止一类任务
*
* @param taskType
* @throws Exception
*/
public void stopServer(String strategyName) throws Exception {
if(strategyName == null){
String[] nameList = (String[])this.managerMap.keySet().toArray(new String[0]);
for (String name : nameList) {
for (IStrategyTask task : this.managerMap.get(name)) {
try{
task.stop(strategyName);
}catch(Throwable e){
logger.error("注销任务错误:strategyName="+strategyName,e);
}
}
this.managerMap.remove(name);
}
}else {
List<IStrategyTask> list = this.managerMap.get(strategyName);
if(list != null){
for(IStrategyTask task:list){
try {
task.stop(strategyName);
} catch (Throwable e) {
logger.error("注销任务错误:strategyName=" + strategyName, e);
}
}
this.managerMap.remove(strategyName);
}
}
}
/**
* 停止所有调度资源
*/
public void stopAll() throws Exception {
try {
lock.lock();
this.start = false;
if (this.initialThread != null) {
this.initialThread.stopThread();
}
if (this.timer != null) {
if (this.timerTask != null) {
this.timerTask.cancel();
this.timerTask = null;
}
this.timer.cancel();
this.timer = null;
}
this.stopServer(null);
if (this.zkManager != null) {
this.zkManager.close();
}
if (this.scheduleStrategyManager != null) {
try {
ZooKeeper zk = this.scheduleStrategyManager.getZooKeeper();
if (zk != null) {
zk.close();
}
} catch (Exception e) {
logger.error("stopAll zk getZooKeeper异常!",e);
}
}
this.uuid = null;
logger.info("stopAll 停止服务成功!");
} catch (Throwable e) {
logger.error("stopAll 停止服务失败:" + e.getMessage(), e);
} finally {
lock.unlock();
}
}
/**
* 重启所有的服务
* @throws Exception
*/
public void reStart() throws Exception {
try {
if (this.timer != null) {
if(this.timerTask != null){
this.timerTask.cancel();
this.timerTask = null;
}
this.timer.purge();
}
this.stopServer(null);
if (this.zkManager != null) {
this.zkManager.close();
}
this.uuid = null;
this.init();
} catch (Throwable e) {
logger.error("重启服务失败:" + e.getMessage(), e);
}
}
public boolean isZookeeperInitialSucess() throws Exception{
return this.zkManager.checkZookeeperState();
}
public String[] getScheduleTaskDealList() {
return applicationcontext.getBeanNamesForType(IScheduleTaskDeal.class);
}
public IScheduleDataManager getScheduleDataManager() {
if(this.scheduleDataManager == null){
throw new RuntimeException(this.errorMessage);
}
return scheduleDataManager;
}
public ScheduleStrategyDataManager4ZK getScheduleStrategyManager() {
if(this.scheduleStrategyManager == null){
throw new RuntimeException(this.errorMessage);
}
return scheduleStrategyManager;
}
public void setApplicationContext(ApplicationContext aApplicationcontext) throws BeansException {
applicationcontext = aApplicationcontext;
}
public Object getBean(String beanName) {
return applicationcontext.getBean(beanName);
}
public String getUuid() {
return uuid;
}
public String getIp() {
return ip;
}
public void setUuid(String uuid) {
this.uuid = uuid;
}
public String getHostName() {
return hostName;
}
public void setStart(boolean isStart) {
this.start = isStart;
}
public void setTimerInterval(int timerInterval) {
this.timerInterval = timerInterval;
}
public void setZkConfig(Map<String,String> zkConfig) {
this.zkConfig = zkConfig;
}
public ZKManager getZkManager() {
return this.zkManager;
}
public Map<String,String> getZkConfig() {
return zkConfig;
}
}
class ManagerFactoryTimerTask extends java.util.TimerTask {
private static transient Logger log = LoggerFactory.getLogger(ManagerFactoryTimerTask.class);
TBScheduleManagerFactory factory;
int count =0;
public ManagerFactoryTimerTask(TBScheduleManagerFactory aFactory) {
this.factory = aFactory;
}
public void run() {
try {
Thread.currentThread().setPriority(Thread.MAX_PRIORITY);
if(this.factory.zkManager.checkZookeeperState() == false){
if(count > 5){
log.error("Zookeeper连接失败,关闭所有的任务后,重新连接Zookeeper服务器......");
this.factory.reStart();
}else{
count = count + 1;
}
}else{
count = 0;
this.factory.refresh();
}
} catch (Throwable ex) {
log.error(ex.getMessage(), ex);
} finally {
factory.timerTaskHeartBeatTS = System.currentTimeMillis();
}
}
}
class InitialThread extends Thread{
private static transient Logger log = LoggerFactory.getLogger(InitialThread.class);
TBScheduleManagerFactory facotry;
boolean isStop = false;
public InitialThread(TBScheduleManagerFactory aFactory){
this.facotry = aFactory;
}
public void stopThread(){
this.isStop = true;
}
@Override
public void run() {
facotry.lock.lock();
try {
int count =0;
while(facotry.zkManager.checkZookeeperState() == false){
count = count + 1;
if(count % 50 == 0){
facotry.errorMessage = "Zookeeper connecting ......" + facotry.zkManager.getConnectStr() + " spendTime:" + count * 20 +"(ms)";
log.error(facotry.errorMessage);
}
Thread.sleep(20);
if(this.isStop ==true){
return;
}
}
facotry.initialData();
} catch (Throwable e) {
log.error(e.getMessage(),e);
}finally{
facotry.lock.unlock();
}
}
}