个人随笔
目录
四、zookeeper使用场景之:分布式集群管理
2020-12-03 16:29:19

一、背景

我们再分布式集群环境中,可能会有多个节点,作为管理员,有必要知道线上有多少个节点在运行中,以及节点变化情况和每个节点的内存、CPU、磁盘的使用情况,若是有超出预警值需要及时通知我们,发短信或者邮件,这样子就可以快速响应生产故障或者预防生产故障。

为了实现上面的目标,这里打算借助zookeeper来监控每个节点的存活情况已经内存CPU的使用情况,关键点是用zookeeper的临时序号节点监听。下面举个例子吧。

二、例子

启动几个节点,节点启动的时候就上报道zookeeper,然后定时上报自己内存CPU等资源的使用情况。监控程序监控节点的变化情况以及节点内容的变化情况,有异常则发邮件给管理员。

三、代码实例

这里不用zookeeper的原生API,原生API实现起来比较复杂。比如要自己去实现循环监听的情况。所以这里用zkClient来。

1、新建maven项目,pom.xml加入如下依赖

  1. <dependencies>
  2. <dependency>
  3. <groupId>com.google.code.gson</groupId>
  4. <artifactId>gson</artifactId>
  5. <version>2.8.5</version>
  6. </dependency>
  7. <!-- https://mvnrepository.com/artifact/com.101tec/zkclient -->
  8. <dependency>
  9. <groupId>com.101tec</groupId>
  10. <artifactId>zkclient</artifactId>
  11. <version>0.11</version>
  12. </dependency>
  13. </dependencies>

2、建立节点类Node

  1. public class Node {
  2. public static void main(String[] args) throws InterruptedException {
  3. new ZkClientMsg().init("2");
  4. System.out.println("执行正常业务逻辑...");
  5. Thread.sleep(Long.MAX_VALUE);
  6. }
  7. }

每个节点在初始化的似乎都调用ZkClientMsg类来将信息上报道zookeeper,然后再执行自己的业务逻辑。

3、ZkClientMsg

