This is an automated email from the ASF dual-hosted git repository.
jsedding pushed a change to branch jsedding/OAK-12085-oom-in-segment-azure-tests
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
discard 6bd9d2b36c OAK-12085 - OutOfMemory in oak-segment-azure tests
add b00658b8bf OAK-12010 Simplified index management (without optimizer)
(#2689)
add 66c8a612a6 OAK-12087 : bump netty to 4.1.131.Final (#2731)
add bf73a3ed07 OAK-12088 : added connectionAcquisitionTimeout to avoid
acquire timeout issue (#2732)
add 93643c5b32 OAK-12082: add test coverage for
org.apache.jackrabbit.oak.jcr.xml.BuffferedStringValue (#2728)
add ef8f1d3d0d OAK-12085: OutOfMemory in oak-segment-azure tests -
reverting changes for OAK-12039 (#2738)
add 21c2414424 OAK-12010 (Remove misplaced files)
add 743f0e7de8 Revert "OAK-12085: OutOfMemory in oak-segment-azure tests -
reverting changes for OAK-12039 (#2738)"
add c8ad0b78b4 OAK-12085 - OutOfMemory in oak-segment-azure tests
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (6bd9d2b36c)
\
N -- N -- N
refs/heads/jsedding/OAK-12085-oom-in-segment-azure-tests (c8ad0b78b4)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.../apache/jackrabbit/oak/blob/cloud/s3/Utils.java | 2 +
.../jackrabbit/oak/plugins/index/IndexName.java | 17 +
.../jackrabbit/oak/plugins/index/IndexUpdate.java | 21 +
.../oak/plugins/index/diff/DiffIndex.java | 276 +++++++
.../oak/plugins/index/diff/DiffIndexMerger.java | 853 +++++++++++++++++++++
.../oak/plugins/index/diff/JsonNodeUpdater.java | 181 +++--
.../plugins/index/diff/RootIndexesListService.java | 112 +++
.../oak/plugins/index/diff/DiffIndexTest.java | 307 ++++++++
.../plugins/index/diff/JsonNodeUpdaterTest.java | 226 ++++++
.../oak/plugins/index/diff/MergeTest.java | 440 +++++++++++
.../jackrabbit/oak/plugins/index/diff/indexes.json | 187 +++++
.../oak/jcr/xml/BufferedStringValueTest.java | 279 +++++++
oak-parent/pom.xml | 2 +-
.../index/search/spi/query/FulltextIndex.java | 2 +
.../index/search/spi/query/IndexNameTest.java | 52 ++
15 files changed, 2900 insertions(+), 57 deletions(-)
create mode 100644
oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/diff/DiffIndex.java
create mode 100644
oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/diff/DiffIndexMerger.java
copy
oak-store-spi/src/main/java/org/apache/jackrabbit/oak/json/JsonNodeBuilder.java
=>
oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/diff/JsonNodeUpdater.java
(53%)
create mode 100644
oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/diff/RootIndexesListService.java
create mode 100644
oak-core/src/test/java/org/apache/jackrabbit/oak/plugins/index/diff/DiffIndexTest.java
create mode 100644
oak-core/src/test/java/org/apache/jackrabbit/oak/plugins/index/diff/JsonNodeUpdaterTest.java
create mode 100644
oak-core/src/test/java/org/apache/jackrabbit/oak/plugins/index/diff/MergeTest.java
create mode 100644
oak-core/src/test/resources/org/apache/jackrabbit/oak/plugins/index/diff/indexes.json
create mode 100644
oak-jcr/src/test/java/org/apache/jackrabbit/oak/jcr/xml/BufferedStringValueTest.java