Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ISSUE #8765] fix low performance of delay message when enable rocksdb consume queue #8766

Open
wants to merge 7 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -234,22 +234,17 @@ public long getMinOffsetInQueue() {
private int pullNum(long cqOffset, long maxCqOffset) {
long diffLong = maxCqOffset - cqOffset;
if (diffLong < Integer.MAX_VALUE) {
int diffInt = (int) diffLong;
return diffInt > 16 ? 16 : diffInt;
return (int) diffLong;
}
return 16;
return Integer.MAX_VALUE;
}

@Override
public ReferredIterator<CqUnit> iterateFrom(final long startIndex) {
try {
long maxCqOffset = getMaxOffsetInQueue();
if (startIndex < maxCqOffset) {
int num = pullNum(startIndex, maxCqOffset);
return iterateFrom0(startIndex, num);
}
} catch (RocksDBException e) {
log.error("[RocksDBConsumeQueue] iterateFrom error!", e);
long maxCqOffset = getMaxOffsetInQueue();
if (startIndex < maxCqOffset) {
int num = pullNum(startIndex, maxCqOffset);
return new LargeRocksDBConsumeQueueIterator(startIndex, num);
}
return null;
}
Expand Down Expand Up @@ -391,4 +386,61 @@ public CqUnit nextAndRelease() {
}
}
}

private class LargeRocksDBConsumeQueueIterator implements ReferredIterator<CqUnit> {
private final long startIndex;
private final int totalCount;
private int currentIndex;

public LargeRocksDBConsumeQueueIterator(final long startIndex, final int num) {
this.startIndex = startIndex;
this.totalCount = num;
this.currentIndex = 0;
}

@Override
public boolean hasNext() {
return this.currentIndex < this.totalCount;
}


@Override
public CqUnit next() {
if (!hasNext()) {
return null;
}

final ByteBuffer byteBuffer;
try {
byteBuffer = messageStore.getQueueStore().get(topic, queueId, startIndex + currentIndex);
} catch (RocksDBException e) {
ERROR_LOG.error("get cq from rocksdb failed. topic: {}, queueId: {}", topic, queueId, e);
return null;
}
if (byteBuffer == null || byteBuffer.remaining() < RocksDBConsumeQueueTable.CQ_UNIT_SIZE) {
return null;
}
CqUnit cqUnit = new CqUnit(this.startIndex + currentIndex, byteBuffer.getLong(), byteBuffer.getInt(), byteBuffer.getLong());
this.currentIndex++;
return cqUnit;
}

@Override
public void remove() {
throw new UnsupportedOperationException("remove");
}

@Override
public void release() {
}

@Override
public CqUnit nextAndRelease() {
try {
return next();
} finally {
release();
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
/*
* 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 org.apache.rocketmq.common.MixAll;
import org.apache.rocketmq.store.DefaultMessageStore;
import org.junit.Test;
import org.mockito.invocation.InvocationOnMock;
import org.mockito.stubbing.Answer;

import java.nio.ByteBuffer;

import static org.apache.rocketmq.store.queue.RocksDBConsumeQueueTable.CQ_UNIT_SIZE;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.mockito.ArgumentMatchers.anyInt;
import static org.mockito.ArgumentMatchers.anyLong;
import static org.mockito.ArgumentMatchers.anyString;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;

public class RocksDBConsumeQueueTest extends QueueTestBase {

@Test
public void testIterator() throws Exception {
if (MixAll.isMac()) {
return;
}
DefaultMessageStore messageStore = mock(DefaultMessageStore.class);
RocksDBConsumeQueueStore rocksDBConsumeQueueStore = mock(RocksDBConsumeQueueStore.class);
when(messageStore.getQueueStore()).thenReturn(rocksDBConsumeQueueStore);
when(rocksDBConsumeQueueStore.getMaxOffsetInQueue(anyString(), anyInt())).thenReturn(10000L);
when(rocksDBConsumeQueueStore.get(anyString(), anyInt(), anyLong())).then(new Answer<ByteBuffer>() {
@Override
public ByteBuffer answer(InvocationOnMock mock) throws Throwable {
long startIndex = mock.getArgument(2);
final ByteBuffer byteBuffer = ByteBuffer.allocate(CQ_UNIT_SIZE);
long phyOffset = startIndex * 10;
byteBuffer.putLong(phyOffset);
byteBuffer.putInt(1);
byteBuffer.putLong(0);
byteBuffer.putLong(0);
byteBuffer.flip();
return byteBuffer;
}
});

RocksDBConsumeQueue consumeQueue = new RocksDBConsumeQueue(messageStore, "topic", 0);
ReferredIterator<CqUnit> it = consumeQueue.iterateFrom(9000);
for (int i = 0; i < 1000; i++) {
assertTrue(it.hasNext());
CqUnit next = it.next();
assertEquals(9000 + i, next.getQueueOffset());
assertEquals(10 * (9000 + i), next.getPos());
}
assertFalse(it.hasNext());
}
}
Loading