ScheduleStrategyDataManager4ZK.java
16.6 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
package com.taobao.pamirs.schedule.zk;
import java.io.Writer;
import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
import java.util.UUID;
import org.apache.commons.lang.StringUtils;
import org.apache.zookeeper.CreateMode;
import org.apache.zookeeper.KeeperException;
import org.apache.zookeeper.ZooKeeper;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.taobao.pamirs.schedule.strategy.ManagerFactoryInfo;
import com.taobao.pamirs.schedule.strategy.ScheduleStrategy;
import com.taobao.pamirs.schedule.strategy.ScheduleStrategyRunntime;
import com.taobao.pamirs.schedule.strategy.TBScheduleManagerFactory;
public class ScheduleStrategyDataManager4ZK{
private ZKManager zkManager;
private String PATH_Strategy;
private String PATH_ManagerFactory;
private Gson gson ;
//在Spring对象创建完毕后,创建内部对象
public ScheduleStrategyDataManager4ZK(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_Strategy = this.zkManager.getRootPath() + "/strategy";
this.PATH_ManagerFactory = this.zkManager.getRootPath() + "/factory";
if (this.getZooKeeper().exists(this.PATH_Strategy, false) == null) {
ZKTools.createPath(getZooKeeper(),this.PATH_Strategy, CreateMode.PERSISTENT, this.zkManager.getAcl());
}
if (this.getZooKeeper().exists(this.PATH_ManagerFactory, false) == null) {
ZKTools.createPath(getZooKeeper(),this.PATH_ManagerFactory, CreateMode.PERSISTENT, this.zkManager.getAcl());
}
}
public ScheduleStrategy loadStrategy(String strategyName)
throws Exception {
String zkPath = this.PATH_Strategy + "/" + strategyName;
if(this.getZooKeeper().exists(zkPath, false) == null){
return null;
}
String valueString= new String(this.getZooKeeper().getData(zkPath,false,null));
ScheduleStrategy result = (ScheduleStrategy)this.gson.fromJson(valueString, ScheduleStrategy.class);
return result;
}
public void createScheduleStrategy(ScheduleStrategy scheduleStrategy) throws Exception {
String zkPath = this.PATH_Strategy + "/"+ scheduleStrategy.getStrategyName();
String valueString = this.gson.toJson(scheduleStrategy);
if ( this.getZooKeeper().exists(zkPath, false) == null) {
this.getZooKeeper().create(zkPath, valueString.getBytes(), this.zkManager.getAcl(),CreateMode.PERSISTENT);
} else {
throw new Exception("调度策略" + scheduleStrategy.getStrategyName() + "已经存在,如果确认需要重建,请先调用deleteMachineStrategy(String taskType)删除");
}
}
public void updateScheduleStrategy(ScheduleStrategy scheduleStrategy)
throws Exception {
String zkPath = this.PATH_Strategy + "/" + scheduleStrategy.getStrategyName();
String valueString = this.gson.toJson(scheduleStrategy);
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 deleteMachineStrategy(String taskType) throws Exception {
deleteMachineStrategy(taskType,false);
}
public void pause(String strategyName) throws Exception{
ScheduleStrategy strategy = this.loadStrategy(strategyName);
strategy.setSts(ScheduleStrategy.STS_PAUSE);
this.updateScheduleStrategy(strategy);
}
public void resume(String strategyName) throws Exception{
ScheduleStrategy strategy = this.loadStrategy(strategyName);
strategy.setSts(ScheduleStrategy.STS_RESUME);
this.updateScheduleStrategy(strategy);
}
public void deleteMachineStrategy(String taskType,boolean isForce) throws Exception {
String zkPath = this.PATH_Strategy + "/" + taskType;
if(isForce == false && this.getZooKeeper().getChildren(zkPath,null).size() >0){
throw new Exception("不能删除"+ taskType +"的运行策略,会导致必须重启整个应用才能停止失去控制的调度进程。" +
"可以先清空IP地址,等所有的调度器都停止后再删除调度策略");
}
ZKTools.deleteTree(this.getZooKeeper(),zkPath);
}
public List<ScheduleStrategy> loadAllScheduleStrategy() throws Exception {
String zkPath = this.PATH_Strategy;
List<ScheduleStrategy> result = new ArrayList<ScheduleStrategy>();
List<String> names = this.getZooKeeper().getChildren(zkPath,false);
Collections.sort(names);
for(String name:names){
result.add(this.loadStrategy(name));
}
return result;
}
/**
* 注册ManagerFactory
* @param managerFactory
* @return 需要全部注销的调度,例如当IP不在列表中
* @throws Exception
*/
public List<String> registerManagerFactory(TBScheduleManagerFactory managerFactory) throws Exception{
if(managerFactory.getUuid() == null){
String uuid = managerFactory.getIp() +"$" + managerFactory.getHostName() +"$"+ UUID.randomUUID().toString().replaceAll("-", "").toUpperCase();
String zkPath = this.PATH_ManagerFactory + "/" + uuid +"$";
zkPath = this.getZooKeeper().create(zkPath, null, this.zkManager.getAcl(), CreateMode.EPHEMERAL_SEQUENTIAL);
managerFactory.setUuid(zkPath.substring(zkPath.lastIndexOf("/") + 1));
}else{
String zkPath = this.PATH_ManagerFactory + "/" + managerFactory.getUuid();
if(this.getZooKeeper().exists(zkPath, false)==null){
zkPath = this.getZooKeeper().create(zkPath, null, this.zkManager.getAcl(), CreateMode.EPHEMERAL);
}
}
List<String> result = new ArrayList<String>();
for(ScheduleStrategy scheduleStrategy:loadAllScheduleStrategy()){
boolean isFind = false;
//暂停或者不在IP范围
if(ScheduleStrategy.STS_PAUSE.equalsIgnoreCase(scheduleStrategy.getSts()) == false && scheduleStrategy.getIPList() != null){
for(String ip:scheduleStrategy.getIPList()){
if(ip.equals("127.0.0.1") || ip.equalsIgnoreCase("localhost") || ip.equals(managerFactory.getIp())|| ip.equalsIgnoreCase(managerFactory.getHostName())){
//添加可管理TaskType
String zkPath = this.PATH_Strategy+"/"+ scheduleStrategy.getStrategyName()+ "/"+ managerFactory.getUuid();
if(this.getZooKeeper().exists(zkPath, false)==null){
zkPath = this.getZooKeeper().create(zkPath, null, this.zkManager.getAcl(), CreateMode.EPHEMERAL);
}
isFind = true;
break;
}
}
}
if(isFind == false){//清除原来注册的Factory
String zkPath = this.PATH_Strategy+"/"+ scheduleStrategy.getStrategyName()+ "/"+ managerFactory.getUuid();
if(this.getZooKeeper().exists(zkPath, false)!=null){
ZKTools.deleteTree(this.getZooKeeper(), zkPath);
result.add(scheduleStrategy.getStrategyName());
}
}
}
return result;
}
/**
* 注销服务,停止调度
* @param managerFactory
* @return
* @throws Exception
*/
public void unRregisterManagerFactory(TBScheduleManagerFactory managerFactory) throws Exception{
for(String taskName:this.getZooKeeper().getChildren(this.PATH_Strategy,false)){
String zkPath = this.PATH_Strategy+"/"+taskName+"/" + managerFactory.getUuid();
if(this.getZooKeeper().exists(zkPath, false)!=null){
ZKTools.deleteTree(this.getZooKeeper(), zkPath);
}
}
}
public ScheduleStrategyRunntime loadScheduleStrategyRunntime(String strategyName,String uuid) throws Exception{
String zkPath = this.PATH_Strategy +"/"+strategyName+"/"+uuid;
ScheduleStrategyRunntime result = null;
if(this.getZooKeeper().exists(zkPath, false) !=null){
byte[] value = this.getZooKeeper().getData(zkPath,false,null);
if (value != null) {
String valueString = new String(value);
result = (ScheduleStrategyRunntime) this.gson.fromJson(valueString, ScheduleStrategyRunntime.class);
if(null==result){
throw new Exception("gson 反序列化异常,对象为null");
}
if(null==result.getStrategyName()){
throw new Exception("gson 反序列化异常,策略名字为null");
}
if(null==result.getUuid()){
throw new Exception("gson 反序列化异常,uuid为null");
}
}else{
result = new ScheduleStrategyRunntime();
result.setStrategyName(strategyName);
result.setUuid(uuid);
result.setRequestNum(0);
result.setMessage("");
}
}
return result;
}
/**
* 装载所有的策略运行状态
* @return
* @throws Exception
*/
public List<ScheduleStrategyRunntime> loadAllScheduleStrategyRunntime() throws Exception{
List<ScheduleStrategyRunntime> result = new ArrayList<ScheduleStrategyRunntime>();
String zkPath = this.PATH_Strategy;
for(String taskType: this.getZooKeeper().getChildren(zkPath, false)){
for(String uuid:this.getZooKeeper().getChildren(zkPath+"/"+taskType,false)){
result.add(loadScheduleStrategyRunntime(taskType,uuid));
}
}
return result;
}
public List<ScheduleStrategyRunntime> loadAllScheduleStrategyRunntimeByUUID(String managerFactoryUUID) throws Exception{
List<ScheduleStrategyRunntime> result = new ArrayList<ScheduleStrategyRunntime>();
String zkPath = this.PATH_Strategy;
List<String> taskTypeList = this.getZooKeeper().getChildren(zkPath, false);
Collections.sort(taskTypeList);
for(String taskType:taskTypeList){
if(this.getZooKeeper().exists(zkPath+"/"+taskType+"/"+managerFactoryUUID, false) !=null){
result.add(loadScheduleStrategyRunntime(taskType,managerFactoryUUID));
}
}
return result;
}
public List<ScheduleStrategyRunntime> loadAllScheduleStrategyRunntimeByTaskType(String strategyName) throws Exception{
List<ScheduleStrategyRunntime> result = new ArrayList<ScheduleStrategyRunntime>();
String zkPath = this.PATH_Strategy;
if(this.getZooKeeper().exists(zkPath+"/"+strategyName, false)==null){
return result;
}
List<String> uuidList = this.getZooKeeper().getChildren(zkPath + "/" + strategyName, false);
//排序
Collections.sort(uuidList,new Comparator<String>(){
public int compare(String u1, String u2) {
return u1.substring(u1.lastIndexOf("$") + 1).compareTo(
u2.substring(u2.lastIndexOf("$") + 1));
}
});
for (String uuid :uuidList) {
result.add(loadScheduleStrategyRunntime(strategyName,uuid));
}
return result;
}
/**
* 更新请求数量
* @param taskType
* @param manangerFactoryUUID
* @param requestNum
* @throws KeeperException
* @throws InterruptedException
*/
public void updateStrategyRunntimeReqestNum(String strategyName,String manangerFactoryUUID,int requestNum) throws Exception{
String zkPath = this.PATH_Strategy +"/"+strategyName+"/" + manangerFactoryUUID;
ScheduleStrategyRunntime result = null;
if(this.getZooKeeper().exists(zkPath, false) !=null){
result = this.loadScheduleStrategyRunntime(strategyName,manangerFactoryUUID);
} else {
result = new ScheduleStrategyRunntime();
result.setStrategyName(strategyName);
result.setUuid(manangerFactoryUUID);
result.setRequestNum(requestNum);
result.setMessage("");
}
result.setRequestNum(requestNum);
String valueString = this.gson.toJson(result);
this.getZooKeeper().setData(zkPath,valueString.getBytes(),-1);
}
/**
* 更新调度过程中的信息
* @param strategyName
* @param manangerFactoryUUID
* @param message
* @throws Exception
*/
public void updateStrategyRunntimeErrorMessage(String strategyName,String manangerFactoryUUID,String message) throws Exception{
String zkPath = this.PATH_Strategy +"/"+strategyName+"/" + manangerFactoryUUID;
ScheduleStrategyRunntime result = null;
if(this.getZooKeeper().exists(zkPath, false) !=null){
result = this.loadScheduleStrategyRunntime(strategyName,manangerFactoryUUID);
} else {
result = new ScheduleStrategyRunntime();
result.setStrategyName(strategyName);
result.setUuid(manangerFactoryUUID);
result.setRequestNum(0);
}
result.setMessage(message);
String valueString = this.gson.toJson(result);
this.getZooKeeper().setData(zkPath,valueString.getBytes(),-1);
}
public void updateManagerFactoryInfo(String uuid,boolean isStart) throws Exception {
String zkPath = this.PATH_ManagerFactory + "/" + uuid;
if(this.getZooKeeper().exists(zkPath, false)==null){
throw new Exception("任务管理器不存在:" + uuid);
}
this.getZooKeeper().setData(zkPath,Boolean.toString(isStart).getBytes(),-1);
}
public ManagerFactoryInfo loadManagerFactoryInfo(String uuid) throws Exception {
String zkPath = this.PATH_ManagerFactory + "/" + uuid;
if(this.getZooKeeper().exists(zkPath, false)==null){
throw new Exception("任务管理器不存在:" + uuid);
}
byte[] value = this.getZooKeeper().getData(zkPath,false,null);
ManagerFactoryInfo result = new ManagerFactoryInfo();
result.setUuid(uuid);
if(value== null){
result.setStart(true);
}else{
result.setStart(Boolean.parseBoolean(new String(value)));
}
return result;
}
/**
* 导入配置信息【目前支持baseTaskType和strategy数据】
*
* @param config
* @param writer
* @param isUpdate
* @throws Exception
*/
public void importConfig(String config, Writer writer, boolean isUpdate)
throws Exception {
ConfigNode configNode = gson.fromJson(config, ConfigNode.class);
if (configNode != null) {
String path = configNode.getRootPath() + "/"
+ configNode.getConfigType();
ZKTools.createPath(getZooKeeper(), path, CreateMode.PERSISTENT, zkManager.getAcl());
String y_node = path + "/" + configNode.getName();
if (getZooKeeper().exists(y_node, false) == null) {
writer.append("<font color=\"red\">成功导入新配置信息\n</font>");
getZooKeeper().create(y_node, configNode.getValue().getBytes(),
zkManager.getAcl(), CreateMode.PERSISTENT);
} else if (isUpdate) {
writer.append("<font color=\"red\">该配置信息已经存在,并且强制更新了\n</font>");
getZooKeeper().setData(y_node,
configNode.getValue().getBytes(), -1);
} else {
writer.append("<font color=\"red\">该配置信息已经存在,如果需要更新,请配置强制更新\n</font>");
}
}
writer.append(configNode.toString());
}
/**
* 输出配置信息【目前备份baseTaskType和strategy数据】
*
* @param rootPath
* @param writer
* @throws Exception
*/
public StringBuffer exportConfig(String rootPath, Writer writer)
throws Exception {
StringBuffer buffer = new StringBuffer();
for (String type : new String[] { "baseTaskType", "strategy" }) {
if (type.equals("baseTaskType")) {
writer.write("<h2>基本任务配置列表:</h2>\n");
} else {
writer.write("<h2>基本策略配置列表:</h2>\n");
}
String bTTypePath = rootPath + "/" + type;
List<String> fNodeList = getZooKeeper().getChildren(bTTypePath,
false);
for (int i = 0; i < fNodeList.size(); i++) {
String fNode = fNodeList.get(i);
ConfigNode configNode = new ConfigNode(rootPath, type, fNode);
configNode.setValue(new String(this.getZooKeeper().getData(bTTypePath + "/" + fNode,false,null)));
buffer.append(gson.toJson(configNode));
buffer.append("\n");
writer.write(configNode.toString());
}
writer.write("\n\n");
}
if (buffer.length() > 0) {
String str = buffer.toString();
return new StringBuffer(str.substring(0, str.length() - 1));
}
return buffer;
}
public List<ManagerFactoryInfo> loadAllManagerFactoryInfo() throws Exception {
String zkPath = this.PATH_ManagerFactory;
List<ManagerFactoryInfo> result = new ArrayList<ManagerFactoryInfo>();
List<String> names = this.getZooKeeper().getChildren(zkPath,false);
Collections.sort(names,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:names){
ManagerFactoryInfo info = new ManagerFactoryInfo();
info.setUuid(name);
byte[] value = this.getZooKeeper().getData(zkPath+"/"+name,false,null);
if(value== null){
info.setStart(true);
}else{
info.setStart(Boolean.parseBoolean(new String(value)));
}
result.add(info);
}
return result;
}
public void printTree(String path, Writer writer,String lineSplitChar)
throws Exception {
ZKTools.printTree(this.getZooKeeper(),path,writer,lineSplitChar);
}
public void deleteTree(String path) throws Exception{
ZKTools.deleteTree(this.getZooKeeper(), path);
}
public ZooKeeper getZooKeeper() throws Exception {
return this.zkManager.getZooKeeper();
}
public String getRootPath(){
return this.zkManager.getRootPath();
}
}