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

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


    omit d1fa0bb92e OAK-10199 : renamed method name to avoid confusion with 
other variable of same name
    omit 6f640e9ae5 OAK-10199 : added unit cases for bundled properties getting 
garbaged collected as well
    omit da5c14a1e8 OAK-10199 : added bundled properties while calculating the 
properties retain set as well
    omit e0a1ff163d OAK-10199 : added review comment to make minor adjustment 
for naming conventions and fixes
    omit de97c05e11 OAK-10199 : refactored RDBVersionGCSupport code
    omit bbd029f42e OAK-10199 : fixed query to avoid skipping documents with 
greater _modified timestamp
    omit 5f987d477d OAK-10199 : added logic to skip non garbage documents
    omit 6381c40a26 OAK-10199 : added unit cases to handle concurrent prop 
update and escaped properties update
    omit 50d81db869 OAK-10199 : handled escaped properties while deleting them
    omit f111f6d468 OAK-10199 : added test case to continue with GC even if 
there is crash
    omit 310635194f OAK-10199 : fixed logic to include previously garbage 
collected documents if updated recently
    omit 8766f6f261 OAK-10199 : fixed the VG INIT test
    omit ca1e09e262 OAK-10199 : fixed the VGC IT test cases failures for RDB
    omit 2b11872ff5 OAK-10199 : fixed the test case with different revision for 
DetailedGC
    omit 70c25b6ed3 OAK-10199 : added check to include oldestId when running 
detailedGc very first time
    omit 7836e5d720 OAK-10199 : added test cases to fetch 5000+ modified docs 
in loop and verify them
    omit 73234da322 OAK-10199 : minor refactoring
    omit 388907a585 OAK-10199 : updated logic to fetch nodes by sorting them on 
the basis of _modified & _id
    omit 512f6554d3 OAK-10199 : fixed code smells as suggested by Sonar
    omit 4f7c023ad0 OAK-10199 : ignore documents which doesn't have _modified 
field in mongo while fetching modifiedDocs
    omit b7665d8971 OAK-10199 : used bulk findAndModify api to perform garbage 
cleanup
    omit bbd8314144 OAK-10199 : override getModifiedDocs() for RDB and added 
unit cases for deletedProps
    omit 3c03290a2a OAK-10199 : provided support for feature toggle & osgi 
config for detailed gc
    omit c1d9228f28 OAK-10199 : disable the detailGc in tearDown to avoid 
side-effects
    omit f6b1e000aa OAK-10199 : initial sketch of detail gc skeleton
     add 958e1ff69d OAK-10372: oak-search-elastic: similarity queries produce 
no relevant results (#1046)
     add 06a5f5c092 OAK-10199 : initial sketch of detail gc skeleton
     add 07d5aa3b6d OAK-10199 : disable the detailGc in tearDown to avoid 
side-effects
     add be357f4775 OAK-10199 : provided support for feature toggle & osgi 
config for detailed gc
     add 0aa60e6259 OAK-10199 : override getModifiedDocs() for RDB and added 
unit cases for deletedProps
     add 9182d71a51 OAK-10199 : used bulk findAndModify api to perform garbage 
cleanup
     add 3c10f2f261 OAK-10199 : ignore documents which doesn't have _modified 
field in mongo while fetching modifiedDocs
     add 6912567998 OAK-10199 : fixed code smells as suggested by Sonar
     add 9cf25258dd OAK-10199 : updated logic to fetch nodes by sorting them on 
the basis of _modified & _id
     add bde856b65d OAK-10199 : minor refactoring
     add b8bfcacabd OAK-10199 : added test cases to fetch 5000+ modified docs 
in loop and verify them
     add 2deefb4abc OAK-10199 : added check to include oldestId when running 
detailedGc very first time
     add 1db60fc3e5 OAK-10199 : fixed the test case with different revision for 
DetailedGC
     add 35b623f9f8 OAK-10199 : fixed the VGC IT test cases failures for RDB
     add 424edf9898 OAK-10199 : fixed the VG INIT test
     add 8bede13d2e OAK-10199 : fixed logic to include previously garbage 
collected documents if updated recently
     add 2ce29632b0 OAK-10199 : added test case to continue with GC even if 
there is crash
     add 3e53f3a302 OAK-10199 : handled escaped properties while deleting them
     add 6672fe282e OAK-10199 : added unit cases to handle concurrent prop 
update and escaped properties update
     add 6e122f0e69 OAK-10199 : added logic to skip non garbage documents
     add 81fe57ba2b OAK-10199 : fixed query to avoid skipping documents with 
greater _modified timestamp
     add 1d84422eab OAK-10199 : refactored RDBVersionGCSupport code
     add 442781a230 OAK-10199 : added review comment to make minor adjustment 
for naming conventions and fixes
     add 60b87b3b7a OAK-10199 : added bundled properties while calculating the 
properties retain set as well
     add 198453b51c OAK-10199 : added unit cases for bundled properties getting 
garbaged collected as well
     add 50fda89091 OAK-10199 : renamed method name to avoid confusion with 
other variable of same name

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   (d1fa0bb92e)
            \
             N -- N -- N   refs/heads/OAK-10199 (50fda89091)

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:
 .../index/elastic/ElasticIndexDefinition.java      | 26 ++++++++++++++
 .../index/elastic/query/ElasticRequestHandler.java |  8 ++++-
 .../index/elastic/ElasticIndexQueryCommonTest.java | 42 ++++++++++++++++++++++
 .../oak/plugins/index/IndexQueryCommonTest.java    |  6 ++--
 .../plugins/document/VersionGarbageCollector.java  | 22 ++++++------
 5 files changed, 89 insertions(+), 15 deletions(-)

Reply via email to