lizhimins commented on code in PR #9256:
URL: https://github.com/apache/rocketmq/pull/9256#discussion_r2050345681


##########
store/src/main/java/org/apache/rocketmq/store/queue/ConsumeQueueStore.java:
##########
@@ -72,21 +90,29 @@ public boolean load() {
     }
 
     @Override
-    public boolean loadAfterDestroy() {
-        return true;
-    }
+    public void recover(boolean concurrently) {
+        log.info("Start to recover consume queue concurrently={}", 
concurrently);
+        if (concurrently) {
+            recoverConcurrently();
+            return;
+        }

Review Comment:
   concurrent 不需要更新 phy offset 吗



-- 
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: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to