This is an automated email from the ASF dual-hosted git repository.
daim pushed a change to branch OAK-11073
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
discard 35928c9399 OAK-11073 : fixed typos and added version to package-info
discard a91d3165e2 OAK-11073 : added conversion utility methods to convert
iterable/iterator to set/list
add 8fc92a1ca7 OAK-11061 - Indexing job: during indexing phase, download
blobs ahead of time in separate thread pool (#1669)
add 88273be6c4 OAK-11073 : added conversion utility methods to convert
iterable/iterator to set/list
add 360d3c47e4 OAK-11073 : fixed typos and added version to package-info
add fe9f4f5910 OAK-11073 : exported new collections package
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 (35928c9399)
\
N -- N -- N refs/heads/OAK-11073 (fe9f4f5910)
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:
oak-commons/pom.xml | 3 +-
.../indexer/document/DocumentStoreIndexerBase.java | 38 +-
...eHolder.java => AheadOfTimeBlobDownloader.java} | 23 +-
.../AheadOfTimeBlobDownloaderThrottler.java | 215 ++++++++++++
.../AheadOfTimeBlobDownloadingFlatFileStore.java | 169 +++++++++
.../flatfile/DefaultAheadOfTimeBlobDownloader.java | 390 +++++++++++++++++++++
.../flatfile/FlatFileNodeStoreBuilder.java | 35 +-
.../indexer/document/flatfile/FlatFileStore.java | 8 +
.../document/flatfile/NodeStateEntryReader.java | 2 +-
.../AheadOfTimeBlobDownloaderThrottlerTest.java | 185 ++++++++++
...headOfTimeBlobDownloadingFlatFileStoreTest.java | 68 ++++
.../flatfile/FlatFileNodeStoreBuilderTest.java | 11 +-
.../document/flatfile/FlatFileStoreTest.java | 3 +-
.../apache/jackrabbit/oak/index/IndexCommand.java | 28 +-
14 files changed, 1130 insertions(+), 48 deletions(-)
copy
oak-run-commons/src/main/java/org/apache/jackrabbit/oak/index/indexer/document/flatfile/{NodeStateHolder.java
=> AheadOfTimeBlobDownloader.java} (66%)
create mode 100644
oak-run-commons/src/main/java/org/apache/jackrabbit/oak/index/indexer/document/flatfile/AheadOfTimeBlobDownloaderThrottler.java
create mode 100644
oak-run-commons/src/main/java/org/apache/jackrabbit/oak/index/indexer/document/flatfile/AheadOfTimeBlobDownloadingFlatFileStore.java
create mode 100644
oak-run-commons/src/main/java/org/apache/jackrabbit/oak/index/indexer/document/flatfile/DefaultAheadOfTimeBlobDownloader.java
create mode 100644
oak-run-commons/src/test/java/org/apache/jackrabbit/oak/index/indexer/document/AheadOfTimeBlobDownloaderThrottlerTest.java
create mode 100644
oak-run-commons/src/test/java/org/apache/jackrabbit/oak/index/indexer/document/flatfile/AheadOfTimeBlobDownloadingFlatFileStoreTest.java