This is an automated email from the ASF dual-hosted git repository.
daim pushed a change to branch OAK-11833
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
discard b05cc0476e OAK-11833 : throw NPE is root node is null
discard 8586cd68a0 OAK-11833 : replaced Guava's Traverser with OAK commons
add 1a05416897 OAK-11856: oak-run-commons: remove usage of old Oak bloom
filter, use oak-commons instead (#2446)
add d06b99fd96 OAK-11840: Release Oak 1.84.0 - oak-doc* versions
add 949f2c5e4a OAK-11858: Remove remains of Oak bloom filter in
oak-run-commons (#2449)
add dc17407334 OAK-11859: update Tomcat dependency to 9.0.108 (#2451)
add 854d6823e2 OAK-11851 - Log performance metrics of statistical facets
and simplify logic (#2442)
add 6bd93ba2a8 OAK-11832 : replaced Guava's TreeTraversal with OAK Commons
- fix Import in testcase
add a16df671a4 OAK-11833 : replaced Guava's Traverser with OAK commons
add 00f59e9ea6 OAK-11833 : throw NPE is root node is null
add 244592135e OAK-11833 : added NPE test for Guava to verify new
behaviour with old one
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 (b05cc0476e)
\
N -- N -- N refs/heads/OAK-11833 (244592135e)
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:
.../jackrabbit/oak/commons/TraverserTest.java | 43 ++++-
oak-doc-railroad-macro/pom.xml | 2 +-
oak-doc/pom.xml | 2 +-
oak-examples/webapp/pom.xml | 2 +-
oak-parent/pom.xml | 4 +-
oak-run-commons/pom.xml | 5 +
.../flatfile/analysis/modules/BinaryId.java | 8 +-
.../analysis/modules/DistinctBinarySize.java | 4 +-
.../modules/DistinctBinarySizeHistogram.java | 2 +-
.../flatfile/analysis/modules/PropertyStats.java | 4 +-
.../flatfile/analysis/utils/BloomFilter.java | 162 -------------------
.../document/flatfile/analysis/utils/Hash.java | 73 ---------
.../flatfile/analysis/utils/HyperLogLog.java | 95 -----------
.../flatfile/analysis/utils/TopKValues.java | 3 +-
.../index/indexer/document/tree/Prefetcher.java | 6 +-
.../analysis/modules/PropertyStatsTest.java | 2 +-
.../flatfile/analysis/utils/BloomFilterTest.java | 126 ---------------
.../analysis/utils/CountMinSketchTest.java | 5 +-
...gLogTest.java => HyperLogLog3Linear64Test.java} | 39 +----
.../flatfile/analysis/utils/TopKValuesTest.java | 10 +-
.../ElasticStatisticalFacetAsyncProvider.java | 178 ++++++++++++++-------
21 files changed, 198 insertions(+), 577 deletions(-)
delete mode 100644
oak-run-commons/src/main/java/org/apache/jackrabbit/oak/index/indexer/document/flatfile/analysis/utils/BloomFilter.java
delete mode 100644
oak-run-commons/src/main/java/org/apache/jackrabbit/oak/index/indexer/document/flatfile/analysis/utils/Hash.java
delete mode 100644
oak-run-commons/src/main/java/org/apache/jackrabbit/oak/index/indexer/document/flatfile/analysis/utils/HyperLogLog.java
delete mode 100644
oak-run-commons/src/test/java/org/apache/jackrabbit/oak/index/indexer/document/flatfile/analysis/utils/BloomFilterTest.java
rename
oak-run-commons/src/test/java/org/apache/jackrabbit/oak/index/indexer/document/flatfile/analysis/utils/{HyperLogLogTest.java
=> HyperLogLog3Linear64Test.java} (83%)