aaron-ai commented on code in PR #5875:
URL: https://github.com/apache/rocketmq/pull/5875#discussion_r1069573492


##########
tieredstore/src/main/java/org/apache/rocketmq/store/tiered/container/TieredFileSegment.java:
##########
@@ -0,0 +1,529 @@
+/*
+ * 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.tiered.container;
+
+import com.google.common.base.Stopwatch;
+import java.io.InputStream;
+import java.nio.ByteBuffer;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.concurrent.CompletableFuture;
+import java.util.concurrent.Semaphore;
+import java.util.concurrent.TimeUnit;
+import java.util.concurrent.locks.ReentrantLock;
+import org.apache.rocketmq.common.message.MessageQueue;
+import org.apache.rocketmq.logging.org.slf4j.Logger;
+import org.apache.rocketmq.logging.org.slf4j.LoggerFactory;
+import org.apache.rocketmq.store.tiered.common.AppendResult;
+import org.apache.rocketmq.store.tiered.common.TieredMessageStoreConfig;
+import org.apache.rocketmq.store.tiered.exception.TieredStoreErrorCode;
+import org.apache.rocketmq.store.tiered.exception.TieredStoreException;
+import org.apache.rocketmq.store.tiered.util.MessageBufferUtil;
+import org.apache.rocketmq.store.tiered.util.TieredStoreUtil;
+
+public abstract class TieredFileSegment implements 
Comparable<TieredFileSegment> {
+    private static final Logger LOGGER = 
LoggerFactory.getLogger(TieredStoreUtil.TIERED_STORE_LOGGER_NAME);
+    private volatile boolean closed = false;
+    private final ReentrantLock bufferLock = new ReentrantLock();
+    private final Semaphore commitLock = new Semaphore(1);
+    private List<ByteBuffer> uploadBufferList = new ArrayList<>();
+    private boolean full;
+    protected final FileSegmentType fileType;
+    protected final MessageQueue messageQueue;
+    protected final TieredMessageStoreConfig storeConfig;
+    protected final long baseOffset;
+    private volatile long commitPosition;
+    private volatile long appendPosition;
+    private final long maxSize;
+    private long beginTimestamp = Long.MAX_VALUE;
+    private long endTimestamp = Long.MAX_VALUE;
+    // only used in commitLog
+    private long commitMsgQueueOffset = 0;
+    private ByteBuffer codaBuffer;
+
+    private CompletableFuture<Boolean> inflightCommitRequest = 
CompletableFuture.completedFuture(false);
+
+    public TieredFileSegment(FileSegmentType fileType, MessageQueue 
messageQueue, long baseOffset,
+        TieredMessageStoreConfig storeConfig) {
+        this.fileType = fileType;
+        this.messageQueue = messageQueue;
+        this.storeConfig = storeConfig;
+        this.baseOffset = baseOffset;
+        this.commitPosition = 0;
+        this.appendPosition = 0;
+        switch (fileType) {
+            case COMMIT_LOG:
+                this.maxSize = storeConfig.getTieredStoreCommitLogMaxSize();
+                break;
+            case CONSUME_QUEUE:
+                this.maxSize = storeConfig.getTieredStoreConsumeQueueMaxSize();
+                break;
+            case INDEX:
+                this.maxSize = Long.MAX_VALUE;
+                break;
+            default:
+                throw new IllegalArgumentException("Unsupported file type: " + 
fileType);
+        }
+    }
+
+    @Override
+    public int compareTo(TieredFileSegment o) {
+        return Long.compare(this.baseOffset, o.baseOffset);
+    }
+
+    public long getBaseOffset() {
+        return baseOffset;
+    }
+
+    public long getCommitOffset() {
+        return baseOffset + commitPosition;
+    }
+
+    public long getCommitPosition() {
+        return commitPosition;
+    }
+
+    public long getCommitMsgQueueOffset() {
+        return commitMsgQueueOffset;
+    }
+
+    public long getMaxOffset() {
+        return baseOffset + appendPosition;
+    }
+
+    public long getMaxSize() {
+        return maxSize;
+    }
+
+    public long getBeginTimestamp() {
+        return beginTimestamp;
+    }
+
+    protected void setBeginTimestamp(long beginTimestamp) {
+        this.beginTimestamp = beginTimestamp;
+    }
+
+    public long getEndTimestamp() {
+        return endTimestamp;
+    }
+
+    protected void setEndTimestamp(long endTimestamp) {
+        this.endTimestamp = endTimestamp;
+    }
+
+    public boolean isFull() {
+        return full;
+    }
+
+    public void setFull() {
+        setFull(true);
+    }
+
+    public void setFull(boolean appendCoda) {
+        bufferLock.lock();
+        try {
+            full = true;
+            if (fileType == FileSegmentType.COMMIT_LOG && appendCoda) {
+                appendCoda();
+            }
+        } finally {
+            bufferLock.unlock();
+        }
+    }
+
+    public boolean isClosed() {
+        return closed;
+    }
+
+    public void close() {
+        closed = true;
+    }
+
+    public FileSegmentType getFileType() {
+        return fileType;
+    }
+
+    public MessageQueue getMessageQueue() {
+        return messageQueue;
+    }
+
+    public void initPosition(long pos) {
+        this.commitPosition = pos;
+        this.appendPosition = pos;
+    }
+
+    private List<ByteBuffer> rollingUploadBuffer() {
+        bufferLock.lock();
+        try {
+            List<ByteBuffer> tmp = uploadBufferList;
+            uploadBufferList = new ArrayList<>();
+            return tmp;
+        } finally {
+            bufferLock.unlock();
+        }
+    }
+
+    private void sendBackBuffer(TieredFileSegmentInputStream inputStream) {
+        bufferLock.lock();
+        try {
+            List<ByteBuffer> tmpBufferList = inputStream.getUploadBufferList();
+            for (ByteBuffer buffer : tmpBufferList) {
+                buffer.rewind();
+            }
+            tmpBufferList.addAll(uploadBufferList);
+            uploadBufferList = tmpBufferList;
+            if (inputStream.getCodaBuffer() != null) {
+                codaBuffer.rewind();
+            }
+        } finally {
+            bufferLock.unlock();
+        }
+    }
+
+    public AppendResult append(ByteBuffer byteBuf, long timeStamp) {
+        if (closed) {
+            return AppendResult.FILE_CLOSE;
+        }
+        bufferLock.lock();
+        try {
+            if (full || codaBuffer != null) {
+                return AppendResult.FILE_FULL;
+            }
+
+            if (fileType == FileSegmentType.INDEX) {
+                beginTimestamp = 
byteBuf.getLong(TieredIndexFile.INDEX_FILE_HEADER_BEGIN_TIME_STAMP_POSITION);
+                endTimestamp = 
byteBuf.getLong(TieredIndexFile.INDEX_FILE_HEADER_END_TIME_STAMP_POSITION);
+                appendPosition += byteBuf.remaining();
+                uploadBufferList.add(byteBuf);
+                setFull();
+                return AppendResult.SUCCESS;
+            }
+
+            if (appendPosition + byteBuf.remaining() > maxSize) {
+                setFull();
+                return AppendResult.FILE_FULL;
+            }
+            if (uploadBufferList.size() > 
storeConfig.getTieredStoreGroupCommitCount()
+                || appendPosition - commitPosition > 
storeConfig.getTieredStoreGroupCommitSize()) {
+                commitAsync();
+            }
+            if (uploadBufferList.size() > 
storeConfig.getTieredStoreMaxGroupCommitCount()) {
+                LOGGER.debug("TieredFileSegment#append: buffer full: file: {}, 
upload buffer size: {}",
+                    getPath(), uploadBufferList.size());
+                return AppendResult.BUFFER_FULL;
+            }
+            if (timeStamp != Long.MAX_VALUE) {
+                endTimestamp = timeStamp;
+                if (beginTimestamp == Long.MAX_VALUE) {
+                    beginTimestamp = timeStamp;
+                }
+            }
+            appendPosition += byteBuf.remaining();
+            uploadBufferList.add(byteBuf);
+            return AppendResult.SUCCESS;
+        } finally {
+            bufferLock.unlock();
+        }
+    }
+
+    private void appendCoda() {
+        if (codaBuffer != null) {
+            return;
+        }
+        codaBuffer = ByteBuffer.allocate(TieredCommitLog.CODA_SIZE);
+        codaBuffer.putInt(TieredCommitLog.CODA_SIZE);
+        codaBuffer.putInt(TieredCommitLog.BLANK_MAGIC_CODE);
+        codaBuffer.putLong(endTimestamp);
+        codaBuffer.flip();
+        appendPosition += TieredCommitLog.CODA_SIZE;
+    }
+
+    public ByteBuffer read(long position, int length) {
+        return readAsync(position, length).join();
+    }
+
+    public CompletableFuture<ByteBuffer> readAsync(long position, int length) {
+        if (position < 0 || length < 0) {
+            throw new TieredStoreException(TieredStoreErrorCode.ILLEGAL_PARAM, 
"position or length is negative");
+        }
+        if (length == 0) {
+            throw new TieredStoreException(TieredStoreErrorCode.ILLEGAL_PARAM, 
"length is zero");
+        }
+        if (position + length > commitPosition) {
+            LOGGER.warn("TieredFileSegment#readAsync request position + length 
is greater than commit position," +
+                    " correct length using commit position, file: {}, request 
position: {}, commit position:{}, change length from {} to {}",
+                getPath(), position, commitPosition, length, commitPosition - 
position);
+            length = (int) (commitPosition - position);
+            if (length == 0) {
+                throw new 
TieredStoreException(TieredStoreErrorCode.NO_NEW_DATA, "request position is 
equal to commit position");
+            }
+            if (fileType == FileSegmentType.CONSUME_QUEUE && length % 
TieredConsumeQueue.CONSUME_QUEUE_STORE_UNIT_SIZE != 0) {
+                throw new 
TieredStoreException(TieredStoreErrorCode.ILLEGAL_PARAM, "position and length 
is illegal");
+            }
+        }
+        return read0(position, length);
+    }
+
+    public boolean needCommit() {
+        return appendPosition > commitPosition;
+    }
+
+    public boolean commit() {
+        if (closed) {
+            return false;
+        }
+        Boolean result = commitAsync().join();
+        if (!result) {
+            result = inflightCommitRequest.join();
+        }
+        return result;
+    }
+
+    public CompletableFuture<Boolean> commitAsync() {
+        if (closed) {
+            return CompletableFuture.completedFuture(false);
+        }
+        Stopwatch stopwatch = Stopwatch.createStarted();
+        if (!needCommit()) {
+            return CompletableFuture.completedFuture(true);
+        }
+        try {
+            int permits = commitLock.drainPermits();
+            if (permits <= 0) {
+                return CompletableFuture.completedFuture(false);
+            }
+        } catch (Exception e) {
+            return CompletableFuture.completedFuture(false);
+        }
+        List<ByteBuffer> bufferList = rollingUploadBuffer();
+        int bufferSize = 0;
+        for (ByteBuffer buffer : bufferList) {
+            bufferSize += buffer.remaining();
+        }
+        if (codaBuffer != null) {
+            bufferSize += codaBuffer.remaining();
+        }
+        if (bufferSize == 0) {
+            return CompletableFuture.completedFuture(true);
+        }
+        TieredFileSegmentInputStream inputStream = new 
TieredFileSegmentInputStream(fileType, baseOffset + commitPosition, bufferList, 
codaBuffer, bufferSize);
+        int finalBufferSize = bufferSize;
+        try {
+            inflightCommitRequest = commit0(inputStream, commitPosition, 
bufferSize, fileType != FileSegmentType.INDEX)
+                .thenApply(result -> {
+                    if (result) {
+                        if (fileType == FileSegmentType.COMMIT_LOG && 
bufferList.size() > 0) {
+                            commitMsgQueueOffset = 
MessageBufferUtil.getQueueOffset(bufferList.get(bufferList.size() - 1));
+                        }
+                        commitPosition += finalBufferSize;
+                        return true;
+                    }
+                    sendBackBuffer(inputStream);
+                    return false;
+                }).exceptionally(e -> handleCommitException(inputStream, e))
+                .whenComplete((result, e) -> {
+                    if (commitLock.availablePermits() == 0) {
+                        LOGGER.debug("TieredFileSegment#commitAsync: commit 
cost: {}ms, file: {}, item count: {}, buffer size: {}", 
stopwatch.elapsed(TimeUnit.MILLISECONDS), getPath(), bufferList.size(), 
finalBufferSize);
+                        commitLock.release();
+                    } else {
+                        LOGGER.error("[Bug]TieredFileSegment#commitAsync: 
commit lock is already released: available permits: {}", 
commitLock.availablePermits());
+                    }
+                });
+            return inflightCommitRequest;
+        } catch (Exception e) {
+            handleCommitException(inputStream, e);
+            if (commitLock.availablePermits() == 0) {
+                LOGGER.debug("TieredFileSegment#commitAsync: commit cost: 
{}ms, file: {}, item count: {}, buffer size: {}", 
stopwatch.elapsed(TimeUnit.MILLISECONDS), getPath(), bufferList.size(), 
finalBufferSize);
+                commitLock.release();
+            } else {
+                LOGGER.error("[Bug]TieredFileSegment#commitAsync: commit lock 
is already released: available permits: {}", commitLock.availablePermits());
+            }
+        }
+        return CompletableFuture.completedFuture(false);
+    }
+
+    private boolean handleCommitException(TieredFileSegmentInputStream 
inputStream, Throwable e) {
+        Throwable cause = e.getCause() != null ? e.getCause() : e;
+        sendBackBuffer(inputStream);
+        long realSize = 0;
+        if (cause instanceof TieredStoreException && ((TieredStoreException) 
cause).getPosition() > 0) {
+            realSize = ((TieredStoreException) cause).getPosition();
+        }
+        if (realSize <= 0) {
+            realSize = getSize();
+        }
+        if (realSize > 0 && realSize > commitPosition) {
+            LOGGER.error("TieredFileSegment#handleCommitException: commit 
failed: file: {}, try to fix position: origin: {}, real: {}", getPath(), 
commitPosition, realSize, cause);
+            // TODO check if this diff part is uploaded to OSS

Review Comment:
   Do you mean Object Storage Service? tiered storage should not be limited to 
specific implementation.



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

Reply via email to