Merge branch '22.10-VSYS' into 'main'

删除遗漏的调试代码

See merge request bigdata/tsg/flink/log-completion-schema!1
This commit is contained in:
戚岱杰
2022-09-21 10:49:50 +00:00
4 changed files with 1 additions and 7 deletions

View File

@@ -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
data.relationship.model=global

View File

@@ -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) {

View File

@@ -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;
}

View File

@@ -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) {