该类就是实现了链接zookeeper以及创建临时序号节点,用临时序号节点的特性:当节点挂掉后临时序号节点也会自动清除来监控节点的存活情况,以及定时上报自己的服务器相关信息,代码如下:

  1. package com.suibibk.zookeeper;
  2. import java.io.IOException;
  3. import java.text.SimpleDateFormat;
  4. import java.util.Date;
  5. import java.util.HashMap;
  6. import java.util.List;
  7. import java.util.Map;
  8. import org.I0Itec.zkclient.ZkClient;
  9. import org.apache.zookeeper.CreateMode;
  10. import com.google.gson.Gson;
  11. public class ZkClientMsg {
  12. private ZkClient zkClient;
  13. //根节点:为持久及诶单
  14. private String rootPath = "/service";
  15. //子节点:为临时序号节点
  16. private String servicePath = "/service/service";
  17. private String NODE = "1";
  18. //获取当前节点的名称
  19. private String nowPath = "";
  20. public void init(String node){
  21. try {
  22. //初始化
  23. System.out.println("Node start..."+node);
  24. NODE = node;
  25. //上报Zookeeper
  26. initZookeeper();
  27. //创建根节点:根节点用的是持久节点
  28. createRoot();
  29. //创建当前节点:为临时序号节点
  30. createCurrentNode();
  31. //定时上报IP,内存,cpu,磁盘等使用情况
  32. new Thread(new Runnable() {
  33. public void run() {
  34. while(true) {
  35. try {
  36. updateCurrentNode();
  37. //5秒钟上报一次
  38. Thread.sleep(5*1000l);
  39. } catch (InterruptedException e) {
  40. // TODO Auto-generated catch block
  41. e.printStackTrace();
  42. }
  43. }
  44. }
  45. }).start();
  46. System.out.println("Node finish");
  47. } catch (Exception e) {
  48. // TODO Auto-generated catch block
  49. e.printStackTrace();
  50. }
  51. }
  52. private void createRoot() {
  53. //检查根节点是否存在
  54. try {
  55. Boolean result = zkClient.exists(rootPath);
  56. if(!result) {
  57. //根节点不存在,创建
  58. System.out.println("根节点不存在,创建持久节点");
  59. create(rootPath, "service", CreateMode.PERSISTENT);
  60. }
  61. } catch (Exception e) {
  62. e.printStackTrace();
  63. }
  64. }
  65. private String create(String path,String data,CreateMode mode) {
  66. try {
  67. String path2 = zkClient.create(path,data,mode);
  68. return path2;
  69. } catch (Exception e) {
  70. e.printStackTrace();
  71. }
  72. return "";
  73. }
  74. public void initZookeeper() throws IOException {
  75. String connectString = "192.168.209.4:2181";
  76. zkClient = new ZkClient(connectString, 50*1000);
  77. }
  78. /**
  79. * 创建临时节点
  80. */
  81. private void createCurrentNode() {
  82. //获取用户的IP,CPU,RAN,DISK
  83. String result = getOSInfo();
  84. //创建临时序号节点
  85. String path = create(servicePath, result, CreateMode.EPHEMERAL_SEQUENTIAL);
  86. nowPath=path;
  87. }
  88. /**
  89. *更新当前临时节点
  90. */
  91. private void updateCurrentNode() {
  92. //获取用户的IP,CPU,RAN,DISK
  93. String result = getOSInfo();
  94. //创建临时序号节点,这里要返回节点名称
  95. //-1表示不考虑当前版本信息
  96. try {
  97. zkClient.writeData(nowPath, result);
  98. } catch (Exception e) {
  99. e.printStackTrace();
  100. }
  101. }
  102. /**
  103. * 获取系统信息
  104. * @return
  105. */
  106. private String getOSInfo() {
  107. String str0 = GetSystemInfo.getLocalIp();
  108. String str1 = GetSystemInfo.getMemery();
  109. List<String> strs = GetSystemInfo.getDisk();
  110. String str3 = GetSystemInfo.getCpuRatioForWindows();
  111. Map<String,Object> map = new HashMap<String,Object>();
  112. map.put("TIME",new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()));
  113. map.put("IP",str0);
  114. map.put("CPU",str3);
  115. map.put("RAN",str1);
  116. map.put("DISK",strs);
  117. map.put("NODE",NODE);
  118. Gson gson = new Gson();
  119. String result = gson.toJson(map);
  120. return result;
  121. }
  122. }

4、GetSystemInfo

