deardeng commented on code in PR #65607:
URL: https://github.com/apache/doris/pull/65607#discussion_r3580591376
##########
fe/fe-core/src/main/java/org/apache/doris/load/GroupCommitManager.java:
##########
@@ -60,8 +63,12 @@ public class GroupCommitManager {
private Set<Long> blockedTableIds = new HashSet<>();
- // Encoded <Cluster and Table id> to BE id map. Only for group commit.
- private final Map<String, Long> tableToBeMap = new ConcurrentHashMap<>();
+ // Encoded <Cluster and Table id> to BE id cache. Only for group commit.
Review Comment:
fixed
##########
fe/fe-core/src/main/java/org/apache/doris/DorisFE.java:
##########
@@ -136,16 +136,23 @@ public static void start(String dorisHomeDir, String
pidDir, String[] args, Star
return;
}
- CommandLineOptions cmdLineOpts = parseArgs(args);
-
try {
+ CommandLine commandLine = parseArgs(args);
+ if (commandLine.hasOption('v') ||
commandLine.hasOption("version")) {
+ printVersion();
Review Comment:
fixed
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]