This is an automated email from the ASF dual-hosted git repository. mkataria pushed a change to branch trunk in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
from cef242abb2 Revert "Set LZ4 as the default compression algorithm for the indexing job. (#1133)" add 0b6e538736 OAK-10453 - Pipelined strategy: enforce size limit on memory taken by objects in the queue between download and transform thread (#1130) No new revisions were added by this update. Summary of changes: .../indexer/document/DocumentStoreIndexerBase.java | 5 + .../flatfile/FlatFileNodeStoreBuilder.java | 10 +- .../flatfile/pipelined/NodeDocumentCodec.java | 161 ++++++++++++++ .../pipelined/NodeDocumentCodecProvider.java | 45 ++++ .../flatfile/pipelined/NodeStateEntryBatch.java | 6 +- .../pipelined/PipelinedMongoDownloadTask.java | 100 +++++---- .../flatfile/pipelined/PipelinedStrategy.java | 233 +++++++++++++-------- .../flatfile/pipelined/PipelinedTransformTask.java | 110 +++++----- .../document/flatfile/pipelined/PipelinedIT.java | 118 ++++++++--- .../pipelined/PipelinedMongoDownloadTaskTest.java | 50 +++-- .../incrementalstore/IncrementalStoreIT.java | 67 +++--- .../src/test/resources/logback-test.xml | 2 + .../oak/index/DocumentStoreIndexerIT.java | 124 ++++++----- 13 files changed, 700 insertions(+), 331 deletions(-) create mode 100644 oak-run-commons/src/main/java/org/apache/jackrabbit/oak/index/indexer/document/flatfile/pipelined/NodeDocumentCodec.java create mode 100644 oak-run-commons/src/main/java/org/apache/jackrabbit/oak/index/indexer/document/flatfile/pipelined/NodeDocumentCodecProvider.java