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

daim pushed a change to branch OAK-11769
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git


    omit 13f197f878 OAK-11769 : added apache commons-math3 to test-bundles.xml
    omit ce0dc17aad OAK-11769 : replaced Doubles.fuzzyCompare with 
commons-math3 Precision
     add 432021bcce OAK-11737: Fix some properties not being properly passed to 
FullGC revisions command (#2307)
     add 56dfda44a9 OAK-11749: update Tomcat dependency to 9.0.105 (#2347)
     add b9c3070c74 OAK-11769 : replaced DoubleMath.fuzzyCompare with 
commons-math3 Precision (#2345)
     add 6b6949adfd Revert "OAK-11769 : replaced DoubleMath.fuzzyCompare with 
commons-math3 Precision (#2345)"
     add 1c85b3abdf OAK-11765 - BulkProcessor unable to insert after a failure 
(#2343)
     add 1906d3c5a1 OAK-11720: Introduce tests for exclusive merge lock (#2351)
     add 201c1c894f OAK-11766 Write Throttling Mechanism - Session.save() delay 
(#2339)
     add 0d39afccdc OAK-11777  - Fix flaky test. (#2353)
     add 6d8d3bb79a OAK-11737: Print paths ordered, to ensure tests are 
deterministic. (#2354)
     add a33c43ddfd OAK-11775: improve `is null` queries for elasticsearch 
indexes (#2346)
     add 7c96ca531a Revert "OAK-11766 Write Throttling Mechanism - 
Session.save() delay (#2339)"
     add 831b923b66 OAK-11769 : replaced Doubles.fuzzyCompare with 
commons-math3 Precision
     add c8e935021d OAK-11769 : added apache commons-math3 to test-bundles.xml

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   (13f197f878)
            \
             N -- N -- N   refs/heads/OAK-11769 (c8e935021d)

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:
 .../plugins/index/TrackingCorruptIndexHandler.java |   2 +-
 oak-examples/webapp/pom.xml                        |   2 +-
 oak-parent/pom.xml                                 |   4 +-
 .../plugins/document/DocumentNodeStoreHelper.java  |   4 +-
 .../oak/index/ElasticDocumentStoreIndexer.java     |   5 +-
 .../oak/index/ElasticOutOfBandIndexer.java         |   5 +-
 .../indexer/document/ElasticIndexerProvider.java   |   7 +-
 .../jackrabbit/oak/run/RevisionsCommand.java       |  35 ++---
 .../oak/plugins/document/RevisionsCommandTest.java |  22 +++-
 oak-search-elastic/pom.xml                         |   2 +-
 .../plugins/index/elastic/ElasticConnection.java   |   1 +
 .../index/elastic/ElasticIndexDefinition.java      |  10 +-
 .../index/elastic/ElasticIndexProviderService.java |  10 +-
 .../oak/plugins/index/elastic/ElasticSemVer.java   |  13 +-
 .../elastic/index/ElasticBulkProcessorHandler.java | 137 +++++++-------------
 .../index/elastic/index/ElasticDocument.java       |   7 +
 .../index/elastic/index/ElasticDocumentMaker.java  |   7 +-
 .../elastic/index/ElasticIndexEditorProvider.java  |  21 ++-
 .../index/elastic/index/ElasticIndexHelper.java    |  10 +-
 .../index/elastic/index/ElasticIndexWriter.java    |  15 ++-
 .../elastic/index/ElasticIndexWriterFactory.java   |   8 +-
 .../index/elastic/index/ElasticRetryPolicy.java    | 142 +++++++++++++++++++++
 .../index/elastic/query/ElasticRequestHandler.java |  20 ++-
 .../index/elastic/ElasticAbstractQueryTest.java    |  15 ++-
 .../index/elastic/ElasticConnectionRule.java       |   7 +
 .../elastic/ElasticIndexProviderServiceTest.java   |  23 ++++
 .../elastic/ElasticPropertyIndexFailuresTest.java  |   3 +
 .../ElasticPropertyIndexNonFailureTest.java        |   4 +
 .../index/elastic/ElasticPropertyIndexTest.java    |   3 +
 .../elastic/ElasticRegexPropertyIndexTest.java     |  17 ++-
 .../ElasticReliabilityAsyncIndexingTest.java       | 114 +++++++++++++++++
 ...ava => ElasticReliabilitySyncIndexingTest.java} |  93 ++++++--------
 .../index/elastic/ElasticReliabilityTest.java      |  71 +++--------
 .../index/elastic/index/ElasticIndexTest.java      |   2 +-
 .../elastic/index/ElasticIndexWriterITTest.java    | 117 +++++++++++++++++
 .../index/ElasticsearchRetryPolicyTest.java        | 113 ++++++++++++++++
 .../index/search/FulltextIndexConstants.java       |   2 +-
 .../search/spi/editor/FulltextIndexEditor.java     |   2 +-
 .../oak/plugins/document/FullGCMode.java           |   2 +-
 .../plugins/document/VersionGarbageCollector.java  |  38 +++++-
 .../document/DocumentNodeStoreBranchTest.java      | 125 ++++++++++++++++++
 41 files changed, 978 insertions(+), 262 deletions(-)
 create mode 100644 
oak-search-elastic/src/main/java/org/apache/jackrabbit/oak/plugins/index/elastic/index/ElasticRetryPolicy.java
 create mode 100644 
oak-search-elastic/src/test/java/org/apache/jackrabbit/oak/plugins/index/elastic/ElasticReliabilityAsyncIndexingTest.java
 copy 
oak-search-elastic/src/test/java/org/apache/jackrabbit/oak/plugins/index/elastic/{ElasticReliabilityTest.java
 => ElasticReliabilitySyncIndexingTest.java} (58%)
 create mode 100644 
oak-search-elastic/src/test/java/org/apache/jackrabbit/oak/plugins/index/elastic/index/ElasticIndexWriterITTest.java
 create mode 100644 
oak-search-elastic/src/test/java/org/apache/jackrabbit/oak/plugins/index/elastic/index/ElasticsearchRetryPolicyTest.java

Reply via email to