RepairTable.java 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. package com.sagacloud;
  2. /*
  3. * Author: Jxing
  4. * Create Time: 2019/3/12
  5. */
  6. import com.alibaba.fastjson.*;
  7. import com.google.common.base.Strings;
  8. import com.sagacloud.hbase.HbaseScanIndex;
  9. import com.sagacloud.hbase.ZillionOpUtil;
  10. import com.sagacloud.pojo.HBaseTable;
  11. import com.sagacloud.hbase.HBaseScanUtil;
  12. import com.sagacloud.pojo.InfosObj;
  13. import com.zillion.database.agent.ZillionAgent;
  14. import com.zillion.util.table.HTableUtil;
  15. import com.zillion.util.table.ZillionTableIndex;
  16. import com.zillion.util.table.ZillionTableSchema;
  17. import org.apache.hadoop.hbase.client.Result;
  18. import org.apache.hadoop.hbase.client.ResultScanner;
  19. import java.io.IOException;
  20. import java.util.*;
  21. public class RepairTable {
  22. public static void main(String[] args) {
  23. //args = new String[]{"-b", "physical_world_v3_226", "-p", "1101080001"};
  24. HBaseTable tableInfo = new HBaseTable();
  25. boolean complete = HBaseTable.getInfo(args, tableInfo);
  26. if(!complete){
  27. System.out.println("参数错误, -b 数据库名, -p 项目号(不带Pj)");
  28. return;
  29. }
  30. System.out.println(tableInfo.getDatabase() + " + " + tableInfo.getDatatable() + " + " + tableInfo.getProjectId());
  31. ZillionAgent agent = ZillionAgentProvider.GetAgent();
  32. ResultScanner scanner = null;
  33. JSONObject criteria = new JSONObject();
  34. generateCriteria(criteria, tableInfo);
  35. ZillionTableSchema schema = agent.container.repositoryMap.get(tableInfo.getDatabase()).GetTable(tableInfo.getDatatable());
  36. ZillionTableIndex index = HbaseScanIndex.zillionTableIndex(schema, criteria, null);
  37. try {
  38. scanner = getScanner(agent, tableInfo, criteria);
  39. } catch (Exception e) {
  40. System.out.println(e.getMessage());
  41. }
  42. fixData(scanner, index, schema, tableInfo);
  43. agent.Stop();
  44. }
  45. private static void generateCriteria(JSONObject criteria, HBaseTable tableInfo) {
  46. if(tableInfo.isVotn()){
  47. criteria.put("obj_type", "VOTn");
  48. }
  49. if(tableInfo.getProjectId() != null && tableInfo.getProjectId().length() > 0){
  50. criteria.put("project_id", tableInfo.getProjectId());
  51. }
  52. }
  53. private static void fixData(ResultScanner scanner, ZillionTableIndex index, ZillionTableSchema schema, HBaseTable tableInfo) {
  54. if(scanner == null)
  55. return;
  56. // key --> objId + infoId , value --> [ info_value, ArrayList<JSONObjectRow> ]
  57. Map<String, ArrayList<InfosObj>> fixMap = new LinkedHashMap<>();
  58. ArrayList<InfosObj> deleteArr = new ArrayList<>();
  59. try {
  60. String curProjectId = "aaa";
  61. while(true) {
  62. Result[] rs = scanner.next(2000);
  63. if (rs == null || rs.length == 0) {
  64. break;
  65. }
  66. for (int i = 0; i < rs.length; ++i) {
  67. if (HTableUtil.valid(schema, rs[i].listCells())) {
  68. JSONObject resultObject = HBaseScanUtil.Convert(schema, index, rs[i]);
  69. if (!resultObject.containsKey("obj_type") || !resultObject.containsKey("obj_id")
  70. || !resultObject.containsKey("info_id") || !resultObject.containsKey("time")) {
  71. throw new Exception("该表不是数据平台3的obj_infos表");
  72. }
  73. InfosObj infosObj = resultObject.toJavaObject(InfosObj.class);
  74. String idKey = String.join("", infosObj.getProject_id(), infosObj.getObj_type(), infosObj.getObj_id(), infosObj.getInfo_id());
  75. putToFixMap(idKey, infosObj, fixMap);
  76. if(!(curProjectId == null && infosObj.getProject_id() == null) &&
  77. (curProjectId == null || infosObj.getProject_id() == null || !curProjectId.equals(infosObj.getProject_id()))){
  78. curProjectId = infosObj.getProject_id();
  79. System.out.println("正在处理项目: " + curProjectId);
  80. continue;
  81. }
  82. }
  83. }
  84. putToDeleteArr(fixMap, deleteArr, tableInfo);
  85. if(deleteArr.size() > 2000){
  86. ZillionOpUtil.delete(deleteArr, tableInfo);
  87. System.out.println("正在修复 " + curProjectId);
  88. }
  89. }
  90. ZillionOpUtil.delete(deleteArr, tableInfo);
  91. } catch (Exception e) {
  92. System.out.println(e.getMessage());
  93. return;
  94. }finally {
  95. scanner.close();
  96. }
  97. System.out.println("已完成");
  98. }
  99. private static void putToDeleteArr(Map<String, ArrayList<InfosObj>> fixMap, ArrayList<InfosObj> deleteArr, HBaseTable tableInfo) {
  100. String lastKey = null;
  101. for(String idKey : fixMap.keySet()){
  102. lastKey = idKey;
  103. ArrayList<InfosObj> arr = fixMap.get(idKey);
  104. boolean isFirst = true;
  105. Object lastValue = null;
  106. for(int i = 0; i < arr.size(); ++i){
  107. InfosObj single = arr.get(i);
  108. if(isFirst){
  109. lastValue = single.getObjInfoValue();
  110. isFirst = false;
  111. continue;
  112. }
  113. if(single.getObjInfoValue() == null){
  114. if(lastValue == null) {
  115. // remove
  116. deleteArr.add(single);
  117. arr.remove(i);
  118. --i;
  119. continue;
  120. }else{
  121. lastValue = single.getObjInfoValue();
  122. }
  123. }else if(single.getObjInfoValue().equals(lastValue)){
  124. // remove
  125. deleteArr.add(single);
  126. arr.remove(i);
  127. --i;
  128. continue;
  129. }else{
  130. lastValue = single.getObjInfoValue();
  131. }
  132. }
  133. if(tableInfo.isVotn()){
  134. for(; arr.size() > 1; ){
  135. deleteArr.add(arr.get(0));
  136. arr.remove(0);
  137. }
  138. }
  139. }
  140. if(lastKey == null ){
  141. return;
  142. }
  143. Iterator<String> iter = fixMap.keySet().iterator();
  144. while(iter.hasNext()) {
  145. String key = iter.next();
  146. if (!key.equals(lastKey)) {
  147. iter.remove();
  148. }
  149. }
  150. }
  151. private static void putToFixMap(String idKey, InfosObj resultObject, Map<String, ArrayList<InfosObj>> fixMap) {
  152. if(fixMap.containsKey(idKey)){
  153. fixMap.get(idKey).add(resultObject);
  154. }else{
  155. ArrayList<InfosObj> arr = new ArrayList<>();
  156. fixMap.put(idKey, arr);
  157. arr.add(resultObject);
  158. }
  159. }
  160. private static ResultScanner getScanner(ZillionAgent agent, HBaseTable tableInfo, JSONObject jsonObject) throws Exception {
  161. return HBaseScanUtil.getScan(agent, tableInfo.getDatabase(), tableInfo.getDatatable(), tableInfo.getDatatable(), jsonObject, null);
  162. }
  163. }