diff options
| author | 戚岱杰 <[email protected]> | 2022-09-21 10:49:50 +0000 |
|---|---|---|
| committer | 戚岱杰 <[email protected]> | 2022-09-21 10:49:50 +0000 |
| commit | da1827b4fe862ddf08d69f57250106f80a8dff10 (patch) | |
| tree | 41428a327cedbc2d4363acc7c52b6585ca4908ff | |
| parent | 30e61c63074c7aec8b2b844a8e80e4c678783c8a (diff) | |
| parent | 9404b08eb4bbe237082c9935f7ebad3cef701ba4 (diff) | |
删除遗漏的调试代码
See merge request bigdata/tsg/flink/log-completion-schema!1
4 files changed, 1 insertions, 7 deletions
diff --git a/properties/default_config.properties b/properties/default_config.properties index 9af6157..781d319 100644 --- a/properties/default_config.properties +++ b/properties/default_config.properties @@ -70,4 +70,4 @@ hbase.radius.scan.max.rows=0 #Whether vsys_id is used as the relationship key between gtpc and radius. #vsys or global -data.relationship.model=vsys
\ No newline at end of file +data.relationship.model=global
\ No newline at end of file diff --git a/src/main/java/com/zdjizhi/tools/hbase/GtpCRelation.java b/src/main/java/com/zdjizhi/tools/hbase/GtpCRelation.java index ad7b128..4ab4d6b 100644 --- a/src/main/java/com/zdjizhi/tools/hbase/GtpCRelation.java +++ b/src/main/java/com/zdjizhi/tools/hbase/GtpCRelation.java @@ -56,8 +56,6 @@ class GtpCRelation { } } } - - System.out.println(gtpcMap.toString()); logger.warn("The obtain the number of GTP-C relationships : " + gtpcMap.size()); logger.warn("The time spent to obtain GTP-C relationships : " + (System.currentTimeMillis() - begin) + "ms"); } catch (IOException | RuntimeException e) { diff --git a/src/main/java/com/zdjizhi/tools/hbase/HBaseUtils.java b/src/main/java/com/zdjizhi/tools/hbase/HBaseUtils.java index dc66b21..58420b0 100644 --- a/src/main/java/com/zdjizhi/tools/hbase/HBaseUtils.java +++ b/src/main/java/com/zdjizhi/tools/hbase/HBaseUtils.java @@ -159,8 +159,6 @@ public class HBaseUtils { long nowTime = System.currentTimeMillis(); RadiusRelation.upgradeRadiusRelation(connection, radiusMap, time - 1000, nowTime + 500); GtpCRelation.upgradeGtpCRelation(connection, gtpcMap, time - 1000, nowTime + 500); - System.out.println(gtpcMap); - System.out.println(radiusMap); time = nowTime; } diff --git a/src/main/java/com/zdjizhi/tools/hbase/RadiusRelation.java b/src/main/java/com/zdjizhi/tools/hbase/RadiusRelation.java index 7c5372f..6866c7d 100644 --- a/src/main/java/com/zdjizhi/tools/hbase/RadiusRelation.java +++ b/src/main/java/com/zdjizhi/tools/hbase/RadiusRelation.java @@ -45,8 +45,6 @@ class RadiusRelation { } } } - System.out.println(radiusMap.toString()); - logger.warn("The obtain the number of RADIUS relationships : " + radiusMap.size()); logger.warn("The time spent to obtain radius relationships : " + (System.currentTimeMillis() - begin) + "ms"); } catch (IOException | RuntimeException e) { |
