thomasmueller commented on code in PR #1577:
URL: https://github.com/apache/jackrabbit-oak/pull/1577#discussion_r1746606393
##########
oak-run-commons/src/main/java/org/apache/jackrabbit/oak/index/indexer/document/flatfile/FlatFileNodeStoreBuilder.java:
##########
@@ -283,7 +324,7 @@ public List<IndexStore> buildList(IndexHelper indexHelper,
IndexerSupport indexe
private IndexStoreFiles createdSortedStoreFiles() throws IOException,
CompositeException {
// Check system property defined path
String sortedFilePath =
System.getProperty(OAK_INDEXER_SORTED_FILE_PATH);
- if (StringUtils.isNotBlank(sortedFilePath)) {
+ if (sortedFilePath != null && !sortedFilePath.isEmpty()) {
Review Comment:
Fixed.
##########
oak-run-commons/src/main/java/org/apache/jackrabbit/oak/index/indexer/document/flatfile/pipelined/PipelinedTransformTask.java:
##########
@@ -160,7 +160,7 @@ public Result call() throws Exception {
for (NodeDocument nodeDoc : nodeDocumentBatch) {
statistics.incrementMongoDocumentsTraversed();
mongoObjectsProcessed++;
- if (mongoObjectsProcessed % 50000 == 0) {
+ if (mongoObjectsProcessed % 200_000 == 0) {
Review Comment:
Fixed.
--
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]