RongtongJin commented on code in PR #8915:
URL: https://github.com/apache/rocketmq/pull/8915#discussion_r1841497459


##########
store/src/main/java/org/apache/rocketmq/store/queue/RocksGroupCommitService.java:
##########
@@ -0,0 +1,97 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.rocketmq.store.queue;
+
+import java.util.ArrayList;
+import java.util.List;
+import java.util.concurrent.LinkedBlockingQueue;
+import java.util.concurrent.TimeUnit;
+import org.apache.rocketmq.common.ServiceThread;
+import org.apache.rocketmq.store.DispatchRequest;
+import org.rocksdb.RocksDBException;
+
+public class RocksGroupCommitService extends ServiceThread {
+
+    private static final int MAX_BUFFER_SIZE = 100_000;
+
+    private static final int PREFERRED_DISPATCH_REQUEST_COUNT = 256;
+
+    private final LinkedBlockingQueue<DispatchRequest> buffer;
+
+    private final RocksDBConsumeQueueStore store;
+
+    private final List<DispatchRequest> requests = new 
ArrayList<>(PREFERRED_DISPATCH_REQUEST_COUNT);
+
+    public RocksGroupCommitService(RocksDBConsumeQueueStore store) {
+        this.store = store;
+        this.buffer = new LinkedBlockingQueue<>(MAX_BUFFER_SIZE);
+    }
+
+    @Override
+    public String getServiceName() {
+        return "RocksGroupCommit";
+    }
+
+    @Override
+    public void run() {
+        log.info("{} service started", this.getServiceName());
+        while (!this.isStopped()) {
+            try {
+                this.waitForRunning(10);
+                this.doCommit();
+            } catch (Exception e) {
+                log.warn("{} service has exception. ", this.getServiceName(), 
e);
+            }
+        }
+        log.info("{} service end", this.getServiceName());
+    }
+
+    public void putRequest(final DispatchRequest request) throws 
InterruptedException {
+        while (!buffer.offer(request, 3, TimeUnit.SECONDS)) {
+            log.warn("RocksGroupCommitService#buffer is full, 3s elapsed 
before space becomes available");
+        }
+        this.wakeup();
+    }
+
+    private void doCommit() {
+        boolean interrupted = false;
+        while (!buffer.isEmpty() && !interrupted) {
+            DispatchRequest dispatchRequest = buffer.poll();
+            if (null != dispatchRequest) {
+                requests.add(dispatchRequest);
+            }
+
+            if (requests.isEmpty()) {
+                break;
+            }
+
+            if (null == dispatchRequest || requests.size() >= 
PREFERRED_DISPATCH_REQUEST_COUNT) {
+                while (!store.isStopped()) {
+                    try {
+                        // putMessagePosition will clear requests after 
consume queue building completion
+                        store.putMessagePosition(requests);
+                        break;
+                    } catch (RocksDBException e) {
+                        log.error("Failed to build consume queue in RocksDB", 
e);
+                    }

Review Comment:
   If throwing a RocksDBException leads to an endless loop without any pause,  
is this expected behavior?



##########
store/src/main/java/org/apache/rocketmq/store/queue/RocksDBConsumeQueueStore.java:
##########
@@ -500,6 +529,16 @@ public ConsumeQueueInterface 
findOrCreateConsumeQueue(String topic, int queueId)
         return oldLogic != null ? oldLogic : newLogic;
     }
 
+    @Override
+    public ConcurrentMap<Integer, ConsumeQueueInterface> 
findConsumeQueueMap(String topic) {
+        if (MixAll.isLmq(topic)) {
+            ConcurrentMap<Integer, ConsumeQueueInterface> result = new 
ConcurrentHashMap<>(1);
+            result.put(MixAll.LMQ_QUEUE_ID, findOrCreateConsumeQueue(topic, 
MixAll.LMQ_QUEUE_ID));
+            return result;
+        }
+        return super.findConsumeQueueMap(topic);
+    }

Review Comment:
   I don't quite understand the necessity of overriding this method. Could you 
please clarify?



-- 
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