This is an automated email from the ASF dual-hosted git repository.
clebertsuconic pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
The following commit(s) were added to refs/heads/main by this push:
new 52fcc0c ARTEMIS-3620 Journal blocking delete/update record with no
sync
new 7e4191e This closes #3889
52fcc0c is described below
commit 52fcc0c81b84c3f6896b4a7ada97df7ff2831f8c
Author: franz1981 <[email protected]>
AuthorDate: Wed Dec 22 16:53:00 2021 +0100
ARTEMIS-3620 Journal blocking delete/update record with no sync
---
.../core/journal/JournalUpdateCallback.java | 2 +-
.../artemis/core/journal/impl/JournalImpl.java | 39 +++++--
.../performance/jmh/JournalSyncDeletePerfTest.java | 128 +++++++++++++++++++++
3 files changed, 159 insertions(+), 10 deletions(-)
diff --git
a/artemis-journal/src/main/java/org/apache/activemq/artemis/core/journal/JournalUpdateCallback.java
b/artemis-journal/src/main/java/org/apache/activemq/artemis/core/journal/JournalUpdateCallback.java
index 2d595af..70e8521 100644
---
a/artemis-journal/src/main/java/org/apache/activemq/artemis/core/journal/JournalUpdateCallback.java
+++
b/artemis-journal/src/main/java/org/apache/activemq/artemis/core/journal/JournalUpdateCallback.java
@@ -17,7 +17,7 @@
package org.apache.activemq.artemis.core.journal;
-
+@FunctionalInterface
public interface JournalUpdateCallback {
void onUpdate(long record, boolean result);
}
diff --git
a/artemis-journal/src/main/java/org/apache/activemq/artemis/core/journal/impl/JournalImpl.java
b/artemis-journal/src/main/java/org/apache/activemq/artemis/core/journal/impl/JournalImpl.java
index fccafc7..0d0a64e 100644
---
a/artemis-journal/src/main/java/org/apache/activemq/artemis/core/journal/impl/JournalImpl.java
+++
b/artemis-journal/src/main/java/org/apache/activemq/artemis/core/journal/impl/JournalImpl.java
@@ -56,6 +56,7 @@ import org.apache.activemq.artemis.api.core.ActiveMQBuffers;
import org.apache.activemq.artemis.api.core.ActiveMQExceptionType;
import org.apache.activemq.artemis.api.core.ActiveMQShutdownException;
import org.apache.activemq.artemis.api.core.Pair;
+import org.apache.activemq.artemis.core.io.DummyCallback;
import org.apache.activemq.artemis.core.io.IOCallback;
import org.apache.activemq.artemis.core.io.IOCriticalErrorListener;
import org.apache.activemq.artemis.core.io.SequentialFile;
@@ -1052,11 +1053,21 @@ public class JournalImpl extends JournalBase implements
TestableJournal, Journal
recordType);
}
- SimpleFuture<Boolean> future = new SimpleFutureImpl<>();
+ final SimpleFuture<Boolean> onFoundAddInfo;
- internalAppendUpdateRecord(id, recordType, persister, record, sync,
false, (t, v) -> future.set(v), callback);
+ if (!sync && (callback == null || callback ==
DummyCallback.getInstance())) {
+ onFoundAddInfo = null;
+ } else {
+ onFoundAddInfo = new SimpleFutureImpl<>();
+ }
+
+ if (onFoundAddInfo == null) {
+ internalAppendUpdateRecord(id, recordType, persister, record, false,
false, null, callback);
+ } else {
+ internalAppendUpdateRecord(id, recordType, persister, record, sync,
false, (t, v) -> onFoundAddInfo.set(v), callback);
+ }
- if (!future.get()) {
+ if (onFoundAddInfo != null && !onFoundAddInfo.get()) {
throw new IllegalStateException("Cannot find add info " + id);
}
}
@@ -1161,20 +1172,30 @@ public class JournalImpl extends JournalBase implements
TestableJournal, Journal
@Override
public void appendDeleteRecord(final long id, final boolean sync, final
IOCompletion callback) throws Exception {
-
if (logger.isTraceEnabled()) {
logger.trace("scheduling appendDeleteRecord::id=" + id);
}
-
checkJournalIsLoaded();
lineUpContext(callback);
- SimpleFuture<Boolean> future = new SimpleFutureImpl<>();
- internalAppendDeleteRecord(id, sync, (t, v) -> future.set(v), callback);
- if (!future.get()) {
+
+ final SimpleFuture<Boolean> onFoundAddInfo;
+
+ if (!sync && (callback == null || callback ==
DummyCallback.getInstance())) {
+ onFoundAddInfo = null;
+ } else {
+ onFoundAddInfo = new SimpleFutureImpl<>();
+ }
+
+ if (onFoundAddInfo == null) {
+ internalAppendDeleteRecord(id, false, null, callback);
+ } else {
+ internalAppendDeleteRecord(id, sync, (record, result) ->
onFoundAddInfo.set(result), callback);
+ }
+
+ if (onFoundAddInfo != null && !onFoundAddInfo.get()) {
throw new IllegalStateException("Cannot find add info " + id);
}
- return;
}
diff --git
a/tests/performance-jmh/src/main/java/org/apache/activemq/artemis/tests/performance/jmh/JournalSyncDeletePerfTest.java
b/tests/performance-jmh/src/main/java/org/apache/activemq/artemis/tests/performance/jmh/JournalSyncDeletePerfTest.java
new file mode 100644
index 0000000..080af63
--- /dev/null
+++
b/tests/performance-jmh/src/main/java/org/apache/activemq/artemis/tests/performance/jmh/JournalSyncDeletePerfTest.java
@@ -0,0 +1,128 @@
+/*
+ * 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.activemq.artemis.tests.performance.jmh;
+
+import java.io.File;
+import java.util.Arrays;
+import java.util.concurrent.TimeUnit;
+import java.util.concurrent.atomic.AtomicLong;
+import java.util.stream.Stream;
+
+import org.apache.activemq.artemis.core.io.SequentialFileFactory;
+import org.apache.activemq.artemis.core.io.nio.NIOSequentialFileFactory;
+import org.apache.activemq.artemis.core.journal.Journal;
+import org.apache.activemq.artemis.core.journal.impl.JournalImpl;
+import org.openjdk.jmh.annotations.Benchmark;
+import org.openjdk.jmh.annotations.BenchmarkMode;
+import org.openjdk.jmh.annotations.Fork;
+import org.openjdk.jmh.annotations.Measurement;
+import org.openjdk.jmh.annotations.Mode;
+import org.openjdk.jmh.annotations.OutputTimeUnit;
+import org.openjdk.jmh.annotations.Param;
+import org.openjdk.jmh.annotations.Scope;
+import org.openjdk.jmh.annotations.Setup;
+import org.openjdk.jmh.annotations.State;
+import org.openjdk.jmh.annotations.TearDown;
+import org.openjdk.jmh.annotations.Warmup;
+
+@State(Scope.Benchmark)
+@Fork(2)
+@Warmup(iterations = 5, time = 1)
+@Measurement(iterations = 10, time = 2)
+@BenchmarkMode(Mode.AverageTime)
+@OutputTimeUnit(TimeUnit.MICROSECONDS)
+public class JournalSyncDeletePerfTest {
+
+ private static final String STORE_DIR = System.getProperty("user.dir") +
File.separator + "JournalSyncDeletePerfTest";
+ private static final String FILE_PREFIX = "perf";
+ private static final String FILE_EXTENSION = "amq";
+ private static final byte RECORD_TYPE = 0;
+
+ @Param({"100", "1000"})
+ private int records;
+ @Param({"64"})
+ private int recordSize;
+ @Param({"10485760"})
+ private int fileSize;
+ @Param({"4"})
+ private int minFiles;
+ @Param({"20"})
+ private int poolSize;
+ @Param({"10"})
+ private int compactMinFiles;
+ @Param({"30"})
+ private int compactPercentage;
+
+ private SequentialFileFactory factory;
+ private AtomicLong ranges;
+ private Journal journal;
+ private byte[] recordData;
+
+ @Setup
+ public void init() throws Exception {
+ ranges = new AtomicLong();
+ File storeDir = new File(STORE_DIR);
+ factory = new NIOSequentialFileFactory(storeDir, false,
1).setDatasync(false);
+ factory.start();
+ factory.createDirs();
+ journal = new JournalImpl(fileSize, minFiles, poolSize, compactMinFiles,
compactPercentage, factory, FILE_PREFIX, FILE_EXTENSION, factory.getMaxIO());
+ journal.replaceableRecord(RECORD_TYPE);
+ journal.start();
+ journal.loadInternalOnly();
+ recordData = new byte[recordSize];
+ Arrays.fill(recordData, (byte) 1);
+ }
+
+ @State(Scope.Thread)
+ public static class RecordRange {
+
+ private long recordId;
+
+ @Setup
+ public void init(JournalSyncDeletePerfTest test) {
+ recordId = test.ranges.getAndAdd(test.records);
+ }
+ }
+
+ @Benchmark
+ public void batchAppendUpdateDelete(final RecordRange range) throws
Exception {
+ final long firstRecordId = range.recordId;
+ final byte[] recordData = this.recordData;
+ for (int i = 0; i < records - 1; i++) {
+ journal.appendAddRecord(firstRecordId + i, RECORD_TYPE, recordData,
false);
+ journal.appendUpdateRecord(firstRecordId + i, RECORD_TYPE,
recordData, false);
+ journal.appendDeleteRecord(firstRecordId + i, false);
+ }
+ final long lastRecordId = firstRecordId + (records - 1);
+ journal.appendAddRecord(lastRecordId, RECORD_TYPE, recordData, false);
+ journal.appendUpdateRecord(lastRecordId, RECORD_TYPE, recordData, false);
+ journal.appendDeleteRecord(lastRecordId, true);
+ }
+
+ @TearDown
+ public synchronized void stop() {
+ try {
+ journal.stop();
+ } catch (Exception ignore) {
+
+ }
+ factory.stop();
+ Stream.of(factory.getDirectory().listFiles()).forEach(File::delete);
+ factory.getDirectory().delete();
+ }
+
+}