ScheduleDataManager4ZK.java
39 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
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
package com.taobao.pamirs.schedule.zk;
import java.lang.reflect.Type;
import java.sql.Timestamp;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.UUID;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.apache.commons.lang.StringUtils;
import org.apache.zookeeper.CreateMode;
import org.apache.zookeeper.KeeperException;
import org.apache.zookeeper.ZooKeeper;
import org.apache.zookeeper.data.Stat;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonDeserializer;
import com.google.gson.JsonElement;
import com.google.gson.JsonParseException;
import com.google.gson.JsonPrimitive;
import com.google.gson.JsonSerializationContext;
import com.google.gson.JsonSerializer;
import com.taobao.pamirs.schedule.ScheduleUtil;
import com.taobao.pamirs.schedule.TaskItemDefine;
import com.taobao.pamirs.schedule.taskmanager.IScheduleDataManager;
import com.taobao.pamirs.schedule.taskmanager.ScheduleServer;
import com.taobao.pamirs.schedule.taskmanager.ScheduleTaskItem;
import com.taobao.pamirs.schedule.taskmanager.ScheduleTaskType;
import com.taobao.pamirs.schedule.taskmanager.ScheduleTaskTypeRunningInfo;
public class ScheduleDataManager4ZK implements IScheduleDataManager {
private static transient Logger log = LoggerFactory.getLogger(ScheduleDataManager4ZK.class);
private Gson gson ;
private ZKManager zkManager;
private String PATH_BaseTaskType;
private String PATH_TaskItem = "taskItem";
private String PATH_Server = "server";
private long zkBaseTime = 0;
private long loclaBaseTime = 0;
public ScheduleDataManager4ZK(ZKManager aZkManager) throws Exception {
this.zkManager = aZkManager;
gson = new GsonBuilder().registerTypeAdapter(Timestamp.class,new TimestampTypeAdapter()).setDateFormat("yyyy-MM-dd HH:mm:ss").create();
this.PATH_BaseTaskType = this.zkManager.getRootPath() +"/baseTaskType";
if (this.getZooKeeper().exists(this.PATH_BaseTaskType, false) == null) {
ZKTools.createPath(getZooKeeper(),this.PATH_BaseTaskType, CreateMode.PERSISTENT, this.zkManager.getAcl());
}
loclaBaseTime = System.currentTimeMillis();
String tempPath = this.zkManager.getZooKeeper().create(this.zkManager.getRootPath() + "/systime",null, this.zkManager.getAcl(), CreateMode.EPHEMERAL_SEQUENTIAL);
Stat tempStat = this.zkManager.getZooKeeper().exists(tempPath, false);
zkBaseTime = tempStat.getCtime();
ZKTools.deleteTree(getZooKeeper(), tempPath);
if(Math.abs(this.zkBaseTime - this.loclaBaseTime) > 5000){
log.error("请注意,Zookeeper服务器时间与本地时间相差 : " + Math.abs(this.zkBaseTime - this.loclaBaseTime) +" ms");
}
}
public ZooKeeper getZooKeeper() throws Exception {
return this.zkManager.getZooKeeper();
}
public void createBaseTaskType(ScheduleTaskType baseTaskType) throws Exception {
if(baseTaskType.getBaseTaskType().indexOf("$") > 0){
throw new Exception("调度任务" + baseTaskType.getBaseTaskType() +"名称不能包括特殊字符 $");
}
String zkPath = this.PATH_BaseTaskType + "/"+ baseTaskType.getBaseTaskType();
String valueString = this.gson.toJson(baseTaskType);
if ( this.getZooKeeper().exists(zkPath, false) == null) {
this.getZooKeeper().create(zkPath, valueString.getBytes(), this.zkManager.getAcl(),CreateMode.PERSISTENT);
} else {
throw new Exception("调度任务" + baseTaskType.getBaseTaskType() + "已经存在,如果确认需要重建,请先调用deleteTaskType(String baseTaskType)删除");
}
}
public void updateBaseTaskType(ScheduleTaskType baseTaskType)
throws Exception {
if(baseTaskType.getBaseTaskType().indexOf("$") > 0){
throw new Exception("调度任务" + baseTaskType.getBaseTaskType() +"名称不能包括特殊字符 $");
}
String zkPath = this.PATH_BaseTaskType + "/"+ baseTaskType.getBaseTaskType();
String valueString = this.gson.toJson(baseTaskType);
if ( this.getZooKeeper().exists(zkPath, false) == null) {
this.getZooKeeper().create(zkPath, valueString.getBytes(), this.zkManager.getAcl(),CreateMode.PERSISTENT);
}else{
this.getZooKeeper().setData(zkPath, valueString.getBytes(), -1);
}
}
public void initialRunningInfo4Dynamic(String baseTaskType, String ownSign)throws Exception {
String taskType = ScheduleUtil.getTaskTypeByBaseAndOwnSign(baseTaskType, ownSign);
//清除所有的老信息,只有leader能执行此操作
String zkPath = this.PATH_BaseTaskType+"/"+ baseTaskType +"/" + taskType;
if(this.getZooKeeper().exists(zkPath, false) == null){
this.getZooKeeper().create(zkPath,null, this.zkManager.getAcl(),CreateMode.PERSISTENT);
}
}
public void initialRunningInfo4Static(String baseTaskType, String ownSign,String uuid)
throws Exception {
String taskType = ScheduleUtil.getTaskTypeByBaseAndOwnSign(baseTaskType, ownSign);
//清除所有的老信息,只有leader能执行此操作
String zkPath = this.PATH_BaseTaskType+"/"+ baseTaskType +"/" + taskType+"/" + this.PATH_TaskItem;
try {
ZKTools.deleteTree(this.getZooKeeper(),zkPath);
} catch (Exception e) {
//需要处理zookeeper session过期异常
if (e instanceof KeeperException
&& ((KeeperException) e).code().intValue() == KeeperException.Code.SESSIONEXPIRED.intValue()) {
log.warn("delete : zookeeper session已经过期,需要重新连接zookeeper");
zkManager.reConnection();
ZKTools.deleteTree(this.getZooKeeper(),zkPath);
}
}
//创建目录
this.getZooKeeper().create(zkPath,null, this.zkManager.getAcl(),CreateMode.PERSISTENT);
//创建静态任务
this.createScheduleTaskItem(baseTaskType, ownSign,this.loadTaskTypeBaseInfo(baseTaskType).getTaskItems());
//标记信息初始化成功
setInitialRunningInfoSucuss(baseTaskType,taskType,uuid);
}
public void setInitialRunningInfoSucuss(String baseTaskType, String taskType,String uuid) throws Exception{
String zkPath = this.PATH_BaseTaskType+"/"+ baseTaskType +"/" + taskType+"/" + this.PATH_TaskItem;
this.getZooKeeper().setData(zkPath, uuid.getBytes(),-1);
}
public boolean isInitialRunningInfoSucuss(String baseTaskType, String ownSign) throws Exception{
String taskType = ScheduleUtil.getTaskTypeByBaseAndOwnSign(baseTaskType, ownSign);
String leader = this.getLeader(this.loadScheduleServerNames(taskType));
String zkPath = this.PATH_BaseTaskType+"/"+ baseTaskType +"/" + taskType+"/"+ this.PATH_TaskItem;
if(this.getZooKeeper().exists(zkPath, false) != null){
byte[] curContent = this.getZooKeeper().getData(zkPath,false,null);
if(curContent != null && new String(curContent).equals(leader)){
return true;
}
}
return false;
}
public long updateReloadTaskItemFlag(String taskType) throws Exception{
String baseTaskType = ScheduleUtil.splitBaseTaskTypeFromTaskType(taskType);
String zkPath = this.PATH_BaseTaskType + "/" + baseTaskType
+ "/" + taskType + "/" + this.PATH_Server;
Stat stat = this.getZooKeeper().setData(zkPath,"reload=true".getBytes(),-1);
return stat.getVersion();
}
public Map<String ,Stat> getCurrentServerStatList(String taskType) throws Exception{
Map<String ,Stat> statMap=new HashMap<String ,Stat>();
String baseTaskType = ScheduleUtil.splitBaseTaskTypeFromTaskType(taskType);
String zkPath = this.PATH_BaseTaskType + "/" + baseTaskType
+ "/" + taskType + "/" + this.PATH_Server;
List<String> childs=this.getZooKeeper().getChildren(zkPath, false);
for(String serv :childs){
String singleServ = zkPath + "/" + serv;
Stat servStat= this.getZooKeeper().exists(singleServ, false);
statMap.put(serv,servStat);
}
return statMap;
}
public long getReloadTaskItemFlag(String taskType) throws Exception{
String baseTaskType = ScheduleUtil.splitBaseTaskTypeFromTaskType(taskType);
String zkPath = this.PATH_BaseTaskType + "/" + baseTaskType
+ "/" + taskType + "/" + this.PATH_Server;
Stat stat = new Stat();
this.getZooKeeper().getData(zkPath, false, stat);
return stat.getVersion();
}
/**
* 根据基础配置里面的任务项来创建各个域里面的任务项
* @param baseTaskType
* @param ownSign
* @param baseTaskItems
* @throws Exception
*/
public void createScheduleTaskItem(String baseTaskType, String ownSign,String[] baseTaskItems) throws Exception {
ScheduleTaskItem[] taskItems = new ScheduleTaskItem[baseTaskItems.length];
Pattern p = Pattern.compile("\\s*:\\s*\\{");
for (int i=0;i<baseTaskItems.length;i++){
taskItems[i] = new ScheduleTaskItem();
taskItems[i].setBaseTaskType(baseTaskType);
taskItems[i].setTaskType(ScheduleUtil.getTaskTypeByBaseAndOwnSign(baseTaskType, ownSign));
taskItems[i].setOwnSign(ownSign);
Matcher matcher = p.matcher(baseTaskItems[i]);
if(matcher.find()){
taskItems[i].setTaskItem(baseTaskItems[i].substring(0,matcher.start()).trim());
taskItems[i].setDealParameter(baseTaskItems[i].substring(matcher.end(),baseTaskItems[i].length()-1).trim());
}else{
taskItems[i].setTaskItem(baseTaskItems[i]);
}
taskItems[i].setSts(ScheduleTaskItem.TaskItemSts.ACTIVTE);
}
createScheduleTaskItem(taskItems);
}
/**
* 创建任务项,注意其中的 CurrentSever和RequestServer不会起作用
* @param taskItems
* @throws Exception
*/
public void createScheduleTaskItem(ScheduleTaskItem[] taskItems) throws Exception {
for (ScheduleTaskItem taskItem : taskItems){
String zkPath = this.PATH_BaseTaskType + "/" + taskItem.getBaseTaskType() + "/" + taskItem.getTaskType() +"/" + this.PATH_TaskItem;
if(this.getZooKeeper().exists(zkPath, false)== null){
ZKTools.createPath(this.getZooKeeper(), zkPath, CreateMode.PERSISTENT, this.zkManager.getAcl());
}
String zkTaskItemPath = zkPath + "/" + taskItem.getTaskItem();
this.getZooKeeper().create(zkTaskItemPath,null, this.zkManager.getAcl(),CreateMode.PERSISTENT);
this.getZooKeeper().create(zkTaskItemPath + "/cur_server",null, this.zkManager.getAcl(),CreateMode.PERSISTENT);
this.getZooKeeper().create(zkTaskItemPath + "/req_server",null, this.zkManager.getAcl(),CreateMode.PERSISTENT);
this.getZooKeeper().create(zkTaskItemPath + "/sts",taskItem.getSts().toString().getBytes(), this.zkManager.getAcl(),CreateMode.PERSISTENT);
this.getZooKeeper().create(zkTaskItemPath + "/parameter",taskItem.getDealParameter().getBytes(), this.zkManager.getAcl(),CreateMode.PERSISTENT);
this.getZooKeeper().create(zkTaskItemPath + "/deal_desc",taskItem.getDealDesc().getBytes(), this.zkManager.getAcl(),CreateMode.PERSISTENT);
}
}
public void updateScheduleTaskItemStatus(String taskType,String taskItem,ScheduleTaskItem.TaskItemSts sts,String message) throws Exception{
String baseTaskType = ScheduleUtil.splitBaseTaskTypeFromTaskType(taskType);
String zkPath = this.PATH_BaseTaskType + "/" + baseTaskType + "/" + taskType +"/" + this.PATH_TaskItem +"/" + taskItem;
if(this.getZooKeeper().exists(zkPath +"/sts", false)== null){
this.getZooKeeper().setData(zkPath +"/sts", sts.toString().getBytes(), -1);
}
if(this.getZooKeeper().exists(zkPath +"/deal_desc", false)== null){
if(message == null){
message = "";
}
this.getZooKeeper().setData(zkPath +"/deal_desc",message.getBytes(), -1);
}
}
/**
* 删除任务项
* @param taskType
* @param taskItem
* @throws Exception
*/
public void deleteScheduleTaskItem(String taskType,String taskItem) throws Exception{
String baseTaskType = ScheduleUtil.splitBaseTaskTypeFromTaskType(taskType);
String zkPath = this.PATH_BaseTaskType + "/" + baseTaskType + "/" + taskType +"/" + this.PATH_TaskItem +"/" + taskItem;
ZKTools.deleteTree(this.getZooKeeper(), zkPath);
}
public List<ScheduleTaskItem> loadAllTaskItem(String taskType) throws Exception {
List<ScheduleTaskItem> result = new ArrayList<ScheduleTaskItem>();
String baseTaskType = ScheduleUtil.splitBaseTaskTypeFromTaskType(taskType);
String zkPath = this.PATH_BaseTaskType+"/" + baseTaskType +"/" + taskType + "/" + this.PATH_TaskItem;
if(this.getZooKeeper().exists(zkPath, false)==null){
return result;
}
List<String> taskItems = this.getZooKeeper().getChildren(zkPath, false);
// Collections.sort(taskItems);
// 20150323 有些任务分片,业务方其实是用数字的字符串排序的。优先以数字进行排序,否则以字符串排序
Collections.sort(taskItems,new Comparator<String>(){
public int compare(String u1, String u2) {
if(StringUtils.isNumeric(u1) && StringUtils.isNumeric(u2)){
int iU1= Integer.parseInt(u1);
int iU2= Integer.parseInt(u2);
if(iU1==iU2){
return 0 ;
}else if(iU1>iU2){
return 1 ;
}else{
return -1;
}
}else{
return u1.compareTo(u2);
}
}
});
for(String taskItem:taskItems){
ScheduleTaskItem info = new ScheduleTaskItem();
info.setTaskType(taskType);
info.setTaskItem(taskItem);
String zkTaskItemPath = zkPath + "/" + taskItem;
byte[] curContent = this.getZooKeeper().getData(zkTaskItemPath+"/cur_server",false,null);
if(curContent != null){
info.setCurrentScheduleServer(new String(curContent));
}
byte[] reqContent = this.getZooKeeper().getData(zkTaskItemPath+"/req_server",false,null);
if(reqContent != null){
info.setRequestScheduleServer(new String(reqContent));
}
byte[] stsContent = this.getZooKeeper().getData(zkTaskItemPath+"/sts",false,null);
if(stsContent != null){
info.setSts(ScheduleTaskItem.TaskItemSts.valueOf(new String(stsContent)));
}
byte[] parameterContent = this.getZooKeeper().getData(zkTaskItemPath+"/parameter",false,null);
if(parameterContent != null){
info.setDealParameter(new String(parameterContent));
}
byte[] dealDescContent = this.getZooKeeper().getData(zkTaskItemPath+"/deal_desc",false,null);
if(dealDescContent != null){
info.setDealDesc(new String(dealDescContent));
}
result.add(info);
}
return result;
}
public ScheduleTaskType loadTaskTypeBaseInfo(String baseTaskType)
throws Exception {
String zkPath = this.PATH_BaseTaskType + "/" + baseTaskType;
if(this.getZooKeeper().exists(zkPath, false) == null){
return null;
}
String valueString= new String(this.getZooKeeper().getData(zkPath,false,null));
ScheduleTaskType result = (ScheduleTaskType)this.gson.fromJson(valueString, ScheduleTaskType.class);
return result;
}
@Override
public List<ScheduleTaskType> getAllTaskTypeBaseInfo() throws Exception {
String zkPath = this.PATH_BaseTaskType;
List<ScheduleTaskType> result = new ArrayList<ScheduleTaskType>();
List<String> names = this.getZooKeeper().getChildren(zkPath,false);
Collections.sort(names);
for(String name:names){
result.add(this.loadTaskTypeBaseInfo(name));
}
return result;
}
@Override
public void clearTaskType(String baseTaskType) throws Exception {
//清除所有的Runtime TaskType
String zkPath =this.PATH_BaseTaskType+"/" + baseTaskType;
List<String> list = this.getZooKeeper().getChildren(zkPath,false);
for (String name : list) {
ZKTools.deleteTree(this.getZooKeeper(),zkPath + "/" + name);
}
}
@Override
public List<ScheduleTaskTypeRunningInfo> getAllTaskTypeRunningInfo(
String baseTaskType) throws Exception {
List<ScheduleTaskTypeRunningInfo> result = new ArrayList<ScheduleTaskTypeRunningInfo>();
String zkPath =this.PATH_BaseTaskType+"/" + baseTaskType;
if(this.getZooKeeper().exists(zkPath, false)==null){
return result;
}
List<String> list = this.getZooKeeper().getChildren(zkPath,false);
Collections.sort(list);
for(String name:list){
ScheduleTaskTypeRunningInfo info = new ScheduleTaskTypeRunningInfo();
info.setBaseTaskType(baseTaskType);
info.setTaskType(name);
info.setOwnSign(ScheduleUtil.splitOwnsignFromTaskType(name));
result.add(info);
}
return result;
}
@Override
public void deleteTaskType(String baseTaskType) throws Exception {
ZKTools.deleteTree(this.getZooKeeper(),this.PATH_BaseTaskType + "/" + baseTaskType);
}
@Override
public List<ScheduleServer> selectScheduleServer(String baseTaskType,
String ownSign, String ip, String orderStr) throws Exception {
List<String> names = new ArrayList<String>();
if(baseTaskType != null && ownSign != null){
names.add(baseTaskType +"$"+ ownSign) ;
}else if(baseTaskType != null && ownSign == null){
if(this.getZooKeeper().exists(this.PATH_BaseTaskType+"/" + baseTaskType,false) != null){
for(String name:this.getZooKeeper().getChildren(this.PATH_BaseTaskType+"/" + baseTaskType,false)){
names.add(name);
}
}
}else if(baseTaskType == null){
for(String name:this.getZooKeeper().getChildren(this.PATH_BaseTaskType,false)){
if(ownSign != null){
names.add(name + "$" + ownSign);
}else{
for(String str:this.getZooKeeper().getChildren(this.PATH_BaseTaskType+"/" + name,false)){
names.add(str);
}
}
}
}
List<ScheduleServer> result= new ArrayList<ScheduleServer>();
for(String name:names){
List<ScheduleServer> tempList = this.selectAllValidScheduleServer(name);
if(ip == null){
result.addAll(tempList);
}else{
for(ScheduleServer server:tempList){
if(ip.equals(server.getIp())){
result.add(server);
}
}
}
}
Collections.sort(result,new ScheduleServerComparator(orderStr));
//排序
return result;
}
@Override
public List<ScheduleServer> selectHistoryScheduleServer(
String baseTaskType, String ownSign, String ip, String orderStr)
throws Exception {
throw new Exception("没有实现的方法");
}
@Override
public List<TaskItemDefine> reloadDealTaskItem(String taskType, String uuid)
throws Exception {
String baseTaskType = ScheduleUtil.splitBaseTaskTypeFromTaskType(taskType);
String zkPath = this.PATH_BaseTaskType + "/" + baseTaskType + "/" + taskType + "/" + this.PATH_TaskItem;
List<String> taskItems = this.getZooKeeper().getChildren(zkPath, false);
// Collections.sort(taskItems);
// 有些任务分片,业务方其实是用数字的字符串排序的。优先以字符串方式进行排序
Collections.sort(taskItems,new Comparator<String>(){
public int compare(String u1, String u2) {
if(StringUtils.isNumeric(u1) && StringUtils.isNumeric(u2)){
int iU1= Integer.parseInt(u1);
int iU2= Integer.parseInt(u2);
if(iU1==iU2){
return 0 ;
}else if(iU1>iU2){
return 1 ;
}else{
return -1;
}
}else{
return u1.compareTo(u2);
}
}
});
log.debug(taskType+ " current uid="+uuid+" , zk reloadDealTaskItem");
List<TaskItemDefine> result = new ArrayList<TaskItemDefine>();
for(String name:taskItems){
byte[] value = this.getZooKeeper().getData(zkPath + "/" + name + "/cur_server",false,null);
if(value != null && uuid.equals(new String(value))){
TaskItemDefine item = new TaskItemDefine();
item.setTaskItemId(name);
byte[] parameterValue = this.getZooKeeper().getData(zkPath + "/" + name + "/parameter",false,null);
if(parameterValue != null){
item.setParameter(new String(parameterValue));
}
result.add(item);
}else if(value != null && uuid.equals(new String(value))==false){
log.trace(" current uid="+uuid+" , zk cur_server uid="+new String(value));
}else {
log.trace(" current uid="+uuid);
}
}
return result;
}
@Override
public void releaseDealTaskItem(String taskType, String uuid) throws Exception {
String baseTaskType = ScheduleUtil.splitBaseTaskTypeFromTaskType(taskType);
String zkPath = this.PATH_BaseTaskType + "/" + baseTaskType + "/" + taskType + "/" + this.PATH_TaskItem;
boolean isModify = false;
for(String name:this.getZooKeeper().getChildren(zkPath, false)){
byte[] curServerValue = this.getZooKeeper().getData(zkPath + "/" + name + "/cur_server",false,null);
byte[] reqServerValue = this.getZooKeeper().getData(zkPath + "/" + name + "/req_server",false,null);
if(reqServerValue != null && curServerValue != null && uuid.equals(new String(curServerValue))==true){
this.getZooKeeper().setData(zkPath + "/" + name + "/cur_server",reqServerValue,-1);
this.getZooKeeper().setData(zkPath + "/" + name + "/req_server",null,-1);
isModify = true;
}
}
if(isModify == true){ //设置需要所有的服务器重新装载任务
this.updateReloadTaskItemFlag(taskType);
}
}
@Override
public int queryTaskItemCount(String taskType) throws Exception {
String baseTaskType = ScheduleUtil.splitBaseTaskTypeFromTaskType(taskType);
String zkPath = this.PATH_BaseTaskType + "/" + baseTaskType + "/" + taskType + "/" + this.PATH_TaskItem;
return this.getZooKeeper().getChildren(zkPath, false).size();
}
public void clearExpireTaskTypeRunningInfo(String baseTaskType,String serverUUID, double expireDateInternal) throws Exception {
for (String name : this.getZooKeeper().getChildren(this.PATH_BaseTaskType + "/" + baseTaskType, false)) {
String zkPath = this.PATH_BaseTaskType+"/"+ baseTaskType +"/" + name +"/" + this.PATH_TaskItem;
Stat stat = this.getZooKeeper().exists(zkPath, false);
if (stat == null || getSystemTime() - stat.getMtime() > (long) (expireDateInternal * 24 * 3600 * 1000)) {
ZKTools.deleteTree(this.getZooKeeper(),this.PATH_BaseTaskType +"/" + baseTaskType + "/" + name);
}
}
}
@Override
public int clearExpireScheduleServer(String taskType,long expireTime) throws Exception {
int result =0;
String baseTaskType = ScheduleUtil.splitBaseTaskTypeFromTaskType(taskType);
String zkPath = this.PATH_BaseTaskType + "/" + baseTaskType
+ "/" + taskType + "/" + this.PATH_Server;
if(this.getZooKeeper().exists(zkPath,false)== null){
String tempPath =this.PATH_BaseTaskType + "/" + baseTaskType + "/" + taskType;
if(this.getZooKeeper().exists(tempPath,false)== null){
this.getZooKeeper().create(tempPath, null, this.zkManager.getAcl(), CreateMode.PERSISTENT);
}
this.getZooKeeper().create(zkPath, null, this.zkManager.getAcl(), CreateMode.PERSISTENT);
}
for (String name : this.getZooKeeper().getChildren(zkPath, false)) {
try {
Stat stat = this.getZooKeeper().exists(zkPath + "/" + name,false);
if (getSystemTime() - stat.getMtime() > expireTime) {
ZKTools.deleteTree(this.getZooKeeper(), zkPath + "/" + name);
result++;
}
} catch (Exception e) {
// 当有多台服务器时,存在并发清理的可能,忽略异常
result++;
}
}
return result;
}
@Override
public int clearTaskItem(String taskType,
List<String> serverList) throws Exception {
String baseTaskType = ScheduleUtil.splitBaseTaskTypeFromTaskType(taskType);
String zkPath = this.PATH_BaseTaskType + "/" + baseTaskType + "/" + taskType + "/" + this.PATH_TaskItem;
int result =0;
for(String name:this.getZooKeeper().getChildren(zkPath, false)){
byte[] curServerValue = this.getZooKeeper().getData(zkPath + "/" + name + "/cur_server",false,null);
if(curServerValue != null){
String curServer = new String(curServerValue);
boolean isFind = false;
for(String server : serverList){
if(curServer.equals(server)){
isFind = true;
break;
}
}
if(isFind == false){
this.getZooKeeper().setData(zkPath + "/" + name + "/cur_server",null,-1);
result = result + 1;
}
}else{
result = result + 1;
}
}
return result;
}
public List<String> loadScheduleServerNames(String taskType)throws Exception{
String baseTaskType = ScheduleUtil.splitBaseTaskTypeFromTaskType(taskType);
String zkPath = this.PATH_BaseTaskType + "/" + baseTaskType + "/" + taskType + "/" + this.PATH_Server;
if(this.getZooKeeper().exists(zkPath, false)== null){
return new ArrayList<String>();
}
List<String> serverList = this.getZooKeeper().getChildren(zkPath, false);
Collections.sort(serverList,new Comparator<String>(){
public int compare(String u1, String u2) {
return u1.substring(u1.lastIndexOf("$") + 1).compareTo(
u2.substring(u2.lastIndexOf("$") + 1));
}
});
return serverList;
}
@Override
public List<ScheduleServer> selectAllValidScheduleServer(String taskType)
throws Exception {
List<ScheduleServer> result = new ArrayList<ScheduleServer>();
String baseTaskType = ScheduleUtil.splitBaseTaskTypeFromTaskType(taskType);
String zkPath = this.PATH_BaseTaskType + "/" + baseTaskType + "/" + taskType + "/" + this.PATH_Server;
if(this.getZooKeeper().exists(zkPath, false)== null){
return result;
}
List<String> serverList = this.getZooKeeper().getChildren(zkPath, false);
Collections.sort(serverList,new Comparator<String>(){
public int compare(String u1, String u2) {
return u1.substring(u1.lastIndexOf("$") + 1).compareTo(
u2.substring(u2.lastIndexOf("$") + 1));
}
});
for(String name:serverList){
try{
String valueString= new String(this.getZooKeeper().getData(zkPath + "/"+ name,false,null));
ScheduleServer server = (ScheduleServer)this.gson.fromJson(valueString,ScheduleServer.class);
server.setCenterServerTime(new Timestamp(this.getSystemTime()));
result.add(server);
}catch(Exception e){
log.debug(e.getMessage(), e);
}
}
return result;
}
public List<ScheduleServer> selectScheduleServerByManagerFactoryUUID(String factoryUUID)
throws Exception {
List<ScheduleServer> result = new ArrayList<ScheduleServer>();
for(String baseTaskType: this.getZooKeeper().getChildren(this.PATH_BaseTaskType,false)){
for(String taskType: this.getZooKeeper().getChildren(this.PATH_BaseTaskType+"/"+baseTaskType,false)){
String zkPath = this.PATH_BaseTaskType+"/"+baseTaskType+"/"+taskType+"/"+this.PATH_Server;
for(String uuid: this.getZooKeeper().getChildren(zkPath,false)){
String valueString= new String(this.getZooKeeper().getData(zkPath + "/"+ uuid,false,null));
ScheduleServer server = (ScheduleServer)this.gson.fromJson(valueString,ScheduleServer.class);
server.setCenterServerTime(new Timestamp(this.getSystemTime()));
if (server.getManagerFactoryUUID().equals(factoryUUID)) {
result.add(server);
}
}
}
}
Collections.sort(result,new Comparator<ScheduleServer>(){
public int compare(ScheduleServer u1, ScheduleServer u2) {
int result = u1.getTaskType().compareTo(u2.getTaskType());
if(result == 0){
String s1 = u1.getUuid();
String s2 = u2.getUuid();
result = s1.substring(s1.lastIndexOf("$") + 1).compareTo(
s2.substring(s2.lastIndexOf("$") + 1));
}
return result;
}
});
return result;
}
public String getLeader(List<String> serverList){
if(serverList == null || serverList.size() ==0){
return "";
}
long no = Long.MAX_VALUE;
long tmpNo = -1;
String leader = null;
for(String server:serverList){
tmpNo =Long.parseLong( server.substring(server.lastIndexOf("$")+1));
if(no > tmpNo){
no = tmpNo;
leader = server;
}
}
return leader;
}
public boolean isLeader(String uuid,List<String> serverList){
return uuid.equals(getLeader(serverList));
}
@Override
public void assignTaskItem(String taskType, String currentUuid,int maxNumOfOneServer,
List<String> taskServerList) throws Exception {
if(this.isLeader(currentUuid,taskServerList)==false){
if(log.isDebugEnabled()){
log.debug(currentUuid +":不是负责任务分配的Leader,直接返回");
}
return;
}
if(log.isDebugEnabled()){
log.debug(currentUuid +":开始重新分配任务......");
}
if(taskServerList.size()<=0){
//在服务器动态调整的时候,可能出现服务器列表为空的清空
return;
}
String baseTaskType = ScheduleUtil.splitBaseTaskTypeFromTaskType(taskType);
String zkPath = this.PATH_BaseTaskType + "/" + baseTaskType + "/" + taskType + "/" + this.PATH_TaskItem;
List<String> children = this.getZooKeeper().getChildren(zkPath, false);
// Collections.sort(children);
// 20150323 有些任务分片,业务方其实是用数字的字符串排序的。优先以数字进行排序,否则以字符串排序
Collections.sort(children,new Comparator<String>(){
public int compare(String u1, String u2) {
if(StringUtils.isNumeric(u1) && StringUtils.isNumeric(u2)){
int iU1= Integer.parseInt(u1);
int iU2= Integer.parseInt(u2);
if(iU1==iU2){
return 0 ;
}else if(iU1>iU2){
return 1 ;
}else{
return -1;
}
}else{
return u1.compareTo(u2);
}
}
});
int unModifyCount =0;
int[] taskNums = ScheduleUtil.assignTaskNumber(taskServerList.size(), children.size(), maxNumOfOneServer);
int point =0;
int count = 0;
String NO_SERVER_DEAL = "没有分配到服务器";
for(int i=0;i <children.size();i++){
String name = children.get(i);
if(point <taskServerList.size() && i >= count + taskNums[point]){
count = count + taskNums[point];
point = point + 1;
}
String serverName = NO_SERVER_DEAL;
if(point < taskServerList.size() ){
serverName = taskServerList.get(point);
}
byte[] curServerValue = this.getZooKeeper().getData(zkPath + "/" + name + "/cur_server",false,null);
byte[] reqServerValue = this.getZooKeeper().getData(zkPath + "/" + name + "/req_server",false,null);
if(curServerValue == null || new String(curServerValue).equals(NO_SERVER_DEAL)){
this.getZooKeeper().setData(zkPath + "/" + name + "/cur_server",serverName.getBytes(),-1);
this.getZooKeeper().setData(zkPath + "/" + name + "/req_server",null,-1);
}else if(new String(curServerValue).equals(serverName)==true && reqServerValue == null ){
//不需要做任何事情
unModifyCount = unModifyCount + 1;
}else{
this.getZooKeeper().setData(zkPath + "/" + name + "/req_server",serverName.getBytes(),-1);
}
}
if(unModifyCount < children.size()){ //设置需要所有的服务器重新装载任务
log.info("设置需要所有的服务器重新装载任务:updateReloadTaskItemFlag......"+taskType+ " ,currentUuid "+currentUuid );
this.updateReloadTaskItemFlag(taskType);
}
if(log.isDebugEnabled()){
StringBuffer buffer = new StringBuffer();
for(ScheduleTaskItem taskItem: this.loadAllTaskItem(taskType)){
buffer.append("\n").append(taskItem.toString());
}
log.debug(buffer.toString());
}
}
public void assignTaskItem22(String taskType, String currentUuid,
List<String> serverList) throws Exception {
if(this.isLeader(currentUuid,serverList)==false){
if(log.isDebugEnabled()){
log.debug(currentUuid +":不是负责任务分配的Leader,直接返回");
}
return;
}
if(log.isDebugEnabled()){
log.debug(currentUuid +":开始重新分配任务......");
}
if(serverList.size()<=0){
//在服务器动态调整的时候,可能出现服务器列表为空的清空
return;
}
String baseTaskType = ScheduleUtil.splitBaseTaskTypeFromTaskType(taskType);
String zkPath = this.PATH_BaseTaskType + "/" + baseTaskType + "/" + taskType + "/" + this.PATH_TaskItem;
int point =0;
List<String> children = this.getZooKeeper().getChildren(zkPath, false);
// Collections.sort(children);
// 20150323 有些任务分片,业务方其实是用数字的字符串排序的。优先以数字进行排序,否则以字符串排序
Collections.sort(children,new Comparator<String>(){
public int compare(String u1, String u2) {
if(StringUtils.isNumeric(u1) && StringUtils.isNumeric(u2)){
int iU1= Integer.parseInt(u1);
int iU2= Integer.parseInt(u2);
if(iU1==iU2){
return 0 ;
}else if(iU1>iU2){
return 1 ;
}else{
return -1;
}
}else{
return u1.compareTo(u2);
}
}
});
int unModifyCount =0;
for(String name:children){
byte[] curServerValue = this.getZooKeeper().getData(zkPath + "/" + name + "/cur_server",false,null);
byte[] reqServerValue = this.getZooKeeper().getData(zkPath + "/" + name + "/req_server",false,null);
if(curServerValue == null){
this.getZooKeeper().setData(zkPath + "/" + name + "/cur_server",serverList.get(point).getBytes(),-1);
this.getZooKeeper().setData(zkPath + "/" + name + "/req_server",null,-1);
}else if(new String(curServerValue).equals(serverList.get(point))==true && reqServerValue == null ){
//不需要做任何事情
unModifyCount = unModifyCount + 1;
}else{
this.getZooKeeper().setData(zkPath + "/" + name + "/req_server",serverList.get(point).getBytes(),-1);
}
point = (point + 1) % serverList.size();
}
if(unModifyCount < children.size()){ //设置需要所有的服务器重新装载任务
this.updateReloadTaskItemFlag(taskType);
}
if(log.isDebugEnabled()){
StringBuffer buffer = new StringBuffer();
for(ScheduleTaskItem taskItem: this.loadAllTaskItem(taskType)){
buffer.append("\n").append(taskItem.toString());
}
log.debug(buffer.toString());
}
}
public void registerScheduleServer(ScheduleServer server) throws Exception {
if(server.isRegister() == true){
throw new Exception(server.getUuid() + " 被重复注册");
}
String zkPath = this.PATH_BaseTaskType + "/" + server.getBaseTaskType() +"/" + server.getTaskType();
if (this.getZooKeeper().exists(zkPath, false) == null) {
this.getZooKeeper().create(zkPath, null, this.zkManager.getAcl(),CreateMode.PERSISTENT);
}
zkPath = zkPath +"/" + this.PATH_Server;
if (this.getZooKeeper().exists(zkPath, false) == null) {
this.getZooKeeper().create(zkPath, null, this.zkManager.getAcl(),CreateMode.PERSISTENT);
}
String realPath = null;
//此处必须增加UUID作为唯一性保障
String zkServerPath = zkPath + "/" + server.getTaskType() + "$"+ server.getIp() + "$"
+ (UUID.randomUUID().toString().replaceAll("-", "").toUpperCase())+"$";
realPath = this.getZooKeeper().create(zkServerPath, null, this.zkManager.getAcl(),CreateMode.PERSISTENT_SEQUENTIAL);
server.setUuid(realPath.substring(realPath.lastIndexOf("/") + 1));
Timestamp heartBeatTime = new Timestamp(this.getSystemTime());
server.setHeartBeatTime(heartBeatTime);
String valueString = this.gson.toJson(server);
this.getZooKeeper().setData(realPath,valueString.getBytes(),-1);
server.setRegister(true);
}
public boolean refreshScheduleServer(ScheduleServer server) throws Exception {
Timestamp heartBeatTime = new Timestamp(this.getSystemTime());
String zkPath = this.PATH_BaseTaskType + "/" + server.getBaseTaskType() + "/" + server.getTaskType()
+ "/" + this.PATH_Server +"/" + server.getUuid();
if(this.getZooKeeper().exists(zkPath, false)== null){
//数据可能被清除,先清除内存数据后,重新注册数据
server.setRegister(false);
return false;
}else{
Timestamp oldHeartBeatTime = server.getHeartBeatTime();
server.setHeartBeatTime(heartBeatTime);
server.setVersion(server.getVersion() + 1);
String valueString = this.gson.toJson(server);
try{
this.getZooKeeper().setData(zkPath,valueString.getBytes(),-1);
}catch(Exception e){
//恢复上次的心跳时间
server.setHeartBeatTime(oldHeartBeatTime);
server.setVersion(server.getVersion() - 1);
throw e;
}
return true;
}
}
public void unRegisterScheduleServer(String taskType,String serverUUID) throws Exception {
String baseTaskType = ScheduleUtil.splitBaseTaskTypeFromTaskType(taskType);
String zkPath = this.PATH_BaseTaskType + "/" + baseTaskType + "/" + taskType + "/" + this.PATH_Server + "/"+ serverUUID;
if(this.getZooKeeper().exists(zkPath, false) != null){
this.getZooKeeper().delete(zkPath, -1);
}
}
@Override
public void pauseAllServer(String baseTaskType) throws Exception {
ScheduleTaskType taskType = this.loadTaskTypeBaseInfo(baseTaskType);
taskType.setSts(ScheduleTaskType.STS_PAUSE);
this.updateBaseTaskType(taskType);
}
@Override
public void resumeAllServer(String baseTaskType) throws Exception {
ScheduleTaskType taskType = this.loadTaskTypeBaseInfo(baseTaskType);
taskType.setSts(ScheduleTaskType.STS_RESUME);
this.updateBaseTaskType(taskType);
}
public long getSystemTime(){
return this.zkBaseTime + ( System.currentTimeMillis() - this.loclaBaseTime);
}
}
class ScheduleServerComparator implements Comparator<ScheduleServer>{
String[] orderFields;
public ScheduleServerComparator(String aOrderStr){
if(aOrderStr != null){
orderFields = aOrderStr.toUpperCase().split(",");
}else{
orderFields = "TASK_TYPE,OWN_SIGN,REGISTER_TIME,HEARTBEAT_TIME,IP".toUpperCase().split(",");
}
}
public int compareObject(String o1,String o2){
if(o1==null && o2 == null){
return 0;
}else if(o1 != null){
return o1.compareTo(o2);
}else {
return -1;
}
}
public int compareObject(Timestamp o1,Timestamp o2){
if(o1==null && o2 == null){
return 0;
}else if(o1 != null){
return o1.compareTo(o2);
}else {
return -1;
}
}
public int compare(ScheduleServer o1, ScheduleServer o2) {
int result = 0;
for(String name : orderFields){
if(name.equals("TASK_TYPE")){
result =compareObject( o1.getTaskType(),o2.getTaskType());
if(result != 0){
return result;
}
}else if(name.equals("OWN_SIGN")){
result = compareObject(o1.getOwnSign(),o2.getOwnSign());
if(result != 0){
return result;
}
}else if(name.equals("REGISTER_TIME")){
result = compareObject(o1.getRegisterTime(),o2.getRegisterTime());
if(result != 0){
return result;
}
}else if(name.equals("HEARTBEAT_TIME")){
result =compareObject( o1.getHeartBeatTime(),o2.getHeartBeatTime());
if(result != 0){
return result;
}
}else if(name.equals("IP")){
result = compareObject(o1.getIp(),o2.getIp());
if(result != 0){
return result;
}
}else if(name.equals("MANAGER_FACTORY")){
result = compareObject(o1.getManagerFactoryUUID(),o2.getManagerFactoryUUID());
if(result != 0){
return result;
}
}
}
return result;
}
}
class TimestampTypeAdapter implements JsonSerializer<Timestamp>, JsonDeserializer<Timestamp>{
public JsonElement serialize(Timestamp src, Type arg1, JsonSerializationContext arg2) {
DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String dateFormatAsString = format.format(new Date(src.getTime()));
return new JsonPrimitive(dateFormatAsString);
}
public Timestamp deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException {
if (!(json instanceof JsonPrimitive)) {
throw new JsonParseException("The date should be a string value");
}
try {
DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = (Date) format.parse(json.getAsString());
return new Timestamp(date.getTime());
} catch (Exception e) {
throw new JsonParseException(e);
}
}
}