[ 
https://issues.apache.org/jira/browse/ARTEMIS-3327?focusedWorklogId=605566&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-605566
 ]

ASF GitHub Bot logged work on ARTEMIS-3327:
-------------------------------------------

                Author: ASF GitHub Bot
            Created on: 02/Jun/21 21:37
            Start Date: 02/Jun/21 21:37
    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_r644337348



##########
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))) {

Review comment:
       the compactor is only changed on writeLock. it is safe to just use the 
compactor directly here.




-- 
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: 605566)
    Time Spent: 40m  (was: 0.5h)

> 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: 40m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to