This is an automated email from the ASF dual-hosted git repository.
daim pushed a change to branch OAK-11832
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
omit 7e04e472e7 OAK-11832 : replaced Guava's TreeTraversal with OAK commons
add 237d2da472 OAK-11831: Update Oak trunk to Jackrabbit 2.22.2 (#2417)
add 419d7f2eb2 OAK-11831: Update Oak trunk to Jackrabbit 2.22.2 - fix
version numbers in composite ITs
add 8192711b5c OAK-11825 - Improve thread monitoring in the
OutOfBandIndexer (#2416)
new 05ec24dc29 OAK-11832 : replaced Guava's TreeTraversal with OAK commons
new 636a3c263c OAK-11832 : replaced Guava's TreeTraversal with OAK commons
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 (7e04e472e7)
\
N -- N -- N refs/heads/OAK-11832 (636a3c263c)
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.
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../commons/{TreeTraverser.java => Traverser.java} | 144 ++++++------
.../{TreeTraverserTest.java => TraverserTest.java} | 88 ++++++--
.../index/property/jmx/PropertyIndexStats.java | 6 +-
.../plugins/index/lucene/LuceneIndexMBeanImpl.java | 6 +-
.../lucene/property/HybridPropertyIndexInfo.java | 6 +-
.../index/lucene/property/RecursiveDeleteTest.java | 6 +-
oak-parent/pom.xml | 2 +-
.../jackrabbit/oak/index/IndexerMetrics.java | 8 +-
.../jackrabbit/oak/index/OutOfBandIndexerBase.java | 30 ++-
.../apache/jackrabbit/oak/index/ThreadMonitor.java | 242 +++++++++++++++++++++
.../flatfile/pipelined/PipelinedMergeSortTask.java | 3 -
.../pipelined/PipelinedMongoDownloadTask.java | 97 ++++-----
.../flatfile/pipelined/PipelinedSortBatchTask.java | 3 -
.../flatfile/pipelined/PipelinedStrategy.java | 7 +-
.../flatfile/pipelined/PipelinedTransformTask.java | 3 -
.../document/flatfile/pipelined/ThreadMonitor.java | 134 ------------
.../jackrabbit/oak/index/ThreadMonitorTest.java | 132 +++++++++++
.../tika/NodeStoreBinaryResourceProvider.java | 6 +-
.../oak/composite/it/CompositeTestSupport.java | 4 +-
.../oak/plugins/document/DocumentNodeState.java | 6 +-
20 files changed, 620 insertions(+), 313 deletions(-)
rename
oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/{TreeTraverser.java
=> Traverser.java} (55%)
rename
oak-commons/src/test/java/org/apache/jackrabbit/oak/commons/{TreeTraverserTest.java
=> TraverserTest.java} (73%)
create mode 100644
oak-run-commons/src/main/java/org/apache/jackrabbit/oak/index/ThreadMonitor.java
delete mode 100644
oak-run-commons/src/main/java/org/apache/jackrabbit/oak/index/indexer/document/flatfile/pipelined/ThreadMonitor.java
create mode 100644
oak-run-commons/src/test/java/org/apache/jackrabbit/oak/index/ThreadMonitorTest.java