ierandra commented on code in PR #2604:
URL: https://github.com/apache/jackrabbit-oak/pull/2604#discussion_r2493582583
##########
oak-segment-azure/src/main/java/org/apache/jackrabbit/oak/segment/azure/AzureArchiveManager.java:
##########
@@ -61,6 +62,12 @@ public class AzureArchiveManager implements
SegmentArchiveManager {
private static final String CLOSED_ARCHIVE_MARKER = "closed";
+ public static final String COPY_BATCH_SIZE_PROP =
"segment.azure.batch.copy.size";
+
+ private static final int DEFAULT_COPY_BATCH = 1000;
+
+ private static final int COPY_BATCH =
Integer.getInteger(COPY_BATCH_SIZE_PROP, DEFAULT_COPY_BATCH);
Review Comment:
you mean `static` not `final` right? then I agree, I will remove
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]