Joscorbe commented on code in PR #2293: URL: https://github.com/apache/jackrabbit-oak/pull/2293#discussion_r2086557093
########## oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/Configuration.java: ########## @@ -417,4 +418,11 @@ name = "Enable Full GC Persistent Audit Logging", description = "This parameter will enable/disable the saving of deleted document IDs and properties during FullGC into a persistent storage, e.g Mongo collection") boolean fullGCAuditLoggingEnabled() default false; + + @AttributeDefinition( + name = "Avoid Exclusive Merge lock", + description = "Boolean value indicating whether we need to avoid the exclusive merge lock while " + + "merging the changes in case of a conflict. The Default value is " + DEFAULT_AVOID_MERGE_LOCK + + " Note that this value can be overridden via framework property 'oak.documentstore.avoidMergeLock'") + boolean avoidMergeLock() default DEFAULT_AVOID_MERGE_LOCK; Review Comment: I think this change makes sense to be more informative. Also in the property if possible: `oak.documentstore.avoidExclusiveMergeLock`. -- 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. To unsubscribe, e-mail: oak-dev-unsubscr...@jackrabbit.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org