[
https://issues.apache.org/jira/browse/ARTEMIS-3327?focusedWorklogId=605606&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-605606
]
ASF GitHub Bot logged work on ARTEMIS-3327:
-------------------------------------------
Author: ASF GitHub Bot
Created on: 02/Jun/21 22:46
Start Date: 02/Jun/21 22:46
Worklog Time Spent: 10m
Work Description: clebertsuconic commented on a change in pull request
#3605:
URL: https://github.com/apache/activemq-artemis/pull/3605#discussion_r644367543
##########
File path:
artemis-journal/src/main/java/org/apache/activemq/artemis/core/journal/impl/JournalImpl.java
##########
@@ -1075,14 +1067,27 @@ private void internalAppendUpdateRecord(long id,
Persister persister,
Object record,
boolean sync,
+ BiConsumer<Long, Boolean>
updateCallback,
IOCompletion callback) throws
InterruptedException, java.util.concurrent.ExecutionException {
- final SimpleFuture<Boolean> result = newSyncAndCallbackResult(sync,
callback);
appendExecutor.execute(new Runnable() {
@Override
public void run() {
journalLock.readLock().lock();
try {
JournalRecord jrnRecord = records.get(id);
+ if (jrnRecord == null) {
+ if (compactor == null || (!compactor.containsRecord(id))) {
+ if (updateCallback != null) {
+ updateCallback.accept(id, false);
Review comment:
done
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 605606)
Time Spent: 1h 20m (was: 1h 10m)
> Remove unnecessary block operations on journal update
> -----------------------------------------------------
>
> Key: ARTEMIS-3327
> URL: https://issues.apache.org/jira/browse/ARTEMIS-3327
> Project: ActiveMQ Artemis
> Issue Type: Improvement
> Reporter: Clebert Suconic
> Priority: Major
> Time Spent: 1h 20m
> Remaining Estimate: 0h
>
--
This message was sent by Atlassian Jira
(v8.3.4#803005)