You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by am...@apache.org on 2022/11/21 10:25:41 UTC

[jackrabbit-oak] branch trunk updated: OAK-10008: Reduce heap requirement for test DocumentStoreIndexeIT#parallelReindexWithLZ4 (#761)

This is an automated email from the ASF dual-hosted git repository.

amitj pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git


The following commit(s) were added to refs/heads/trunk by this push:
     new cf8c866673 OAK-10008: Reduce heap requirement for test DocumentStoreIndexeIT#parallelReindexWithLZ4 (#761)
cf8c866673 is described below

commit cf8c866673f07929f286957fa81a9fd9d0608902
Author: Amit Jain <am...@apache.org>
AuthorDate: Mon Nov 21 15:55:34 2022 +0530

    OAK-10008: Reduce heap requirement for test DocumentStoreIndexeIT#parallelReindexWithLZ4 (#761)
    
    - Reduce split size to 2
---
 .../java/org/apache/jackrabbit/oak/index/DocumentStoreIndexerIT.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/oak-run/src/test/java/org/apache/jackrabbit/oak/index/DocumentStoreIndexerIT.java b/oak-run/src/test/java/org/apache/jackrabbit/oak/index/DocumentStoreIndexerIT.java
index 520dfe2e36..9ede6cd67a 100644
--- a/oak-run/src/test/java/org/apache/jackrabbit/oak/index/DocumentStoreIndexerIT.java
+++ b/oak-run/src/test/java/org/apache/jackrabbit/oak/index/DocumentStoreIndexerIT.java
@@ -193,7 +193,7 @@ public class DocumentStoreIndexerIT extends AbstractIndexCommandTest {
         System.setProperty("oak.indexer.minMemoryForWork", "1");
         System.setProperty(IndexerConfiguration.PROP_OAK_INDEXER_PARALLEL_INDEX, "true");
         System.setProperty(IndexerConfiguration.PROP_OAK_INDEXER_MIN_SPLIT_THRESHOLD, "0");
-        System.setProperty(IndexerConfiguration.PROP_SPLIT_STORE_SIZE, "6");
+        System.setProperty(IndexerConfiguration.PROP_SPLIT_STORE_SIZE, "2");
         System.setProperty(IndexerConfiguration.PROP_OAK_INDEXER_THREAD_POOL_SIZE, "2");
         System.setProperty(FlatFileNodeStoreBuilder.OAK_INDEXER_USE_ZIP, "true");