这是一个获取服务器相关信息的工具类,CPU只支持在win上的获取,这里只是举一个例子,所以就不要求这么精确了,如果是在正式环境使用,建议用专门的工具类来:

  1. package com.suibibk.zookeeper;
  2. import java.io.File;
  3. import java.io.InputStreamReader;
  4. import java.io.LineNumberReader;
  5. import java.lang.management.ManagementFactory;
  6. import java.net.InetAddress;
  7. import java.net.UnknownHostException;
  8. import java.util.ArrayList;
  9. import java.util.List;
  10. import com.sun.management.OperatingSystemMXBean;
  11. public class GetSystemInfo {
  12. private static final int CPUTIME = 500;
  13. private static final int PERCENT = 100;
  14. private static final int FAULTLENGTH = 10;
  15. /**
  16. * 获取内存使用情况
  17. * @return
  18. */
  19. public static String getMemery() {
  20. OperatingSystemMXBean osmxb = (OperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean();
  21. //物理内存
  22. long totalPhysicalMemory = osmxb.getTotalPhysicalMemorySize();
  23. //可用物理内存
  24. long freePhysicalMemorySize = osmxb.getFreePhysicalMemorySize();
  25. //虚拟内存
  26. long totalvirtualMemory = osmxb.getTotalSwapSpaceSize();
  27. //可用虚拟内存
  28. long freeSwapSpaceSize = osmxb.getFreeSwapSpaceSize();
  29. // System.out.println("物理内存:" + totalPhysicalMemory / 1024 / 1024 + "MB");
  30. // System.out.println("可用物理内存:" + freePhysicalMemorySize / 1024 / 1024 + "MB");
  31. // System.out.println("虚拟内存 :" + totalvirtualMemory / 1024 / 1024 + "MB");
  32. // System.out.println("可用虚拟内存:" + freeSwapSpaceSize / 1024 / 1024 + "MB");
  33. Double compare = Double.valueOf((1 - freePhysicalMemorySize * 1.0 / totalPhysicalMemory) * 100);
  34. String str = "物理内存已使用:" +compare.intValue()+ "%";
  35. return str;
  36. }
  37. /**
  38. * 获取文件系统使用率
  39. * @return
  40. */
  41. public static List<String> getDisk()
  42. {
  43. // 操作系统
  44. List<String> list = new ArrayList<String>();
  45. for (char c = 'A'; c <= 'Z'; c++)
  46. {
  47. String dirName = c + ":/";
  48. File win = new File(dirName);
  49. if (win.exists())
  50. {
  51. long total = (long)win.getTotalSpace();
  52. long free = (long)win.getFreeSpace();
  53. Double compare = Double.valueOf((1 - free * 1.0 / total) * 100);
  54. String str = c + ":盘 已使用 " + compare.intValue() + "%";
  55. list.add(str);
  56. }
  57. }
  58. return list;
  59. }
  60. /**
  61. * 获取Windows下CPU的使用率
  62. * @return
  63. */
  64. public static String getCpuRatioForWindows()
  65. {
  66. try
  67. {
  68. String procCmd =
  69. System.getenv("windir")
  70. + "\\system32\\wbem\\wmic.exe process get Caption,CommandLine,KernelModeTime,ReadOperationCount,ThreadCount,UserModeTime,WriteOperationCount";
  71. // 取进程信息
  72. long[] c0 = readCpu(Runtime.getRuntime().exec(procCmd));
  73. Thread.sleep(CPUTIME);
  74. long[] c1 = readCpu(Runtime.getRuntime().exec(procCmd));
  75. if (c0 != null && c1 != null)
  76. {
  77. long idletime = c1[0] - c0[0];
  78. long busytime = c1[1] - c0[1];
  79. return "CPU使用率:" + Double.valueOf(PERCENT * (busytime) * 1.0 / (busytime + idletime)).intValue() + "%";
  80. }
  81. else
  82. {
  83. return "CPU使用率:" + 0 + "%";
  84. }
  85. }
  86. catch (Exception ex)
  87. {
  88. ex.printStackTrace();
  89. return "CPU使用率:" + 0 + "%";
  90. }
  91. }
  92. /**
  93. * 获取IP
  94. * @return
  95. */
  96. public static String getLocalIp() {
  97. InetAddress addr = null;
  98. try {
  99. addr = InetAddress.getLocalHost();
  100. } catch (UnknownHostException e) {
  101. throw new RuntimeException(e);
  102. }
  103. return addr.getHostAddress();
  104. }
  105. //读取cpu相关信息
  106. private static long[] readCpu(final Process proc)
  107. {
  108. long[] retn = new long[2];
  109. try
  110. {
  111. proc.getOutputStream().close();
  112. InputStreamReader ir = new InputStreamReader(proc.getInputStream());
  113. LineNumberReader input = new LineNumberReader(ir);
  114. String line = input.readLine();
  115. if (line == null || line.length() < FAULTLENGTH)
  116. {
  117. return null;
  118. }
  119. int capidx = line.indexOf("Caption");
  120. int cmdidx = line.indexOf("CommandLine");
  121. int rocidx = line.indexOf("ReadOperationCount");
  122. int umtidx = line.indexOf("UserModeTime");
  123. int kmtidx = line.indexOf("KernelModeTime");
  124. int wocidx = line.indexOf("WriteOperationCount");
  125. long idletime = 0;
  126. long kneltime = 0;
  127. long usertime = 0;
  128. while ((line = input.readLine()) != null)
  129. {
  130. if (line.length() < wocidx)
  131. {
  132. continue;
  133. }
  134. // 字段出现顺序:Caption,CommandLine,KernelModeTime,ReadOperationCount,
  135. // ThreadCount,UserModeTime,WriteOperation
  136. String caption = substring(line, capidx, cmdidx - 1).trim();
  137. String cmd = substring(line, cmdidx, kmtidx - 1).trim();
  138. if (cmd.indexOf("wmic.exe") >= 0)
  139. {
  140. continue;
  141. }
  142. String s1 = substring(line, kmtidx, rocidx - 1).trim();
  143. String s2 = substring(line, umtidx, wocidx - 1).trim();
  144. if (caption.equals("System Idle Process") || caption.equals("System"))
  145. {
  146. if (s1.length() > 0)
  147. idletime += Long.valueOf(s1).longValue();
  148. if (s2.length() > 0)
  149. idletime += Long.valueOf(s2).longValue();
  150. continue;
  151. }
  152. if (s1.length() > 0)
  153. kneltime += Long.valueOf(s1).longValue();
  154. if (s2.length() > 0)
  155. usertime += Long.valueOf(s2).longValue();
  156. }
  157. retn[0] = idletime;
  158. retn[1] = kneltime + usertime;
  159. return retn;
  160. }
  161. catch (Exception ex)
  162. {
  163. ex.printStackTrace();
  164. }
  165. finally
  166. {
  167. try
  168. {
  169. proc.getInputStream().close();
  170. }
  171. catch (Exception e)
  172. {
  173. e.printStackTrace();
  174. }
  175. }
  176. return null;
  177. }
  178. /**
  179. * 由于String.subString对汉字处理存在问题(把一个汉字视为一个字节),因此在 包含汉字的字符串时存在隐患,现调整如下:
  180. * @param src 要截取的字符串
  181. * @param start_idx 开始坐标(包括该坐标)
  182. * @param end_idx 截止坐标(包括该坐标)
  183. * @return
  184. */
  185. private static String substring(String src, int start_idx, int end_idx)
  186. {
  187. byte[] b = src.getBytes();
  188. String tgt = "";
  189. for (int i = start_idx; i <= end_idx; i++)
  190. {
  191. tgt += (char)b[i];
  192. }
  193. return tgt;
  194. }
  195. public static void main(String[] args) {
  196. String str0 = getLocalIp();
  197. System.out.println(str0);
  198. String str1 = getMemery();
  199. System.out.println(str1);
  200. List<String> strs = getDisk();
  201. for (String str : strs) {
  202. System.out.println(str);
  203. }
  204. String str3 = getCpuRatioForWindows();
  205. System.out.println(str3);
  206. }
  207. }

上面节点就基本上完成啦,只需要在Node上启动就可以了。

5、监控器:ZkClientMonitor

下面这里列一下监控器,监控器的实现也很简单,就是监控节点下面的子节点数目的改变,子节点就是每个节点的临时序号节点。然后再监听每个子节点的数据变化,如果超过规定值就预警。

  1. package com.suibibk.zookeeper;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. import java.util.Map;
  5. import org.I0Itec.zkclient.IZkChildListener;
  6. import org.I0Itec.zkclient.IZkDataListener;
  7. import org.I0Itec.zkclient.ZkClient;
  8. import com.google.gson.Gson;
  9. /**
  10. * @author 小林同学
  11. */
  12. public class ZkClientMonitor {
  13. final static String path ="/service";
  14. private static ZkClient zkClient;
  15. public static void main(String[] args) throws InterruptedException {
  16. String connectString = "192.168.209.4:2181";
  17. zkClient = new ZkClient(connectString, 50*1000);
  18. initWatch(path);
  19. Thread.sleep(Long.MAX_VALUE);
  20. }
  21. /**
  22. * 初始化监听器
  23. * @param nodePath
  24. */
  25. public static void initWatch(String path) {
  26. //1、先移除所有监听
  27. zkClient.unsubscribeAll();
  28. //2、添加子节点变更监听
  29. List<String> paths = zkClient.subscribeChildChanges(path, new IZkChildListener() {
  30. public void handleChildChange(String arg0, List<String> arg1) throws Exception {
  31. // TODO Auto-generated method stub
  32. //System.out.println("重新初始化监听器:"+arg0);
  33. List<String> strs = new ArrayList<String>();
  34. for (String string : arg1) {
  35. String str = zkClient.readData(arg0+"/"+string);
  36. strs.add(str);
  37. }
  38. System.out.println("节点数目有变化,当前存活节点为:"+strs+"请留意");
  39. initWatch(arg0);
  40. }
  41. });
  42. for (String string : paths) {
  43. //System.out.println("监听path:"+string+"的数据变化");
  44. //这里进行数据变化监听
  45. zkClient.subscribeDataChanges(path+"/"+string, new IZkDataListener() {
  46. public void handleDataDeleted(String arg0) throws Exception {
  47. }
  48. public void handleDataChange(String arg0, Object arg1) throws Exception {
  49. //System.out.println("arg0:"+arg0+"change data");
  50. System.out.println("节点数据变化:"+arg1);
  51. //这里对数据进行监控判断,若有数据变化超过预警值则发邮件通知管理员
  52. Map map = new Gson().fromJson(arg1.toString(), Map.class);
  53. //获取内存
  54. String ip = (String) map.get("IP");
  55. String ran = (String) map.get("RAN");
  56. //System.out.println("ran:"+ran);
  57. int r = Integer.parseInt(ran.replace("%", "").replaceAll("物理内存已使用:", ""));
  58. //System.out.println("r:"+r);
  59. if(r>60) {
  60. System.out.println("IP:"+ip+"的内存使用高达"+r+"%请留意");
  61. }
  62. }
  63. });
  64. }
  65. }
  66. }

要重新移除监听的原因是因为我这没有具体的对哪些节点是新增的做筛选,实际实现中可以先保存为一个变量,然后在节点数目变化的情况下去匹对,只对新增的节点进行监控数据的改变,这样效果更好,不过我这里只是举个例子而已,为了防止已经加了监听的节点重新加监听我这里就直接先移除所有监听,为什么不移除单个监听的呢?原因如下:

注:我这里采取的是如果有变化就移除该监控节点的所监听然后再初始化监听,因为我尝试过用zkClient.unsubscribeDataChanges(arg0, arg1)这种只移除对应监听的方法完全不生效,就算用zookeeper原生API的removeAllWatchs也完全没有效果,目前还没有找到解决方案,希望有知道的可以告知我一下。

四、测试

测试的话就比较简单,这里先启动节点,然后启动监控,会发现打印如下日志:

  1. 节点数据变化:{"NODE":"1","IP":"192.168.209.1","CPU":"CPU使用率:7%","TIME":"2020-12-03 16:11:46","DISK":["C:盘 已使用 45%","D:盘 已使用 29%","E:盘 已使用 50%"],"RAN":"物理内存已使用:70%"}
  2. IP:192.168.209.1的内存使用高达70%请留意

然后我再启动一个节点。日志会打印如下

  1. 节点数目有变化,当前存活节点为:[{"NODE":"2","IP":"192.168.209.1","CPU":"CPU使用率:5%","TIME":"2020-12-03 16:12:14","DISK":["C:盘 已使用 45%","D:盘 已使用 29%","E:盘 已使用 50%"],"RAN":"物理内存已使用:71%"}, {"NODE":"1","IP":"192.168.209.1","CPU":"CPU使用率:10%","TIME":"2020-12-03 16:12:09","DISK":["C:盘 已使用 45%","D:盘 已使用 29%","E:盘 已使用 50%"],"RAN":"物理内存已使用:71%"}]请留意
  2. 节点数据变化:{"NODE":"2","IP":"192.168.209.1","CPU":"CPU使用率:5%","TIME":"2020-12-03 16:12:17","DISK":["C:盘 已使用 45%","D:盘 已使用 29%","E:盘 已使用 50%"],"RAN":"物理内存已使用:71%"}
  3. IP:192.168.209.1的内存使用高达71%请留意

表明监控到了数目的变化以及对新的节点数据的变化进行监听,实现了目标,收工。

 263

啊!这个可能是世界上最丑的留言输入框功能~


当然,也是最丑的留言列表

有疑问发邮件到 : suibibk@qq.com 侵权立删
Copyright : 个人随笔   备案号 : 粤ICP备18099399号-2