msokolov commented on a change in pull request #1155: LUCENE-8962: Add ability 
to selectively merge on commit
URL: https://github.com/apache/lucene-solr/pull/1155#discussion_r365838434
 
 

 ##########
 File path: lucene/core/src/java/org/apache/lucene/index/IndexWriter.java
 ##########
 @@ -3223,15 +3259,44 @@ private long prepareCommitInternal() throws 
IOException {
               // sneak into the commit point:
               toCommit = segmentInfos.clone();
 
+              if (anyChanges) {
+                mergeAwaitLatchRef = new AtomicReference<>();
+                MergePolicy mergeOnCommitPolicy = 
waitForMergeOnCommitPolicy(config.getMergePolicy(), toCommit, 
mergeAwaitLatchRef);
+
+                // Find any merges that can execute on commit (per 
MergePolicy).
+                commitMerges = 
mergeOnCommitPolicy.findCommitMerges(segmentInfos, this);
+                if (commitMerges != null && commitMerges.merges.size() > 0) {
+                  int mergeCount = 0;
+                  for (MergePolicy.OneMerge oneMerge : commitMerges.merges) {
+                    if (registerMerge(oneMerge)) {
+                      mergeCount++;
+                    } else {
+                      throw new IllegalStateException("MergePolicy " + 
config.getMergePolicy().getClass() +
 
 Review comment:
   I If we fail to registerMerge does it necessarily mean the segment was 
already being merged?

----------------------------------------------------------------
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:
us...@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org
For additional commands, e-mail: issues-h...@lucene.apache.org

Reply via email to