aloyszhang commented on code in PR #9868:
URL: https://github.com/apache/inlong/pull/9868#discussion_r1536998897
##########
inlong-manager/manager-service/src/main/java/org/apache/inlong/manager/service/core/impl/SortClusterServiceImpl.java:
##########
@@ -83,10 +87,15 @@ public class SortClusterServiceImpl implements
SortClusterService {
// key : sort cluster name, value : md5
private Map<String, String> sortClusterMd5Map = new ConcurrentHashMap<>();
+ private Map<String, String> sortClusterMd5MapV2 = new
ConcurrentHashMap<>();
+
// key : sort cluster name, value : cluster config
private Map<String, SortClusterConfig> sortClusterConfigMap = new
ConcurrentHashMap<>();
+ private Map<String, SortClusterConfig> sortClusterConfigMapV2 = new
ConcurrentHashMap<>();
+
// key : sort cluster name, value : error log
private Map<String, String> sortClusterErrorLogMap = new
ConcurrentHashMap<>();
+ private Map<String, String> sortClusterErrorLogMapV2 = new
ConcurrentHashMap<>();
Review Comment:
This map is not used anywhere.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]