[jira] [Commented] (OAK-2234) Support property existence query (for Lucene)

2017-02-14 Thread Thomas Mueller (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-2234?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867370#comment-15867370
 ] 

Thomas Mueller commented on OAK-2234:
-

Not yet documented.

> Support property existence query (for Lucene)
> -
>
> Key: OAK-2234
> URL: https://issues.apache.org/jira/browse/OAK-2234
> Project: Jackrabbit Oak
>  Issue Type: Improvement
>  Components: lucene
>Reporter: Chetan Mehrotra
>Assignee: Chetan Mehrotra
>Priority: Minor
> Fix For: 1.1.8
>
>
> Add support for property existence query like
> {noformat}
> select [jcr:path] from [nt:base] where propa is not null
> {noformat}
> Opposite of this cannot be be supported i.e. {{propa is null}} though!
> With OAK-1208 query creation logic explicitly ignores such queries but with 
> recent Lucene changes it appears to be possible LUCENE-995



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (OAK-5626) ChangeProcessor doesn't reset 'blocking' flag when items from queue gets removed and commit-rate-limiter is null

2017-02-14 Thread Vikas Saurabh (JIRA)

 [ 
https://issues.apache.org/jira/browse/OAK-5626?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vikas Saurabh updated OAK-5626:
---
Attachment: OAK-5626.patch

Added a test that checks current behavior (that we log warning... not the 
subsequent one) at [r1783066|https://svn.apache.org/r1783066].

Attaching [^OAK-5626.patch] which does:
{noformat}
ChangeProcessor would now log WARN each time queue gets full. To avoid flooding 
of logs, consecutive WARNs would be avoided a breathing period (Default 10 
minutes. Can be configured by JVM command line param: 
"oak.observation.full-queue.warn.interval"). During the breathing period, queue 
full logs would still be logged at DEBUG level.

Also, add test to check the behavior.
{noformat}

[~egli], can you please check?

[~mduerig], can you please share your inputs on how costly/bad would it be to 
call {{System.currentTimeMillis}} during commit (for each {{ChangeProcessor}} 
instance? Else, we can do the implementation [~egli] suggested above.

> ChangeProcessor doesn't reset 'blocking' flag when items from queue gets 
> removed and commit-rate-limiter is null
> 
>
> Key: OAK-5626
> URL: https://issues.apache.org/jira/browse/OAK-5626
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: core
>Reporter: Vikas Saurabh
>Assignee: Vikas Saurabh
>Priority: Minor
> Attachments: OAK-5626.patch
>
>
> Following up on conversation at \[0]:
> {{ChangeProcessor#queueSizeChanged}} \[1] sets blocking flag to true if queue 
> size is hit (or beyond). The warning "Revision queue is full. Further 
> revisions will be compacted." is logged only when it *wasn't* blocking.
> BUT, when queue empties, blocking flag is reset inside if block for 
> commitRateLimiter!=null. That means an event chain like: 
> # qFull
> # log warn
> # qEmpties
> # qFull 
> won't log the WARN after step(4)
> \[0]: http://markmail.org/message/hgein5g3ohyjhw5n
> \[1]: 
> https://github.com/apache/jackrabbit-oak/blob/trunk/oak-jcr/src/main/java/org/apache/jackrabbit/oak/jcr/observation/ChangeProcessor.java#L307



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (OAK-5663) Improve LogCutomizer to allow filtering on log messages too

2017-02-14 Thread Vikas Saurabh (JIRA)

 [ 
https://issues.apache.org/jira/browse/OAK-5663?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vikas Saurabh updated OAK-5663:
---
Attachment: OAK-5663.patch

Attaching [^OAK-5663.patch]. [~alex.parvulescu], does this look useful?

> Improve LogCutomizer to allow filtering on log messages too
> ---
>
> Key: OAK-5663
> URL: https://issues.apache.org/jira/browse/OAK-5663
> Project: Jackrabbit Oak
>  Issue Type: Test
>Reporter: Vikas Saurabh
>Assignee: Vikas Saurabh
>Priority: Minor
> Attachments: OAK-5663.patch
>
>
> Currently {{LogCustomizer}} only allows filtering on log level. It'd be 
> useful to have a bit of filtering on log message too.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5656) InitialContent depends on document.bundlor.BundlingConfigInitializer

2017-02-14 Thread Chetan Mehrotra (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5656?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867307#comment-15867307
 ] 

Chetan Mehrotra commented on OAK-5656:
--

[~anchela] RepositoryInitializer based approach was discussed as part of 
OAK-4975 and also on the 
[oak-dev|https://lists.apache.org/thread.html/6f19a1390f5c3161311815378eef7688607329ae63d891bf04a4dc62@%3Coak-dev.jackrabbit.apache.org%3E]
 and consensus then was to keep this simple and bootstrap this config from 
within InitialContent

> InitialContent depends on document.bundlor.BundlingConfigInitializer
> 
>
> Key: OAK-5656
> URL: https://issues.apache.org/jira/browse/OAK-5656
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: core
>Reporter: angela
>  Labels: tech-debt
> Fix For: 1.8
>
>
> [~chetanm], in the light of OAK-4975 a dependency to the document nodestore 
> code got introduced in 
> {{org.apache.jackrabbit.oak.plugins.nodetype.write.InitialContent}} by adding 
> the following line:
> {code}
> BundlingConfigInitializer.INSTANCE.initialize(builder);
> {code}
> the {{BundlingConfigInitializer}} is defined in the 
> {{org.apache.jackrabbit.oak.plugins.document.bundlor}}.
> To me that looks quite troublesome and I don't think the generic 
> JCR-InitialContent should have any dependency on the document nodestore code 
> base.
> Why not defining a dedicated {{RepositoryInitializer}} for that kind of init 
> an making sure it is listed in the (default) setup scenarios (or at least in 
> those that actually have a document store and thus require this)?



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5651) java.lang.IllegalStateException logged when migrating Segment to Document

2017-02-14 Thread Chetan Mehrotra (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5651?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867304#comment-15867304
 ] 

Chetan Mehrotra commented on OAK-5651:
--

[~tomek.rekawek] That change introduced a Observer which is now registered by 
default with DocumentNodeStore and that observer does a diff which causes the 
exception. So this exception can come if any observer is registered/active when 
such a migration is happening. 

Probably we should disable the observation support in DocumentNodeStore when 
sidegrade is running is we need to prevent such diff for large commit

[~mreutegg] Thoughts?

> java.lang.IllegalStateException logged when migrating Segment to Document
> -
>
> Key: OAK-5651
> URL: https://issues.apache.org/jira/browse/OAK-5651
> Project: Jackrabbit Oak
>  Issue Type: Bug
>Affects Versions: 1.6.0
>Reporter: Tomek Rękawek
> Fix For: 1.7.0, 1.8
>
>
> After migrating the SegmentMK to DocumentMK following exception is logged:
> {noformat}
> 12:38:58.816 INFO  [main] RepositorySidegrade.java:310  Copying 
> checkpoints is not supported for this combination of node stores
> 12:38:58.835 ERROR [main] BackgroundObserver.java:176   Uncaught 
> exception in 
> org.apache.jackrabbit.oak.plugins.document.bundlor.BundlingConfigHandler@3c782d8e
> com.google.common.util.concurrent.UncheckedExecutionException: 
> java.lang.IllegalStateException: Missing external change for branch revision:
> at 
> com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2199) 
> ~[guava-15.0.jar:na]
> at com.google.common.cache.LocalCache.get(LocalCache.java:3932) 
> ~[guava-15.0.jar:na]
> at 
> com.google.common.cache.LocalCache$LocalManualCache.get(LocalCache.java:4721) 
> ~[guava-15.0.jar:na]
> at 
> org.apache.jackrabbit.oak.plugins.document.MemoryDiffCache.getChanges(MemoryDiffCache.java:83)
>  ~[oak-core-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.TieredDiffCache.getChanges(TieredDiffCache.java:50)
>  ~[oak-core-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.DocumentNodeStore.compare(DocumentNodeStore.java:1616)
>  [oak-core-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.AbstractDocumentNodeState.compareAgainstBaseState(AbstractDocumentNodeState.java:114)
>  ~[oak-core-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.spi.commit.EditorDiff.process(EditorDiff.java:52) 
> ~[oak-core-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.bundlor.BundlingConfigHandler.contentChanged(BundlingConfigHandler.java:70)
>  ~[oak-core-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.spi.commit.BackgroundObserver$1$1.call(BackgroundObserver.java:134)
>  [oak-core-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.spi.commit.BackgroundObserver$1$1.call(BackgroundObserver.java:128)
>  [oak-core-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at java.util.concurrent.FutureTask.run(FutureTask.java:266) 
> [na:1.8.0_73]
> at 
> com.google.common.util.concurrent.MoreExecutors$SameThreadExecutorService.execute(MoreExecutors.java:297)
>  [guava-15.0.jar:na]
> at 
> org.apache.jackrabbit.oak.spi.commit.BackgroundObserver$1.run(BackgroundObserver.java:148)
>  [oak-core-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.commons.concurrent.NotifyingFutureTask.run(NotifyingFutureTask.java:73)
>  [oak-commons-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.commons.concurrent.NotifyingFutureTask.onComplete(NotifyingFutureTask.java:62)
>  [oak-commons-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.spi.commit.BackgroundObserver.contentChanged(BackgroundObserver.java:312)
>  [oak-core-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.spi.commit.CompositeObserver.contentChanged(CompositeObserver.java:52)
>  [oak-core-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.spi.commit.ChangeDispatcher.contentChanged(ChangeDispatcher.java:80)
>  [oak-core-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.DocumentNodeStore$4.headOfQueue(DocumentNodeStore.java:837)
>  [oak-core-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.CommitQueue.waitUntilHeadOfQueue(CommitQueue.java:237)
>  [oak-core-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.CommitQueue.done(CommitQueue.java:92)
>  [oak-core-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.DocumentNodeStore

[jira] [Created] (OAK-5663) Improve LogCutomizer to allow filtering on log messages too

2017-02-14 Thread Vikas Saurabh (JIRA)
Vikas Saurabh created OAK-5663:
--

 Summary: Improve LogCutomizer to allow filtering on log messages 
too
 Key: OAK-5663
 URL: https://issues.apache.org/jira/browse/OAK-5663
 Project: Jackrabbit Oak
  Issue Type: Test
Reporter: Vikas Saurabh
Assignee: Vikas Saurabh
Priority: Minor


Currently {{LogCustomizer}} only allows filtering on log level. It'd be useful 
to have a bit of filtering on log message too.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5629) Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 (latest),nsfixtures=DOCUMENT_RDB,profile=unittesting #1418 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5629?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867270#comment-15867270
 ] 

Hudson commented on OAK-5629:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
(latest),nsfixtures=DOCUMENT_RDB,profile=unittesting 
#1425|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_RDB,profile=unittesting/1425/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_RDB,profile=unittesting/1425/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=DOCUMENT_RDB,profile=unittesting #1418 failed
> -
>
> Key: OAK-5629
> URL: https://issues.apache.org/jira/browse/OAK-5629
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=DOCUMENT_RDB,profile=unittesting #1418 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.8 (latest),nsfixtures=DOCUMENT_RDB,profile=unittesting 
> #1418|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_RDB,profile=unittesting/1418/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_RDB,profile=unittesting/1418/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5616) Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 (latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting #1415 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5616?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867269#comment-15867269
 ] 

Hudson commented on OAK-5616:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
(latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting 
#1425|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting/1425/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting/1425/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting #1415 failed
> 
>
> Key: OAK-5616
> URL: https://issues.apache.org/jira/browse/OAK-5616
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting #1415 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.7 (latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting 
> #1415|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting/1415/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting/1415/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5646) Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 (latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting #1421 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5646?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867262#comment-15867262
 ] 

Hudson commented on OAK-5646:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting 
#1425|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting/1425/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting/1425/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting #1421 failed
> ---
>
> Key: OAK-5646
> URL: https://issues.apache.org/jira/browse/OAK-5646
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting #1421 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.7 (latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting 
> #1421|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting/1421/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting/1421/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5645) Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 (latest),nsfixtures=SEGMENT_MK,profile=integrationTesting #1421 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5645?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867259#comment-15867259
 ] 

Hudson commented on OAK-5645:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting 
#1425|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting/1425/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting/1425/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=SEGMENT_MK,profile=integrationTesting #1421 failed
> --
>
> Key: OAK-5645
> URL: https://issues.apache.org/jira/browse/OAK-5645
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=SEGMENT_MK,profile=integrationTesting #1421 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.7 (latest),nsfixtures=SEGMENT_MK,profile=integrationTesting 
> #1421|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting/1421/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting/1421/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5647) Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 (latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting #1422 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5647?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867258#comment-15867258
 ] 

Hudson commented on OAK-5647:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting 
#1425|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting/1425/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting/1425/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting #1422 failed
> ---
>
> Key: OAK-5647
> URL: https://issues.apache.org/jira/browse/OAK-5647
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting #1422 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.8 (latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting 
> #1422|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting/1422/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting/1422/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5535) Test failure: standalone.RepositoryBootIT.repositoryLogin

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5535?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867255#comment-15867255
 ] 

Hudson commented on OAK-5535:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
(latest),nsfixtures=DOCUMENT_RDB,profile=unittesting 
#1425|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_RDB,profile=unittesting/1425/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_RDB,profile=unittesting/1425/console]

> Test failure: standalone.RepositoryBootIT.repositoryLogin
> -
>
> Key: OAK-5535
> URL: https://issues.apache.org/jira/browse/OAK-5535
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>Assignee: Chetan Mehrotra
>  Labels: test-failure
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=DOCUMENT_RDB,profile=unittesting #1386 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.7 (latest),nsfixtures=DOCUMENT_RDB,profile=unittesting 
> #1386|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_RDB,profile=unittesting/1386/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_RDB,profile=unittesting/1386/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Created] (OAK-5662) Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 (latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting #1425 failed

2017-02-14 Thread Hudson (JIRA)
Hudson created OAK-5662:
---

 Summary: Build Apache Jackrabbit Oak matrix/Ubuntu 
Slaves=ubuntu,jdk=JDK 1.8 
(latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting #1425 failed
 Key: OAK-5662
 URL: https://issues.apache.org/jira/browse/OAK-5662
 Project: Jackrabbit Oak
  Issue Type: Bug
  Components: continuous integration
Reporter: Hudson


Jenkins CI failure: 
https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/

The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
(latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting #1425 has failed.
First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
1.8 (latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting 
#1425|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting/1425/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting/1425/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5643) Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 (latest),nsfixtures=SEGMENT_MK,profile=integrationTesting #1420 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5643?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867252#comment-15867252
 ] 

Hudson commented on OAK-5643:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting 
#1425|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting/1425/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting/1425/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=SEGMENT_MK,profile=integrationTesting #1420 failed
> --
>
> Key: OAK-5643
> URL: https://issues.apache.org/jira/browse/OAK-5643
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=SEGMENT_MK,profile=integrationTesting #1420 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.8 (latest),nsfixtures=SEGMENT_MK,profile=integrationTesting 
> #1420|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting/1420/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting/1420/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5644) Test failure: LargeOperationIT

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5644?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867246#comment-15867246
 ] 

Hudson commented on OAK-5644:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting 
#1425|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting/1425/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting/1425/console]

> Test failure: LargeOperationIT
> --
>
> Key: OAK-5644
> URL: https://issues.apache.org/jira/browse/OAK-5644
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration, jcr
>Affects Versions: 1.2.23
>Reporter: Hudson
>  Labels: CI, test-failure
> Attachments: Build 1420 logs.zip
>
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting #1420 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.8 (latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting 
> #1420|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting/1420/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting/1420/console]
> {noformat}
> Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.02 sec <<< 
> FAILURE!
> initializationError(org.apache.jackrabbit.oak.jcr.LargeOperationIT)  Time 
> elapsed: 0.002 sec  <<< ERROR!
> java.lang.OutOfMemoryError: unable to create new native thread
>   at java.lang.Thread.start0(Native Method)
>   at java.lang.Thread.start(Thread.java:714)
>   at com.mongodb.Mongo.(Mongo.java:326)
>   at com.mongodb.Mongo.(Mongo.java:304)
>   at com.mongodb.MongoClient.(MongoClient.java:253)
>   at 
> org.apache.jackrabbit.oak.plugins.document.util.MongoConnection.(MongoConnection.java:45)
>   at 
> org.apache.jackrabbit.oak.jcr.NodeStoreFixture$DocumentFixture.createNodeStore(NodeStoreFixture.java:180)
>   at 
> org.apache.jackrabbit.oak.jcr.NodeStoreFixture$DocumentFixture.isAvailable(NodeStoreFixture.java:211)
>   at 
> org.apache.jackrabbit.oak.jcr.LargeOperationIT.fixtures(LargeOperationIT.java:146)
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5492) Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 (latest),nsfixtures=SEGMENT_MK,profile=unittesting #1376 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5492?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867245#comment-15867245
 ] 

Hudson commented on OAK-5492:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
(latest),nsfixtures=SEGMENT_MK,profile=unittesting 
#1425|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_MK,profile=unittesting/1425/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_MK,profile=unittesting/1425/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=SEGMENT_MK,profile=unittesting #1376 failed
> ---
>
> Key: OAK-5492
> URL: https://issues.apache.org/jira/browse/OAK-5492
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=SEGMENT_MK,profile=unittesting #1376 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.7 (latest),nsfixtures=SEGMENT_MK,profile=unittesting 
> #1376|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_MK,profile=unittesting/1376/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_MK,profile=unittesting/1376/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5642) Failed to execute goal org.apache.maven.plugins:maven-site-plugin

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5642?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867242#comment-15867242
 ] 

Hudson commented on OAK-5642:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting 
#1425|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting/1425/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting/1425/console]

> Failed to execute goal org.apache.maven.plugins:maven-site-plugin
> -
>
> Key: OAK-5642
> URL: https://issues.apache.org/jira/browse/OAK-5642
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Affects Versions: 1.2.23
>Reporter: Hudson
>  Labels: CI
> Attachments: console.log
>
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting #1420 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.7 (latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting 
> #1420|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting/1420/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting/1420/console]
> {noformat}
> [ERROR] Failed to execute goal 
> org.apache.maven.plugins:maven-site-plugin:3.3:attach-descriptor 
> (attach-descriptor) on project oak-parent: Execution attach-descriptor of 
> goal org.apache.maven.plugins:maven-site-plugin:3.3:attach-descriptor failed: 
> Plugin org.apache.maven.plugins:maven-site-plugin:3.3 or one of its 
> dependencies could not be resolved: The following artifacts could not be 
> resolved: org.apache.maven.doxia:doxia-module-markdown:jar:1.5, 
> org.apache.maven.reporting:maven-reporting-exec:jar:1.1, 
> org.apache.maven.doxia:doxia-module-xdoc:jar:1.4: Could not find artifact 
> org.apache.maven.doxia:doxia-module-markdown:jar:1.5 -> [Help 1]
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5615) Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 (latest),nsfixtures=SEGMENT_MK,profile=unittesting #1414 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5615?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867241#comment-15867241
 ] 

Hudson commented on OAK-5615:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
(latest),nsfixtures=SEGMENT_MK,profile=unittesting 
#1425|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_MK,profile=unittesting/1425/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_MK,profile=unittesting/1425/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=SEGMENT_MK,profile=unittesting #1414 failed
> ---
>
> Key: OAK-5615
> URL: https://issues.apache.org/jira/browse/OAK-5615
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=SEGMENT_MK,profile=unittesting #1414 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.8 (latest),nsfixtures=SEGMENT_MK,profile=unittesting 
> #1414|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_MK,profile=unittesting/1414/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_MK,profile=unittesting/1414/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5630) Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 (latest),nsfixtures=SEGMENT_TAR,profile=unittesting #1419 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5630?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867240#comment-15867240
 ] 

Hudson commented on OAK-5630:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
(latest),nsfixtures=SEGMENT_TAR,profile=unittesting 
#1425|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_TAR,profile=unittesting/1425/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_TAR,profile=unittesting/1425/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=SEGMENT_TAR,profile=unittesting #1419 failed
> 
>
> Key: OAK-5630
> URL: https://issues.apache.org/jira/browse/OAK-5630
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=SEGMENT_TAR,profile=unittesting #1419 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.8 (latest),nsfixtures=SEGMENT_TAR,profile=unittesting 
> #1419|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_TAR,profile=unittesting/1419/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_TAR,profile=unittesting/1419/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5649) Error in RefreshPolicy can lead to IndexNode lock leak

2017-02-14 Thread Chetan Mehrotra (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5649?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867238#comment-15867238
 ] 

Chetan Mehrotra commented on OAK-5649:
--

Done
* trunk - 1783061,1782945
* 1.6 - 1783063

> Error in RefreshPolicy can lead to IndexNode lock leak
> --
>
> Key: OAK-5649
> URL: https://issues.apache.org/jira/browse/OAK-5649
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: lucene
>Affects Versions: 1.6.0
>Reporter: Chetan Mehrotra
>Assignee: Chetan Mehrotra
> Fix For: 1.7.0, 1.8, 1.6.1
>
> Attachments: OAK-5649-v1.patch
>
>
> {{IndexNode}} uses a ReadWriteLock which is "acquired" and "released". 
> {code}
>  boolean acquire() {
> lock.readLock().lock();
> if (closed) {
> lock.readLock().unlock();
> return false;
> } else {
> refreshPolicy.refreshOnReadIfRequired(refreshCallback);
> return true;
> }
> }
> {code}
> Its possible that any exception thrown in 
> {{RefreshPolicy#refreshOnReadIfRequired}} can lead to lock being acquired but 
> not released causing the lock to be lost and any further attempt to close 
> such IndexNode instance would block indefinitely.
> As a fix the {{acquire}} call should account for any potential exception 
> thrown in any call made from within that method call



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Resolved] (OAK-5649) Error in RefreshPolicy can lead to IndexNode lock leak

2017-02-14 Thread Chetan Mehrotra (JIRA)

 [ 
https://issues.apache.org/jira/browse/OAK-5649?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Chetan Mehrotra resolved OAK-5649.
--
Resolution: Fixed

> Error in RefreshPolicy can lead to IndexNode lock leak
> --
>
> Key: OAK-5649
> URL: https://issues.apache.org/jira/browse/OAK-5649
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: lucene
>Affects Versions: 1.6.0
>Reporter: Chetan Mehrotra
>Assignee: Chetan Mehrotra
> Fix For: 1.7.0, 1.8, 1.6.1
>
> Attachments: OAK-5649-v1.patch
>
>
> {{IndexNode}} uses a ReadWriteLock which is "acquired" and "released". 
> {code}
>  boolean acquire() {
> lock.readLock().lock();
> if (closed) {
> lock.readLock().unlock();
> return false;
> } else {
> refreshPolicy.refreshOnReadIfRequired(refreshCallback);
> return true;
> }
> }
> {code}
> Its possible that any exception thrown in 
> {{RefreshPolicy#refreshOnReadIfRequired}} can lead to lock being acquired but 
> not released causing the lock to be lost and any further attempt to close 
> such IndexNode instance would block indefinitely.
> As a fix the {{acquire}} call should account for any potential exception 
> thrown in any call made from within that method call



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5649) Error in RefreshPolicy can lead to IndexNode lock leak

2017-02-14 Thread Chetan Mehrotra (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5649?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867222#comment-15867222
 ] 

Chetan Mehrotra commented on OAK-5649:
--

bq. What I'm wondering is: should we track if say there are 10 consecutive 
exceptions and then do something about it (do something probably equal (1) stop 
nrt, (2) show it somewhere in jmx).

Opened OAK-5661 to track this work

> Error in RefreshPolicy can lead to IndexNode lock leak
> --
>
> Key: OAK-5649
> URL: https://issues.apache.org/jira/browse/OAK-5649
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: lucene
>Affects Versions: 1.6.0
>Reporter: Chetan Mehrotra
>Assignee: Chetan Mehrotra
> Fix For: 1.7.0, 1.8, 1.6.1
>
> Attachments: OAK-5649-v1.patch
>
>
> {{IndexNode}} uses a ReadWriteLock which is "acquired" and "released". 
> {code}
>  boolean acquire() {
> lock.readLock().lock();
> if (closed) {
> lock.readLock().unlock();
> return false;
> } else {
> refreshPolicy.refreshOnReadIfRequired(refreshCallback);
> return true;
> }
> }
> {code}
> Its possible that any exception thrown in 
> {{RefreshPolicy#refreshOnReadIfRequired}} can lead to lock being acquired but 
> not released causing the lock to be lost and any further attempt to close 
> such IndexNode instance would block indefinitely.
> As a fix the {{acquire}} call should account for any potential exception 
> thrown in any call made from within that method call



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Created] (OAK-5661) Make NRT indexing resilient against unbounded growth

2017-02-14 Thread Chetan Mehrotra (JIRA)
Chetan Mehrotra created OAK-5661:


 Summary: Make NRT indexing resilient against unbounded growth
 Key: OAK-5661
 URL: https://issues.apache.org/jira/browse/OAK-5661
 Project: Jackrabbit Oak
  Issue Type: Improvement
  Components: lucene
Reporter: Chetan Mehrotra
Assignee: Chetan Mehrotra
 Fix For: 1.8


NRT Indexes for volatile indexes [1] can grow large if async index update faces 
issues. Like if it gets stuck for days or due to some bug index do not get 
updates like in OAK-5649 then the sizes can grow very large.

For such cases we should add some checks in logic where system can ensure that 
some cleanup is performed or writes to indexes are stopped. Also such a 
situation should be flagged 


[1] Indexes which see lots of addition and deletions. So effective indexing 
size is smaller however if deletions are not applied (as is the case with NRT) 
such indexes can grow large



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5648) Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 (latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting #1422 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5648?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867213#comment-15867213
 ] 

Hudson commented on OAK-5648:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
(latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting 
#1424|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting/1424/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting/1424/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting #1422 failed
> 
>
> Key: OAK-5648
> URL: https://issues.apache.org/jira/browse/OAK-5648
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting #1422 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.8 (latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting 
> #1422|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting/1422/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting/1422/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5616) Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 (latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting #1415 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5616?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867209#comment-15867209
 ] 

Hudson commented on OAK-5616:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
(latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting 
#1424|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting/1424/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting/1424/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting #1415 failed
> 
>
> Key: OAK-5616
> URL: https://issues.apache.org/jira/browse/OAK-5616
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting #1415 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.7 (latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting 
> #1415|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting/1415/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting/1415/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5646) Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 (latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting #1421 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5646?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867200#comment-15867200
 ] 

Hudson commented on OAK-5646:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting 
#1424|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting/1424/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting/1424/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting #1421 failed
> ---
>
> Key: OAK-5646
> URL: https://issues.apache.org/jira/browse/OAK-5646
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting #1421 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.7 (latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting 
> #1421|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting/1421/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting/1421/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5629) Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 (latest),nsfixtures=DOCUMENT_RDB,profile=unittesting #1418 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5629?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867195#comment-15867195
 ] 

Hudson commented on OAK-5629:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
(latest),nsfixtures=DOCUMENT_RDB,profile=unittesting 
#1424|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_RDB,profile=unittesting/1424/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_RDB,profile=unittesting/1424/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=DOCUMENT_RDB,profile=unittesting #1418 failed
> -
>
> Key: OAK-5629
> URL: https://issues.apache.org/jira/browse/OAK-5629
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=DOCUMENT_RDB,profile=unittesting #1418 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.8 (latest),nsfixtures=DOCUMENT_RDB,profile=unittesting 
> #1418|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_RDB,profile=unittesting/1418/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_RDB,profile=unittesting/1418/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5645) Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 (latest),nsfixtures=SEGMENT_MK,profile=integrationTesting #1421 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5645?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867196#comment-15867196
 ] 

Hudson commented on OAK-5645:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting 
#1424|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting/1424/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting/1424/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=SEGMENT_MK,profile=integrationTesting #1421 failed
> --
>
> Key: OAK-5645
> URL: https://issues.apache.org/jira/browse/OAK-5645
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=SEGMENT_MK,profile=integrationTesting #1421 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.7 (latest),nsfixtures=SEGMENT_MK,profile=integrationTesting 
> #1421|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting/1421/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting/1421/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5535) Test failure: standalone.RepositoryBootIT.repositoryLogin

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5535?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867192#comment-15867192
 ] 

Hudson commented on OAK-5535:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
(latest),nsfixtures=DOCUMENT_RDB,profile=unittesting 
#1424|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_RDB,profile=unittesting/1424/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_RDB,profile=unittesting/1424/console]

> Test failure: standalone.RepositoryBootIT.repositoryLogin
> -
>
> Key: OAK-5535
> URL: https://issues.apache.org/jira/browse/OAK-5535
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>Assignee: Chetan Mehrotra
>  Labels: test-failure
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=DOCUMENT_RDB,profile=unittesting #1386 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.7 (latest),nsfixtures=DOCUMENT_RDB,profile=unittesting 
> #1386|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_RDB,profile=unittesting/1386/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_RDB,profile=unittesting/1386/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5643) Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 (latest),nsfixtures=SEGMENT_MK,profile=integrationTesting #1420 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5643?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867190#comment-15867190
 ] 

Hudson commented on OAK-5643:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting 
#1424|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting/1424/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting/1424/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=SEGMENT_MK,profile=integrationTesting #1420 failed
> --
>
> Key: OAK-5643
> URL: https://issues.apache.org/jira/browse/OAK-5643
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=SEGMENT_MK,profile=integrationTesting #1420 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.8 (latest),nsfixtures=SEGMENT_MK,profile=integrationTesting 
> #1420|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting/1420/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting/1420/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5492) Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 (latest),nsfixtures=SEGMENT_MK,profile=unittesting #1376 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5492?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867186#comment-15867186
 ] 

Hudson commented on OAK-5492:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
(latest),nsfixtures=SEGMENT_MK,profile=unittesting 
#1424|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_MK,profile=unittesting/1424/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_MK,profile=unittesting/1424/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=SEGMENT_MK,profile=unittesting #1376 failed
> ---
>
> Key: OAK-5492
> URL: https://issues.apache.org/jira/browse/OAK-5492
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=SEGMENT_MK,profile=unittesting #1376 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.7 (latest),nsfixtures=SEGMENT_MK,profile=unittesting 
> #1376|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_MK,profile=unittesting/1376/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_MK,profile=unittesting/1376/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5644) Test failure: LargeOperationIT

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5644?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867183#comment-15867183
 ] 

Hudson commented on OAK-5644:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting 
#1424|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting/1424/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting/1424/console]

> Test failure: LargeOperationIT
> --
>
> Key: OAK-5644
> URL: https://issues.apache.org/jira/browse/OAK-5644
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration, jcr
>Affects Versions: 1.2.23
>Reporter: Hudson
>  Labels: CI, test-failure
> Attachments: Build 1420 logs.zip
>
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting #1420 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.8 (latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting 
> #1420|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting/1420/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting/1420/console]
> {noformat}
> Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.02 sec <<< 
> FAILURE!
> initializationError(org.apache.jackrabbit.oak.jcr.LargeOperationIT)  Time 
> elapsed: 0.002 sec  <<< ERROR!
> java.lang.OutOfMemoryError: unable to create new native thread
>   at java.lang.Thread.start0(Native Method)
>   at java.lang.Thread.start(Thread.java:714)
>   at com.mongodb.Mongo.(Mongo.java:326)
>   at com.mongodb.Mongo.(Mongo.java:304)
>   at com.mongodb.MongoClient.(MongoClient.java:253)
>   at 
> org.apache.jackrabbit.oak.plugins.document.util.MongoConnection.(MongoConnection.java:45)
>   at 
> org.apache.jackrabbit.oak.jcr.NodeStoreFixture$DocumentFixture.createNodeStore(NodeStoreFixture.java:180)
>   at 
> org.apache.jackrabbit.oak.jcr.NodeStoreFixture$DocumentFixture.isAvailable(NodeStoreFixture.java:211)
>   at 
> org.apache.jackrabbit.oak.jcr.LargeOperationIT.fixtures(LargeOperationIT.java:146)
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5642) Failed to execute goal org.apache.maven.plugins:maven-site-plugin

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5642?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867181#comment-15867181
 ] 

Hudson commented on OAK-5642:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting 
#1424|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting/1424/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting/1424/console]

> Failed to execute goal org.apache.maven.plugins:maven-site-plugin
> -
>
> Key: OAK-5642
> URL: https://issues.apache.org/jira/browse/OAK-5642
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Affects Versions: 1.2.23
>Reporter: Hudson
>  Labels: CI
> Attachments: console.log
>
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting #1420 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.7 (latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting 
> #1420|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting/1420/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting/1420/console]
> {noformat}
> [ERROR] Failed to execute goal 
> org.apache.maven.plugins:maven-site-plugin:3.3:attach-descriptor 
> (attach-descriptor) on project oak-parent: Execution attach-descriptor of 
> goal org.apache.maven.plugins:maven-site-plugin:3.3:attach-descriptor failed: 
> Plugin org.apache.maven.plugins:maven-site-plugin:3.3 or one of its 
> dependencies could not be resolved: The following artifacts could not be 
> resolved: org.apache.maven.doxia:doxia-module-markdown:jar:1.5, 
> org.apache.maven.reporting:maven-reporting-exec:jar:1.1, 
> org.apache.maven.doxia:doxia-module-xdoc:jar:1.4: Could not find artifact 
> org.apache.maven.doxia:doxia-module-markdown:jar:1.5 -> [Help 1]
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5615) Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 (latest),nsfixtures=SEGMENT_MK,profile=unittesting #1414 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5615?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867179#comment-15867179
 ] 

Hudson commented on OAK-5615:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
(latest),nsfixtures=SEGMENT_MK,profile=unittesting 
#1424|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_MK,profile=unittesting/1424/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_MK,profile=unittesting/1424/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=SEGMENT_MK,profile=unittesting #1414 failed
> ---
>
> Key: OAK-5615
> URL: https://issues.apache.org/jira/browse/OAK-5615
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=SEGMENT_MK,profile=unittesting #1414 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.8 (latest),nsfixtures=SEGMENT_MK,profile=unittesting 
> #1414|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_MK,profile=unittesting/1414/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_MK,profile=unittesting/1414/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5630) Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 (latest),nsfixtures=SEGMENT_TAR,profile=unittesting #1419 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5630?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867175#comment-15867175
 ] 

Hudson commented on OAK-5630:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
(latest),nsfixtures=SEGMENT_TAR,profile=unittesting 
#1424|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_TAR,profile=unittesting/1424/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_TAR,profile=unittesting/1424/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=SEGMENT_TAR,profile=unittesting #1419 failed
> 
>
> Key: OAK-5630
> URL: https://issues.apache.org/jira/browse/OAK-5630
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=SEGMENT_TAR,profile=unittesting #1419 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.8 (latest),nsfixtures=SEGMENT_TAR,profile=unittesting 
> #1419|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_TAR,profile=unittesting/1419/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_TAR,profile=unittesting/1419/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5647) Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 (latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting #1422 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5647?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867174#comment-15867174
 ] 

Hudson commented on OAK-5647:
-

Previously failing build now is OK.
 Passed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting 
#1424|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting/1424/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting/1424/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting #1422 failed
> ---
>
> Key: OAK-5647
> URL: https://issues.apache.org/jira/browse/OAK-5647
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting #1422 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.8 (latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting 
> #1422|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting/1422/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting/1422/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Resolved] (OAK-5660) Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 64-bit Windows only,nsfixtures=SEGMENT_MK,profile=integrationTesting #451 failed

2017-02-14 Thread Amit Jain (JIRA)

 [ 
https://issues.apache.org/jira/browse/OAK-5660?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amit Jain resolved OAK-5660.

Resolution: Duplicate

> Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 64-bit 
> Windows only,nsfixtures=SEGMENT_MK,profile=integrationTesting #451 failed
> --
>
> Key: OAK-5660
> URL: https://issues.apache.org/jira/browse/OAK-5660
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
> 64-bit Windows only,nsfixtures=SEGMENT_MK,profile=integrationTesting #451 has 
> failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited 
> security) 64-bit Windows 
> only,nsfixtures=SEGMENT_MK,profile=integrationTesting 
> #451|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=integrationTesting/451/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=integrationTesting/451/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (OAK-5573) org.apache.jackrabbit.oak.segment.standby.StandbyTestIT.testSyncLoop

2017-02-14 Thread Amit Jain (JIRA)

 [ 
https://issues.apache.org/jira/browse/OAK-5573?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amit Jain updated OAK-5573:
---
Affects Version/s: 1.6.0

> org.apache.jackrabbit.oak.segment.standby.StandbyTestIT.testSyncLoop
> 
>
> Key: OAK-5573
> URL: https://issues.apache.org/jira/browse/OAK-5573
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration, segment-tar
>Affects Versions: 1.6.0
>Reporter: Hudson
>  Labels: test-failure, ubuntu, windows
> Fix For: 1.8
>
> Attachments: std-output.log, unit-tests-1422.log
>
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=SEGMENT_MK,profile=integrationTesting #1399 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.7 (latest),nsfixtures=SEGMENT_MK,profile=integrationTesting 
> #1399|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting/1399/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting/1399/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Resolved] (OAK-5659) Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=integrationTesting #450 failed

2017-02-14 Thread Amit Jain (JIRA)

 [ 
https://issues.apache.org/jira/browse/OAK-5659?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amit Jain resolved OAK-5659.

Resolution: Duplicate

> Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 64-bit 
> Windows only,nsfixtures=DOCUMENT_NS,profile=integrationTesting #450 failed
> ---
>
> Key: OAK-5659
> URL: https://issues.apache.org/jira/browse/OAK-5659
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
> 64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=integrationTesting #450 
> has failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited 
> security) 64-bit Windows 
> only,nsfixtures=DOCUMENT_NS,profile=integrationTesting 
> #450|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=integrationTesting/450/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=integrationTesting/450/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (OAK-5573) org.apache.jackrabbit.oak.segment.standby.StandbyTestIT.testSyncLoop

2017-02-14 Thread Amit Jain (JIRA)

 [ 
https://issues.apache.org/jira/browse/OAK-5573?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amit Jain updated OAK-5573:
---
Labels: test-failure ubuntu windows  (was: test-failure)

> org.apache.jackrabbit.oak.segment.standby.StandbyTestIT.testSyncLoop
> 
>
> Key: OAK-5573
> URL: https://issues.apache.org/jira/browse/OAK-5573
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration, segment-tar
>Reporter: Hudson
>  Labels: test-failure, ubuntu, windows
> Fix For: 1.8
>
> Attachments: std-output.log, unit-tests-1422.log
>
>
> Jenkins CI failure: 
> https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/
> The build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=SEGMENT_MK,profile=integrationTesting #1399 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.7 (latest),nsfixtures=SEGMENT_MK,profile=integrationTesting 
> #1399|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting/1399/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting/1399/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Resolved] (OAK-5658) Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=unittesting #450 failed

2017-02-14 Thread Amit Jain (JIRA)

 [ 
https://issues.apache.org/jira/browse/OAK-5658?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amit Jain resolved OAK-5658.

Resolution: Duplicate

> Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 64-bit 
> Windows only,nsfixtures=SEGMENT_TAR,profile=unittesting #450 failed
> 
>
> Key: OAK-5658
> URL: https://issues.apache.org/jira/browse/OAK-5658
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 
> 64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=unittesting #450 has 
> failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited 
> security) 64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=unittesting 
> #450|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=unittesting/450/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=unittesting/450/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5638) Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=integrationTesting #448 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867099#comment-15867099
 ] 

Hudson commented on OAK-5638:
-

Previously failing build now is OK.
 Passed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 
64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=integrationTesting 
#451|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=integrationTesting/451/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=integrationTesting/451/console]

> Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 64-bit 
> Windows only,nsfixtures=DOCUMENT_NS,profile=integrationTesting #448 failed
> ---
>
> Key: OAK-5638
> URL: https://issues.apache.org/jira/browse/OAK-5638
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 
> 64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=integrationTesting #448 
> has failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited 
> security) 64-bit Windows 
> only,nsfixtures=DOCUMENT_NS,profile=integrationTesting 
> #448|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=integrationTesting/448/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=integrationTesting/448/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5608) Test failure: org.apache.jackrabbit.mk.util.CommitGateIT.test

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5608?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867093#comment-15867093
 ] 

Hudson commented on OAK-5608:
-

Previously failing build now is OK.
 Passed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 
64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=integrationTesting 
#451|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=integrationTesting/451/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=integrationTesting/451/console]

> Test failure: org.apache.jackrabbit.mk.util.CommitGateIT.test
> -
>
> Key: OAK-5608
> URL: https://issues.apache.org/jira/browse/OAK-5608
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Affects Versions: 1.0.36, 1.2.23
>Reporter: Hudson
>Assignee: Marcel Reutegger
>  Labels: test-failure, windows
> Fix For: 1.0.37, 1.2.24
>
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 
> 64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=integrationTesting #443 
> has failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited 
> security) 64-bit Windows 
> only,nsfixtures=SEGMENT_TAR,profile=integrationTesting 
> #443|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=integrationTesting/443/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=integrationTesting/443/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5640) Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=integrationTesting #449 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5640?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867090#comment-15867090
 ] 

Hudson commented on OAK-5640:
-

Previously failing build now is OK.
 Passed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=integrationTesting 
#451|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=integrationTesting/451/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=integrationTesting/451/console]

> Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 64-bit 
> Windows only,nsfixtures=SEGMENT_TAR,profile=integrationTesting #449 failed
> ---
>
> Key: OAK-5640
> URL: https://issues.apache.org/jira/browse/OAK-5640
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
> 64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=integrationTesting #449 
> has failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited 
> security) 64-bit Windows 
> only,nsfixtures=SEGMENT_TAR,profile=integrationTesting 
> #449|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=integrationTesting/449/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=integrationTesting/449/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5639) Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=unittesting #449 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5639?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867084#comment-15867084
 ] 

Hudson commented on OAK-5639:
-

Previously failing build now is OK.
 Passed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 
64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=unittesting 
#451|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=unittesting/451/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=unittesting/451/console]

> Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 64-bit 
> Windows only,nsfixtures=DOCUMENT_NS,profile=unittesting #449 failed
> 
>
> Key: OAK-5639
> URL: https://issues.apache.org/jira/browse/OAK-5639
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 
> 64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=unittesting #449 has 
> failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited 
> security) 64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=unittesting 
> #449|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=unittesting/449/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=unittesting/449/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5628) Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 64-bit Windows only,nsfixtures=SEGMENT_MK,profile=unittesting #446 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5628?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867077#comment-15867077
 ] 

Hudson commented on OAK-5628:
-

Previously failing build now is OK.
 Passed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
64-bit Windows only,nsfixtures=SEGMENT_MK,profile=unittesting 
#451|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=unittesting/451/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=unittesting/451/console]

> Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 64-bit 
> Windows only,nsfixtures=SEGMENT_MK,profile=unittesting #446 failed
> ---
>
> Key: OAK-5628
> URL: https://issues.apache.org/jira/browse/OAK-5628
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
> 64-bit Windows only,nsfixtures=SEGMENT_MK,profile=unittesting #446 has failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited 
> security) 64-bit Windows only,nsfixtures=SEGMENT_MK,profile=unittesting 
> #446|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=unittesting/446/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=unittesting/446/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5658) Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=unittesting #450 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5658?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867067#comment-15867067
 ] 

Hudson commented on OAK-5658:
-

Previously failing build now is OK.
 Passed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 
64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=unittesting 
#451|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=unittesting/451/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=unittesting/451/console]

> Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 64-bit 
> Windows only,nsfixtures=SEGMENT_TAR,profile=unittesting #450 failed
> 
>
> Key: OAK-5658
> URL: https://issues.apache.org/jira/browse/OAK-5658
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 
> 64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=unittesting #450 has 
> failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited 
> security) 64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=unittesting 
> #450|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=unittesting/450/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=unittesting/450/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5659) Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=integrationTesting #450 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5659?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867063#comment-15867063
 ] 

Hudson commented on OAK-5659:
-

Build is still failing.
Failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=integrationTesting 
#451|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=integrationTesting/451/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=integrationTesting/451/console]

> Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 64-bit 
> Windows only,nsfixtures=DOCUMENT_NS,profile=integrationTesting #450 failed
> ---
>
> Key: OAK-5659
> URL: https://issues.apache.org/jira/browse/OAK-5659
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
> 64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=integrationTesting #450 
> has failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited 
> security) 64-bit Windows 
> only,nsfixtures=DOCUMENT_NS,profile=integrationTesting 
> #450|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=integrationTesting/450/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=integrationTesting/450/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5624) Test failure: org.apache.jackrabbit.oak.cache.ConcurrentTest.testLoaderBlock

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5624?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867057#comment-15867057
 ] 

Hudson commented on OAK-5624:
-

Previously failing build now is OK.
 Passed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=unittesting 
#451|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=unittesting/451/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=unittesting/451/console]

> Test failure: org.apache.jackrabbit.oak.cache.ConcurrentTest.testLoaderBlock
> 
>
> Key: OAK-5624
> URL: https://issues.apache.org/jira/browse/OAK-5624
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>  Labels: test-failure, windows
> Fix For: 1.8
>
> Attachments: unit-tests.log
>
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
> 64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=unittesting #445 has 
> failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited 
> security) 64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=unittesting 
> #445|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=unittesting/445/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=unittesting/445/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Created] (OAK-5660) Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 64-bit Windows only,nsfixtures=SEGMENT_MK,profile=integrationTesting #451 failed

2017-02-14 Thread Hudson (JIRA)
Hudson created OAK-5660:
---

 Summary: Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 
(unlimited security) 64-bit Windows 
only,nsfixtures=SEGMENT_MK,profile=integrationTesting #451 failed
 Key: OAK-5660
 URL: https://issues.apache.org/jira/browse/OAK-5660
 Project: Jackrabbit Oak
  Issue Type: Bug
  Components: continuous integration
Reporter: Hudson


Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/

The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
64-bit Windows only,nsfixtures=SEGMENT_MK,profile=integrationTesting #451 has 
failed.
First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited 
security) 64-bit Windows only,nsfixtures=SEGMENT_MK,profile=integrationTesting 
#451|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=integrationTesting/451/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=integrationTesting/451/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5610) Test failure: org.apache.jackrabbit.oak.stats.ClockTest.testClockDrift

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5610?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867023#comment-15867023
 ] 

Hudson commented on OAK-5610:
-

Previously failing build now is OK.
 Passed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=unittesting 
#451|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=unittesting/451/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=unittesting/451/console]

> Test failure: org.apache.jackrabbit.oak.stats.ClockTest.testClockDrift
> --
>
> Key: OAK-5610
> URL: https://issues.apache.org/jira/browse/OAK-5610
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Affects Versions: 1.0.36
>Reporter: Hudson
>  Labels: test-failure, windows
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
> 64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=unittesting #443 has 
> failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited 
> security) 64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=unittesting 
> #443|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=unittesting/443/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=unittesting/443/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5562) Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 64-bit Windows only,nsfixtures=SEGMENT_MK,profile=integrationTesting #428 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5562?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867012#comment-15867012
 ] 

Hudson commented on OAK-5562:
-

Previously failing build now is OK.
 Passed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 
64-bit Windows only,nsfixtures=SEGMENT_MK,profile=integrationTesting 
#451|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=integrationTesting/451/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=integrationTesting/451/console]

> Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 64-bit 
> Windows only,nsfixtures=SEGMENT_MK,profile=integrationTesting #428 failed
> --
>
> Key: OAK-5562
> URL: https://issues.apache.org/jira/browse/OAK-5562
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 
> 64-bit Windows only,nsfixtures=SEGMENT_MK,profile=integrationTesting #428 has 
> failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited 
> security) 64-bit Windows 
> only,nsfixtures=SEGMENT_MK,profile=integrationTesting 
> #428|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=integrationTesting/428/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=integrationTesting/428/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5625) Test failure: CopyBinariesTest

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5625?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15867003#comment-15867003
 ] 

Hudson commented on OAK-5625:
-

Previously failing build now is OK.
 Passed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
64-bit Windows only,nsfixtures=DOCUMENT_RDB,profile=unittesting 
#451|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_RDB,profile=unittesting/451/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_RDB,profile=unittesting/451/console]

> Test failure: CopyBinariesTest
> --
>
> Key: OAK-5625
> URL: https://issues.apache.org/jira/browse/OAK-5625
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration, upgrade
>Affects Versions: 1.6.0
>Reporter: Hudson
>  Labels: Windows, test-failure
> Fix For: 1.6.1
>
> Attachments: consoleFull, unit-tests.log
>
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
> 64-bit Windows only,nsfixtures=DOCUMENT_RDB,profile=unittesting #445 has 
> failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited 
> security) 64-bit Windows only,nsfixtures=DOCUMENT_RDB,profile=unittesting 
> #445|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_RDB,profile=unittesting/445/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_RDB,profile=unittesting/445/console]
> {noformat}
> validateMigration[Copy references, no blobstores defined, document -> 
> segment-tar](org.apache.jackrabbit.oak.upgrade.cli.blob.CopyBinariesTest)  
> Time elapsed: 6.682 sec  <<< ERROR!
> javax.jcr.RepositoryException: Failed to copy content
>   at 
> org.apache.jackrabbit.oak.upgrade.RepositorySidegrade.copy(RepositorySidegrade.java:286)
>   at 
> org.apache.jackrabbit.oak.upgrade.RepositorySidegrade.copy(RepositorySidegrade.java:242)
>   at 
> org.apache.jackrabbit.oak.upgrade.cli.AbstractOak2OakTest.initContent(AbstractOak2OakTest.java:139)
>   at 
> org.apache.jackrabbit.oak.upgrade.cli.blob.CopyBinariesTest.prepare(CopyBinariesTest.java:176)
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5607) Test failure: security.authentication.ldap.LdapProviderTest.testGetUnknownUserByRef

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5607?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15866987#comment-15866987
 ] 

Hudson commented on OAK-5607:
-

Previously failing build now is OK.
 Passed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 
64-bit Windows only,nsfixtures=SEGMENT_MK,profile=unittesting 
#451|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=unittesting/451/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=unittesting/451/console]

> Test failure: 
> security.authentication.ldap.LdapProviderTest.testGetUnknownUserByRef
> ---
>
> Key: OAK-5607
> URL: https://issues.apache.org/jira/browse/OAK-5607
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: auth-ldap, continuous integration
>Affects Versions: 1.0.36, 1.6.0
>Reporter: Hudson
>  Labels: test-failure, windows
> Fix For: 1.6.1
>
> Attachments: unit-tests.log
>
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 
> 64-bit Windows only,nsfixtures=SEGMENT_MK,profile=unittesting #441 has failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited 
> security) 64-bit Windows only,nsfixtures=SEGMENT_MK,profile=unittesting 
> #441|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=unittesting/441/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=unittesting/441/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5229) Using Node.setPrimaryType() should fail if non-matching childnodes

2017-02-14 Thread Tobias Bocanegra (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5229?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15866973#comment-15866973
 ] 

Tobias Bocanegra commented on OAK-5229:
---

I agree, so the following happens:

- if an item (property or node) is no longer allowed with the new primary type, 
then a ConstraintViolationException is thrown.
- no items get removed 

so in order to change the primary type to a more restrictive one, the 
application needs to re-import the node, or figure out which items to remove 
before calling setPrimaryType.

(in case of vault, we would "catch" the ConstraintViolation exception and 
re-import the node, or throw an error, based on the import mode)

> Using Node.setPrimaryType() should fail if non-matching childnodes
> --
>
> Key: OAK-5229
> URL: https://issues.apache.org/jira/browse/OAK-5229
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: core
>Affects Versions: 1.5.14
>Reporter: Tobias Bocanegra
>Assignee: Alex Parvulescu
>Priority: Critical
> Fix For: 1.8, 1.6.1
>
> Attachments: OAK-5229.patch, OAK-5229-tests.patch, OAK-5229-v2.patch, 
> OAK-5229-v3.patch, OAK-5229-v4.patch
>
>
> 1. Assume the following:
> {noformat}
> /testNode [nt:unstructured]
>   /unstructured_child [nt:unstructured]
> {noformat}
> 2. setting "/testNode".setPrimaryType("nt:folder")
> 3. save the session.
> Altering the primary type works, thus leaving the repository in an 
> inconsistent state.
> Interestingly, subsequent calls to 
> "/testNiode/unstructured_child".setProperty() will fail:
> {noformat}
> javax.jcr.nodetype.ConstraintViolationException: OakConstraint0001: 
> /test_node[[nt:folder]]: No matching definition found for child node 
> unstructured_child with effective type [nt:unstructured]
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5638) Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=integrationTesting #448 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15866867#comment-15866867
 ] 

Hudson commented on OAK-5638:
-

Previously failing build now is OK.
 Passed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 
64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=integrationTesting 
#450|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=integrationTesting/450/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=integrationTesting/450/console]

> Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 64-bit 
> Windows only,nsfixtures=DOCUMENT_NS,profile=integrationTesting #448 failed
> ---
>
> Key: OAK-5638
> URL: https://issues.apache.org/jira/browse/OAK-5638
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 
> 64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=integrationTesting #448 
> has failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited 
> security) 64-bit Windows 
> only,nsfixtures=DOCUMENT_NS,profile=integrationTesting 
> #448|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=integrationTesting/448/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=integrationTesting/448/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5640) Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=integrationTesting #449 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5640?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15866863#comment-15866863
 ] 

Hudson commented on OAK-5640:
-

Previously failing build now is OK.
 Passed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=integrationTesting 
#450|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=integrationTesting/450/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=integrationTesting/450/console]

> Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 64-bit 
> Windows only,nsfixtures=SEGMENT_TAR,profile=integrationTesting #449 failed
> ---
>
> Key: OAK-5640
> URL: https://issues.apache.org/jira/browse/OAK-5640
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
> 64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=integrationTesting #449 
> has failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited 
> security) 64-bit Windows 
> only,nsfixtures=SEGMENT_TAR,profile=integrationTesting 
> #449|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=integrationTesting/449/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=integrationTesting/449/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5608) Test failure: org.apache.jackrabbit.mk.util.CommitGateIT.test

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5608?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15866845#comment-15866845
 ] 

Hudson commented on OAK-5608:
-

Previously failing build now is OK.
 Passed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 
64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=integrationTesting 
#450|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=integrationTesting/450/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=integrationTesting/450/console]

> Test failure: org.apache.jackrabbit.mk.util.CommitGateIT.test
> -
>
> Key: OAK-5608
> URL: https://issues.apache.org/jira/browse/OAK-5608
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Affects Versions: 1.0.36, 1.2.23
>Reporter: Hudson
>Assignee: Marcel Reutegger
>  Labels: test-failure, windows
> Fix For: 1.0.37, 1.2.24
>
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 
> 64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=integrationTesting #443 
> has failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited 
> security) 64-bit Windows 
> only,nsfixtures=SEGMENT_TAR,profile=integrationTesting 
> #443|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=integrationTesting/443/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=integrationTesting/443/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5639) Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=unittesting #449 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5639?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15866840#comment-15866840
 ] 

Hudson commented on OAK-5639:
-

Previously failing build now is OK.
 Passed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 
64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=unittesting 
#450|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=unittesting/450/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=unittesting/450/console]

> Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 64-bit 
> Windows only,nsfixtures=DOCUMENT_NS,profile=unittesting #449 failed
> 
>
> Key: OAK-5639
> URL: https://issues.apache.org/jira/browse/OAK-5639
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 
> 64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=unittesting #449 has 
> failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited 
> security) 64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=unittesting 
> #449|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=unittesting/449/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=unittesting/449/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5628) Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 64-bit Windows only,nsfixtures=SEGMENT_MK,profile=unittesting #446 failed

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5628?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15866835#comment-15866835
 ] 

Hudson commented on OAK-5628:
-

Previously failing build now is OK.
 Passed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
64-bit Windows only,nsfixtures=SEGMENT_MK,profile=unittesting 
#450|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=unittesting/450/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=unittesting/450/console]

> Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 64-bit 
> Windows only,nsfixtures=SEGMENT_MK,profile=unittesting #446 failed
> ---
>
> Key: OAK-5628
> URL: https://issues.apache.org/jira/browse/OAK-5628
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
> 64-bit Windows only,nsfixtures=SEGMENT_MK,profile=unittesting #446 has failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited 
> security) 64-bit Windows only,nsfixtures=SEGMENT_MK,profile=unittesting 
> #446|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=unittesting/446/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=unittesting/446/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Created] (OAK-5659) Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=integrationTesting #450 failed

2017-02-14 Thread Hudson (JIRA)
Hudson created OAK-5659:
---

 Summary: Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 
(unlimited security) 64-bit Windows 
only,nsfixtures=DOCUMENT_NS,profile=integrationTesting #450 failed
 Key: OAK-5659
 URL: https://issues.apache.org/jira/browse/OAK-5659
 Project: Jackrabbit Oak
  Issue Type: Bug
  Components: continuous integration
Reporter: Hudson


Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/

The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=integrationTesting #450 has 
failed.
First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited 
security) 64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=integrationTesting 
#450|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=integrationTesting/450/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=integrationTesting/450/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5624) Test failure: org.apache.jackrabbit.oak.cache.ConcurrentTest.testLoaderBlock

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5624?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15866804#comment-15866804
 ] 

Hudson commented on OAK-5624:
-

Previously failing build now is OK.
 Passed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=unittesting 
#450|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=unittesting/450/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=unittesting/450/console]

> Test failure: org.apache.jackrabbit.oak.cache.ConcurrentTest.testLoaderBlock
> 
>
> Key: OAK-5624
> URL: https://issues.apache.org/jira/browse/OAK-5624
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>  Labels: test-failure, windows
> Fix For: 1.8
>
> Attachments: unit-tests.log
>
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
> 64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=unittesting #445 has 
> failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited 
> security) 64-bit Windows only,nsfixtures=DOCUMENT_NS,profile=unittesting 
> #445|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=unittesting/445/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=DOCUMENT_NS,profile=unittesting/445/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5613) Test failure: segment.standby.ExternalSharedStoreIT.testProxyFlippedIntermediateByteChange2

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5613?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15866795#comment-15866795
 ] 

Hudson commented on OAK-5613:
-

Previously failing build now is OK.
 Passed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
64-bit Windows only,nsfixtures=SEGMENT_MK,profile=integrationTesting 
#450|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=integrationTesting/450/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=integrationTesting/450/console]

> Test failure: 
> segment.standby.ExternalSharedStoreIT.testProxyFlippedIntermediateByteChange2
> ---
>
> Key: OAK-5613
> URL: https://issues.apache.org/jira/browse/OAK-5613
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Affects Versions: 1.0.36
>Reporter: Hudson
>  Labels: test-failure, windows
> Attachments: unit-tests.log
>
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
> 64-bit Windows only,nsfixtures=SEGMENT_MK,profile=integrationTesting #443 has 
> failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited 
> security) 64-bit Windows 
> only,nsfixtures=SEGMENT_MK,profile=integrationTesting 
> #443|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=integrationTesting/443/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=integrationTesting/443/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Created] (OAK-5658) Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=unittesting #450 failed

2017-02-14 Thread Hudson (JIRA)
Hudson created OAK-5658:
---

 Summary: Build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 
(unlimited security) 64-bit Windows 
only,nsfixtures=SEGMENT_TAR,profile=unittesting #450 failed
 Key: OAK-5658
 URL: https://issues.apache.org/jira/browse/OAK-5658
 Project: Jackrabbit Oak
  Issue Type: Bug
  Components: continuous integration
Reporter: Hudson


Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/

The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 
64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=unittesting #450 has failed.
First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited 
security) 64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=unittesting 
#450|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=unittesting/450/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=unittesting/450/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5610) Test failure: org.apache.jackrabbit.oak.stats.ClockTest.testClockDrift

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5610?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15866758#comment-15866758
 ] 

Hudson commented on OAK-5610:
-

Previously failing build now is OK.
 Passed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=unittesting 
#450|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=unittesting/450/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=unittesting/450/console]

> Test failure: org.apache.jackrabbit.oak.stats.ClockTest.testClockDrift
> --
>
> Key: OAK-5610
> URL: https://issues.apache.org/jira/browse/OAK-5610
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Affects Versions: 1.0.36
>Reporter: Hudson
>  Labels: test-failure, windows
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited security) 
> 64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=unittesting #443 has 
> failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.7 (unlimited 
> security) 64-bit Windows only,nsfixtures=SEGMENT_TAR,profile=unittesting 
> #443|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=unittesting/443/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.7%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_TAR,profile=unittesting/443/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5607) Test failure: security.authentication.ldap.LdapProviderTest.testGetUnknownUserByRef

2017-02-14 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5607?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15866633#comment-15866633
 ] 

Hudson commented on OAK-5607:
-

Previously failing build now is OK.
 Passed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 
64-bit Windows only,nsfixtures=SEGMENT_MK,profile=unittesting 
#450|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=unittesting/450/]
 [console 
log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=unittesting/450/console]

> Test failure: 
> security.authentication.ldap.LdapProviderTest.testGetUnknownUserByRef
> ---
>
> Key: OAK-5607
> URL: https://issues.apache.org/jira/browse/OAK-5607
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: auth-ldap, continuous integration
>Affects Versions: 1.0.36, 1.6.0
>Reporter: Hudson
>  Labels: test-failure, windows
> Fix For: 1.6.1
>
> Attachments: unit-tests.log
>
>
> Jenkins Windows CI failure: https://builds.apache.org/job/Oak-Win/
> The build Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited security) 
> 64-bit Windows only,nsfixtures=SEGMENT_MK,profile=unittesting #441 has failed.
> First failed run: [Oak-Win/Windows slaves=Windows,jdk=JDK 1.8 (unlimited 
> security) 64-bit Windows only,nsfixtures=SEGMENT_MK,profile=unittesting 
> #441|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=unittesting/441/]
>  [console 
> log|https://builds.apache.org/job/Oak-Win/Windows%20slaves=Windows,jdk=JDK%201.8%20(unlimited%20security)%2064-bit%20Windows%20only,nsfixtures=SEGMENT_MK,profile=unittesting/441/console]



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Comment Edited] (OAK-5657) leverage project.version in oak-examples

2017-02-14 Thread Davide Giannella (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5657?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15866131#comment-15866131
 ] 

Davide Giannella edited comment on OAK-5657 at 2/14/17 5:29 PM:


in trunk http://svn.apache.org/r1782990
in 1.6 http://svn.apache.org/r1782992


was (Author: edivad):
in trunk http://svn.apache.org/r1782990

> leverage project.version in oak-examples
> 
>
> Key: OAK-5657
> URL: https://issues.apache.org/jira/browse/OAK-5657
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: examples
>Reporter: Davide Giannella
>Assignee: Davide Giannella
> Fix For: 1.7.0, 1.8, 1.6.1
>
>
> To ease the deployment of version specific oak (ie 1.6.1-r76543) make that 
> oak-example uses {project.version} rather than an hardcoded version as it's 
> not caught by versions:set plugin



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (OAK-5657) leverage project.version in oak-examples

2017-02-14 Thread Davide Giannella (JIRA)

 [ 
https://issues.apache.org/jira/browse/OAK-5657?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Davide Giannella updated OAK-5657:
--
Fix Version/s: 1.6.1

> leverage project.version in oak-examples
> 
>
> Key: OAK-5657
> URL: https://issues.apache.org/jira/browse/OAK-5657
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: examples
>Reporter: Davide Giannella
>Assignee: Davide Giannella
> Fix For: 1.7.0, 1.8, 1.6.1
>
>
> To ease the deployment of version specific oak (ie 1.6.1-r76543) make that 
> oak-example uses {project.version} rather than an hardcoded version as it's 
> not caught by versions:set plugin



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Resolved] (OAK-5617) Metrics for DocumentStore.remove()

2017-02-14 Thread Marcel Reutegger (JIRA)

 [ 
https://issues.apache.org/jira/browse/OAK-5617?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Reutegger resolved OAK-5617.
---
   Resolution: Fixed
Fix Version/s: 1.7.0

Implemented in trunk: http://svn.apache.org/r1782991

> Metrics for DocumentStore.remove()
> --
>
> Key: OAK-5617
> URL: https://issues.apache.org/jira/browse/OAK-5617
> Project: Jackrabbit Oak
>  Issue Type: Improvement
>  Components: core, documentmk, rdbmk
>Reporter: Marcel Reutegger
>Assignee: Marcel Reutegger
>Priority: Minor
> Fix For: 1.7.0, 1.8
>
>
> OAK-3791 introduced metrics for various DocumentStore operations. However, 
> the remove methods were not covered. This issue is about adding metrics for 
> those methods.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Resolved] (OAK-5657) leverage project.version in oak-examples

2017-02-14 Thread Davide Giannella (JIRA)

 [ 
https://issues.apache.org/jira/browse/OAK-5657?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Davide Giannella resolved OAK-5657.
---
   Resolution: Fixed
Fix Version/s: 1.8
   1.7.0

> leverage project.version in oak-examples
> 
>
> Key: OAK-5657
> URL: https://issues.apache.org/jira/browse/OAK-5657
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: examples
>Reporter: Davide Giannella
>Assignee: Davide Giannella
> Fix For: 1.7.0, 1.8
>
>
> To ease the deployment of version specific oak (ie 1.6.1-r76543) make that 
> oak-example uses {project.version} rather than an hardcoded version as it's 
> not caught by versions:set plugin



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5657) leverage project.version in oak-examples

2017-02-14 Thread Davide Giannella (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5657?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15866131#comment-15866131
 ] 

Davide Giannella commented on OAK-5657:
---

in trunk http://svn.apache.org/r1782990

> leverage project.version in oak-examples
> 
>
> Key: OAK-5657
> URL: https://issues.apache.org/jira/browse/OAK-5657
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: examples
>Reporter: Davide Giannella
>Assignee: Davide Giannella
> Fix For: 1.7.0, 1.8
>
>
> To ease the deployment of version specific oak (ie 1.6.1-r76543) make that 
> oak-example uses {project.version} rather than an hardcoded version as it's 
> not caught by versions:set plugin



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Created] (OAK-5657) leverage project.version in oak-examples

2017-02-14 Thread Davide Giannella (JIRA)
Davide Giannella created OAK-5657:
-

 Summary: leverage project.version in oak-examples
 Key: OAK-5657
 URL: https://issues.apache.org/jira/browse/OAK-5657
 Project: Jackrabbit Oak
  Issue Type: Bug
  Components: examples
Reporter: Davide Giannella
Assignee: Davide Giannella


To ease the deployment of version specific oak (ie 1.6.1-r76543) make that 
oak-example uses {project.version} rather than an hardcoded version as it's not 
caught by versions:set plugin



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Assigned] (OAK-5617) Metrics for DocumentStore.remove()

2017-02-14 Thread Marcel Reutegger (JIRA)

 [ 
https://issues.apache.org/jira/browse/OAK-5617?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Reutegger reassigned OAK-5617:
-

Assignee: Marcel Reutegger

> Metrics for DocumentStore.remove()
> --
>
> Key: OAK-5617
> URL: https://issues.apache.org/jira/browse/OAK-5617
> Project: Jackrabbit Oak
>  Issue Type: Improvement
>  Components: core, documentmk, rdbmk
>Reporter: Marcel Reutegger
>Assignee: Marcel Reutegger
>Priority: Minor
> Fix For: 1.8
>
>
> OAK-3791 introduced metrics for various DocumentStore operations. However, 
> the remove methods were not covered. This issue is about adding metrics for 
> those methods.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Comment Edited] (OAK-5649) Error in RefreshPolicy can lead to IndexNode lock leak

2017-02-14 Thread Vikas Saurabh (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5649?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15866061#comment-15866061
 ] 

Vikas Saurabh edited comment on OAK-5649 at 2/14/17 4:26 PM:
-

+1, patch looks good to me. Btw, would you know of an example case where it 
happened? What I'm wondering is: should we track if say there are 10 
consecutive exceptions and then do something about it (do something probably 
equal (1) stop nrt, (2) show it somewhere in jmx). Otoh, if this is likely a 
transient (I hope sitll unexpected though), then ignore whatever I said (I'm 
non transient failure would flood the logs?!)

PS: Of course, the latter part is about improving the behavior - not for 1.6.1.


was (Author: catholicon):
+1, patch looks good to me. Btw, would you know of an example case where it 
happened? What I'm wondering is: should we track if say there are 10 
consecutive exceptions and then do something about it (do something probably 
equal (1) stop nrt, (2) show it somewhere in jmx). Otoh, if this is likely a 
transient (I hope sitll unexpected though), then ignore whatever I said (I'm 
non transient failure would flood the logs?!)

> Error in RefreshPolicy can lead to IndexNode lock leak
> --
>
> Key: OAK-5649
> URL: https://issues.apache.org/jira/browse/OAK-5649
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: lucene
>Affects Versions: 1.6.0
>Reporter: Chetan Mehrotra
>Assignee: Chetan Mehrotra
> Fix For: 1.7.0, 1.8, 1.6.1
>
> Attachments: OAK-5649-v1.patch
>
>
> {{IndexNode}} uses a ReadWriteLock which is "acquired" and "released". 
> {code}
>  boolean acquire() {
> lock.readLock().lock();
> if (closed) {
> lock.readLock().unlock();
> return false;
> } else {
> refreshPolicy.refreshOnReadIfRequired(refreshCallback);
> return true;
> }
> }
> {code}
> Its possible that any exception thrown in 
> {{RefreshPolicy#refreshOnReadIfRequired}} can lead to lock being acquired but 
> not released causing the lock to be lost and any further attempt to close 
> such IndexNode instance would block indefinitely.
> As a fix the {{acquire}} call should account for any potential exception 
> thrown in any call made from within that method call



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5649) Error in RefreshPolicy can lead to IndexNode lock leak

2017-02-14 Thread Vikas Saurabh (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5649?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15866061#comment-15866061
 ] 

Vikas Saurabh commented on OAK-5649:


+1, patch looks good to me. Btw, would you know of an example case where it 
happened? What I'm wondering is: should we track if say there are 10 
consecutive exceptions and then do something about it (do something probably 
equal (1) stop nrt, (2) show it somewhere in jmx). Otoh, if this is likely a 
transient (I hope sitll unexpected though), then ignore whatever I said (I'm 
non transient failure would flood the logs?!)

> Error in RefreshPolicy can lead to IndexNode lock leak
> --
>
> Key: OAK-5649
> URL: https://issues.apache.org/jira/browse/OAK-5649
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: lucene
>Affects Versions: 1.6.0
>Reporter: Chetan Mehrotra
>Assignee: Chetan Mehrotra
> Fix For: 1.7.0, 1.8, 1.6.1
>
> Attachments: OAK-5649-v1.patch
>
>
> {{IndexNode}} uses a ReadWriteLock which is "acquired" and "released". 
> {code}
>  boolean acquire() {
> lock.readLock().lock();
> if (closed) {
> lock.readLock().unlock();
> return false;
> } else {
> refreshPolicy.refreshOnReadIfRequired(refreshCallback);
> return true;
> }
> }
> {code}
> Its possible that any exception thrown in 
> {{RefreshPolicy#refreshOnReadIfRequired}} can lead to lock being acquired but 
> not released causing the lock to be lost and any further attempt to close 
> such IndexNode instance would block indefinitely.
> As a fix the {{acquire}} call should account for any potential exception 
> thrown in any call made from within that method call



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5437) Add a persistence-dependent namespace when running CLI commands

2017-02-14 Thread Davide Giannella (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5437?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15866038#comment-15866038
 ] 

Davide Giannella commented on OAK-5437:
---

It's not clear to me if we're going to implement separate modules for each 
command and if so how we expect any user to leverage those.

> Add a persistence-dependent namespace when running CLI commands
> ---
>
> Key: OAK-5437
> URL: https://issues.apache.org/jira/browse/OAK-5437
> Project: Jackrabbit Oak
>  Issue Type: Improvement
>  Components: run
>Reporter: Francesco Mari
>Assignee: Francesco Mari
>  Labels: tooling
> Fix For: 1.8
>
>
> Commands in oak-run currently live in a flat namespace. If a command is 
> specific to only one implementation, it will leave along other 
> implementation-specific commands without any means of distinguishing what 
> belongs where.
> I would like to add a layer of indirection to the oak-run command line 
> interface, so to parse commands in the following fashion:
> {noformat}
> oak-run segment debug /path/to/folder
> oak-run mongo debug mongodb://host:12345
> oak-run rdb debug jdbc:oracle:oci8:scott/tiger@myhost
> {noformat}
> In this scenario, oak-run would become a simple entry point that would 
> delegate to implementation-specific command line utilities based on the first 
> argument. In the previous example, {{segment}}, {{mongo}} and {{rdb}} would 
> delegate to three different implementation specific CLI utilities. Each of 
> these CLI utilities will understand the {{debug}} command and will collect 
> command-line parameters as it sees fit.
> If the code for a command is so generic that can be reused from different 
> commands, it can be parameterised and reused from different 
> implementation-specific commands.
> The benefit of this approach is that we can start moving commands closer to 
> the implementations. This approach would benefit oak-run as well, which is 
> overloaded with many commands from many different implementations.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (OAK-3134) Identify functionality offered by oak-run

2017-02-14 Thread Davide Giannella (JIRA)

 [ 
https://issues.apache.org/jira/browse/OAK-3134?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Davide Giannella updated OAK-3134:
--
Description: 
oak-run reached the size of 50MB+ and offers indeed various functionalities 
that could be moved to their own module.

This ticket is about to identify what oak-run currently offers and what/if 
could be split.

ML thread: http://markmail.org/thread/w34bphrk57l7pkaz

|| Functionality || Package || Module ||
| Backup | | oak-operations|
| Check | | oak-operations|
| Checkpoints | | oak-operations|
| Compact | | oak-operations|
| Debug | | oak-operations|
| Explore | |oak-development |
| Groovy console | org.apache.jackrabbit.oak.console, 
/oak-run/src/main/groovy/org/apache/jackrabbit/oak/console | oak-operations|
| Primary | | oak-development|
| Recovery | | oak-operations|
| Repair | | oak-operations|
| Restore | | oak-operations|
| Server | | oak-development|
| Standby | | oak-development|
| Upgrade | | oak-upgrade|
| micro-benchmark | org.apache.jackrabbit.oak.benchmark |oak-development |
| scalability benchmark | org.apache.jackrabbit.oak.scalability | 
oak-development|
| DataStoreCacheUpgrade | | oak-operations |
| DataStoreCheck | | oak-operations |
| Garbage | | oak-operations |
| tarmkdiff | | oak-operations |
| tarmkrecovery | | oak-operations |
| graph | | oak-development |
| history | | oak-operations |
| index | | oak-operations |
| persistentcache | | oak-operations |
| resetclusterid | | oak-operations |
| threaddump | | oak-development |
| tika | | oak-operations |


Modules left after the actions:

**oak-development**
Used to group and execute all the tools used during development.
_deployed to maven:_ No.

**oak-operations**
Used to group and execute all the tools used normally in production environment 
for tasks like maintenance & C.
_deployed to maven:_ Yes.

**oak-run**
Will group what's left after the split.
_deployed to maven:_ No.

**oak-upgrade**
Will group tools for upgrading/migrating from one repo/version to another
_deployed to maven:_ yes.


  was:
oak-run reached the size of 50MB+ and offers indeed various functionalities 
that could be moved to their own module.

This ticket is about to identify what oak-run currently offers and what/if 
could be split.

ML thread: http://markmail.org/thread/w34bphrk57l7pkaz

|| Functionality || Package || Module ||
| Backup | | oak-operations|
| Check | | oak-operations|
| Checkpoints | | oak-operations|
| Compact | | oak-operations|
| Debug | | oak-operations|
| Explore | |oak-development |
| Groovy console | org.apache.jackrabbit.oak.console, 
/oak-run/src/main/groovy/org/apache/jackrabbit/oak/console | oak-operations|
| Primary | | oak-development|
| Recovery | | oak-operations|
| Repair | | oak-operations|
| Restore | | oak-operations|
| Server | | oak-development|
| Standby | | oak-development|
| Upgrade | | oak-upgrade|
| micro-benchmark | org.apache.jackrabbit.oak.benchmark |oak-development |
| scalability benchmark | org.apache.jackrabbit.oak.scalability | 
oak-development|
| DataStoreCacheUpgrade | | |
| DataStoreCheck | | |
| Garbage | | |
| Graph | | |
| Help | | |
| History | | |
| Index | | |
| PersistentCache | | |
| ResetClusterId | | |
| TarMKDiff | | |
| TarMKRecovery | | |
| ThreadDump | | |
| Tika | | |

Modules left after the actions:

**oak-development**
Used to group and execute all the tools used during development.
_deployed to maven:_ No.

**oak-operations**
Used to group and execute all the tools used normally in production environment 
for tasks like maintenance & C.
_deployed to maven:_ Yes.

**oak-run**
Will group what's left after the split.
_deployed to maven:_ No.

**oak-upgrade**
Will group tools for upgrading/migrating from one repo/version to another
_deployed to maven:_ yes.



> Identify functionality offered by oak-run
> -
>
> Key: OAK-3134
> URL: https://issues.apache.org/jira/browse/OAK-3134
> Project: Jackrabbit Oak
>  Issue Type: Task
>  Components: run
>Reporter: Davide Giannella
>Assignee: Davide Giannella
>
> oak-run reached the size of 50MB+ and offers indeed various functionalities 
> that could be moved to their own module.
> This ticket is about to identify what oak-run currently offers and what/if 
> could be split.
> ML thread: http://markmail.org/thread/w34bphrk57l7pkaz
> || Functionality || Package || Module ||
> | Backup | | oak-operations|
> | Check | | oak-operations|
> | Checkpoints | | oak-operations|
> | Compact | | oak-operations|
> | Debug | | oak-operations|
> | Explore | |oak-development |
> | Groovy console | org.apache.jackrabbit.oak.console, 
> /oak-run/src/main/groovy/org/apache/jackrabbit/oak/console | oak-operations|
> | Primary | | oak-development|
> | Recovery | | oak-operations|
> | Repair | | oak-operations|
> | Restore | | oak-operation

[jira] [Commented] (OAK-5655) TarMK: Analyse locality of reference

2017-02-14 Thread JIRA

[ 
https://issues.apache.org/jira/browse/OAK-5655?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15865973#comment-15865973
 ] 

Michael Dürig commented on OAK-5655:


The following incident plot shows a repository created by running 
{{SegmentCompactionIT}} for a couple of minutes. Subsequently I moved the 
direct children of {{/root}} into roughly equally sized child nodes {{0}} to 
{{9}}. All nodes are smeared across a total of almost 900 segments. 
!segment-per-path.png|width=400!


After running compaction the picture changes completely. While the number of 
segments per node decreased drastically to just under 50, the nodes depicted 
towards the bottom of the diagram are still spread over more segments than 
those on the top. 
!segment-per-path-compacted.png|width=400!

The reason for this is that the deduplication cache is gradually being built up 
during compaction such that child nodes compacted later refer to items 
compacted earlier through that cache. Disabling the deduplication caches 
confirms this as the following plot shows. Here all child nodes occupy a rather 
compact and disjunct part of all segments. However the total number of segments 
also increase slightly to about 70. 
!segment-per-path-compacted-nocache.png|width=400!

To asses which of the deduplication caches (node, template, string) is 
contributing most to the above effect I enabled only one of them in turn. Below 
plot shows the result with only the template cache enabled. Locality is much 
better but as the overlap shows there is still deduplication going on. 
!segment-per-path-compacted-nostringcache.png|width=400!

While this analysis is based on unrealistic traffic (random writes by 
{{SegmentCompactionIT}}) it still indicates that we should look into improving 
the string deduplication cache such that it doesn't have such a big impact on 
locality. 

> TarMK: Analyse locality of reference 
> -
>
> Key: OAK-5655
> URL: https://issues.apache.org/jira/browse/OAK-5655
> Project: Jackrabbit Oak
>  Issue Type: Task
>  Components: segment-tar
>Reporter: Michael Dürig
>  Labels: scalability
> Fix For: 1.8
>
> Attachments: segment-per-path-compacted-nocache.png, 
> segment-per-path-compacted-nostringcache.png, segment-per-path-compacted.png, 
> segment-per-path.png
>
>
> We need to better understand the locality aspects of content stored in TarMK: 
> * How is related content spread over segments?
> * What content do we consider related? 
> * How does locality of related content develop over time when changes are 
> applied?
> * What changes do we consider typical?
> * What is the impact of compaction on locality? 
> * What is the impact of the deduplication caches on locality (during normal 
> operation and during compaction)?
> * ...



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Created] (OAK-5656) InitialContent depends on document.bundlor.BundlingConfigInitializer

2017-02-14 Thread angela (JIRA)
angela created OAK-5656:
---

 Summary: InitialContent depends on 
document.bundlor.BundlingConfigInitializer
 Key: OAK-5656
 URL: https://issues.apache.org/jira/browse/OAK-5656
 Project: Jackrabbit Oak
  Issue Type: Bug
  Components: core
Reporter: angela
 Fix For: 1.8


[~chetanm], in the light of OAK-4975 a dependency to the document nodestore 
code got introduced in 
{{org.apache.jackrabbit.oak.plugins.nodetype.write.InitialContent}} by adding 
the following line:
{code}
BundlingConfigInitializer.INSTANCE.initialize(builder);
{code}

the {{BundlingConfigInitializer}} is defined in the 
{{org.apache.jackrabbit.oak.plugins.document.bundlor}}.

To me that looks quite troublesome and I don't think the generic 
JCR-InitialContent should have any dependency on the document nodestore code 
base.

Why not defining a dedicated {{RepositoryInitializer}} for that kind of init an 
making sure it is listed in the (default) setup scenarios (or at least in those 
that actually have a document store and thus require this)?




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5653) RDB*Store: update Derby to release 10.13

2017-02-14 Thread Julian Reschke (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5653?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15865957#comment-15865957
 ] 

Julian Reschke commented on OAK-5653:
-

We will have to defer this until we can require JDK8: see 


> RDB*Store: update Derby to release 10.13
> 
>
> Key: OAK-5653
> URL: https://issues.apache.org/jira/browse/OAK-5653
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>  Components: parent, rdbmk
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_0, candidate_oak_1_2, candidate_oak_1_4, 
> candidate_oak_1_6
> Fix For: 1.8
>
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (OAK-5655) TarMK: Analyse locality of reference

2017-02-14 Thread JIRA

 [ 
https://issues.apache.org/jira/browse/OAK-5655?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Dürig updated OAK-5655:
---
Attachment: segment-per-path.png
segment-per-path-compacted.png
segment-per-path-compacted-nostringcache.png
segment-per-path-compacted-nocache.png

> TarMK: Analyse locality of reference 
> -
>
> Key: OAK-5655
> URL: https://issues.apache.org/jira/browse/OAK-5655
> Project: Jackrabbit Oak
>  Issue Type: Task
>  Components: segment-tar
>Reporter: Michael Dürig
>  Labels: scalability
> Fix For: 1.8
>
> Attachments: segment-per-path-compacted-nocache.png, 
> segment-per-path-compacted-nostringcache.png, segment-per-path-compacted.png, 
> segment-per-path.png
>
>
> We need to better understand the locality aspects of content stored in TarMK: 
> * How is related content spread over segments?
> * What content do we consider related? 
> * How does locality of related content develop over time when changes are 
> applied?
> * What changes do we consider typical?
> * What is the impact of compaction on locality? 
> * What is the impact of the deduplication caches on locality (during normal 
> operation and during compaction)?
> * ...



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5655) TarMK: Analyse locality of reference

2017-02-14 Thread JIRA

[ 
https://issues.apache.org/jira/browse/OAK-5655?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15865947#comment-15865947
 ] 

Michael Dürig commented on OAK-5655:


See [my 
comment|https://issues.apache.org/jira/browse/OAK-5469?focusedCommentId=15860282&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-15860282]
 on OAK-5469 regarding the tooling I'm working on for creating incidence plots 
of a repository.

> TarMK: Analyse locality of reference 
> -
>
> Key: OAK-5655
> URL: https://issues.apache.org/jira/browse/OAK-5655
> Project: Jackrabbit Oak
>  Issue Type: Task
>  Components: segment-tar
>Reporter: Michael Dürig
>  Labels: scalability
> Fix For: 1.8
>
>
> We need to better understand the locality aspects of content stored in TarMK: 
> * How is related content spread over segments?
> * What content do we consider related? 
> * How does locality of related content develop over time when changes are 
> applied?
> * What changes do we consider typical?
> * What is the impact of compaction on locality? 
> * What is the impact of the deduplication caches on locality (during normal 
> operation and during compaction)?
> * ...



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Resolved] (OAK-5654) Improve log output with UserImporter

2017-02-14 Thread angela (JIRA)

 [ 
https://issues.apache.org/jira/browse/OAK-5654?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

angela resolved OAK-5654.
-
Resolution: Fixed

Committed revision 1782973.


> Improve log output with UserImporter
> 
>
> Key: OAK-5654
> URL: https://issues.apache.org/jira/browse/OAK-5654
> Project: Jackrabbit Oak
>  Issue Type: Improvement
>  Components: core
>Reporter: angela
>Assignee: angela
>Priority: Trivial
> Fix For: 1.7.0
>
>
> The {{UserImporter}} logs a misleading warning when unable to handle a 
> property unrelated to user/group import. Since the {{ProtectedItemImporter}} 
> implementation are just asked to handle a given protected item, it's 
> confusing to mark this a WARNing, it should just be for information purpose 
> on DEBUG level.
> While reviewing this I also got the impression that the importer is too 
> verbose wrt besteffort handling of group membership. Would suggest to set 
> this from INFO to DEBUG too.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5229) Using Node.setPrimaryType() should fail if non-matching childnodes

2017-02-14 Thread Alex Parvulescu (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5229?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15865921#comment-15865921
 ] 

Alex Parvulescu commented on OAK-5229:
--

bq. Fail setPrimaryType() with a ConstraintViolationException when there are 
non-protected items that do not have a matching item definition after the 
change of the primary type. With Tobi's example in the description, the 
setPrimaryType() call would fail and it would be the responsibility of the 
application to first remove those items (e.g. unstructured_child).

As it turns out, this item is the one that has a lot of potential for causing 
trouble with the vlt code itself.
I tracked down a failure during testing a new version of the patch to this code 
[0], and  it looks like the importer first does a {{setPrimaryType}} and then 
it deletes the extra properties. this means that the state of the node can be 
illegal as it was not yet cleaned.

[0] 
https://github.com/apache/jackrabbit-filevault/blob/trunk/vault-core/src/main/java/org/apache/jackrabbit/vault/fs/impl/io/DocViewSAXImporter.java#L882

> Using Node.setPrimaryType() should fail if non-matching childnodes
> --
>
> Key: OAK-5229
> URL: https://issues.apache.org/jira/browse/OAK-5229
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: core
>Affects Versions: 1.5.14
>Reporter: Tobias Bocanegra
>Assignee: Alex Parvulescu
>Priority: Critical
> Fix For: 1.8, 1.6.1
>
> Attachments: OAK-5229.patch, OAK-5229-tests.patch, OAK-5229-v2.patch, 
> OAK-5229-v3.patch, OAK-5229-v4.patch
>
>
> 1. Assume the following:
> {noformat}
> /testNode [nt:unstructured]
>   /unstructured_child [nt:unstructured]
> {noformat}
> 2. setting "/testNode".setPrimaryType("nt:folder")
> 3. save the session.
> Altering the primary type works, thus leaving the repository in an 
> inconsistent state.
> Interestingly, subsequent calls to 
> "/testNiode/unstructured_child".setProperty() will fail:
> {noformat}
> javax.jcr.nodetype.ConstraintViolationException: OakConstraint0001: 
> /test_node[[nt:folder]]: No matching definition found for child node 
> unstructured_child with effective type [nt:unstructured]
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Created] (OAK-5655) TarMK: Analyse locality of reference

2017-02-14 Thread JIRA
Michael Dürig created OAK-5655:
--

 Summary: TarMK: Analyse locality of reference 
 Key: OAK-5655
 URL: https://issues.apache.org/jira/browse/OAK-5655
 Project: Jackrabbit Oak
  Issue Type: Task
  Components: segment-tar
Reporter: Michael Dürig
 Fix For: 1.8


We need to better understand the locality aspects of content stored in TarMK: 
* How is related content spread over segments?
* What content do we consider related? 
* How does locality of related content develop over time when changes are 
applied?
* What changes do we consider typical?
* What is the impact of compaction on locality? 
* What is the impact of the deduplication caches on locality (during normal 
operation and during compaction)?
* ...



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (OAK-5600) Test coverage for CheckCommand

2017-02-14 Thread Andrei Dulceanu (JIRA)

 [ 
https://issues.apache.org/jira/browse/OAK-5600?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andrei Dulceanu updated OAK-5600:
-
Description: We should add tests for {{o.a.j.o.r.CheckCommand}} in order to 
validate recent changes introduced by adding/removing options and their 
arguments (see OAK-5275, OAK-5276, OAK-5277, OAK-5595). There is also a new 
feature introduced by OAK-5556 (filter paths) and a refactoring in OAK-5620 
which must be thoroughly tested in order to avoid regressions.  (was: We should 
add tests for {{o.a.j.o.r.CheckCommand}} in order to validate recent changes 
introduced by adding/removing options and their arguments (see OAK-5275, 
OAK-5276, OAK-5277, OAK-5595). There is also a new feature introduced by 
OAK-5556 (filter paths and refactoring proposed) which must be thoroughly 
tested in order to avoid regressions.)

> Test coverage for CheckCommand
> --
>
> Key: OAK-5600
> URL: https://issues.apache.org/jira/browse/OAK-5600
> Project: Jackrabbit Oak
>  Issue Type: Task
>  Components: run, segment-tar
>Reporter: Andrei Dulceanu
>Assignee: Andrei Dulceanu
>Priority: Minor
>  Labels: tooling
> Fix For: 1.7.0, 1.8
>
> Attachments: OAK-5600-02.patch, OAK-5600.patch
>
>
> We should add tests for {{o.a.j.o.r.CheckCommand}} in order to validate 
> recent changes introduced by adding/removing options and their arguments (see 
> OAK-5275, OAK-5276, OAK-5277, OAK-5595). There is also a new feature 
> introduced by OAK-5556 (filter paths) and a refactoring in OAK-5620 which 
> must be thoroughly tested in order to avoid regressions.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (OAK-5654) Improve log output with UserImporter

2017-02-14 Thread angela (JIRA)

 [ 
https://issues.apache.org/jira/browse/OAK-5654?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

angela updated OAK-5654:

Priority: Trivial  (was: Major)

> Improve log output with UserImporter
> 
>
> Key: OAK-5654
> URL: https://issues.apache.org/jira/browse/OAK-5654
> Project: Jackrabbit Oak
>  Issue Type: Improvement
>  Components: core
>Reporter: angela
>Assignee: angela
>Priority: Trivial
> Fix For: 1.7.0
>
>
> The {{UserImporter}} logs a misleading warning when unable to handle a 
> property unrelated to user/group import. Since the {{ProtectedItemImporter}} 
> implementation are just asked to handle a given protected item, it's 
> confusing to mark this a WARNing, it should just be for information purpose 
> on DEBUG level.
> While reviewing this I also got the impression that the importer is too 
> verbose wrt besteffort handling of group membership. Would suggest to set 
> this from INFO to DEBUG too.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Created] (OAK-5654) Improve log output with UserImporter

2017-02-14 Thread angela (JIRA)
angela created OAK-5654:
---

 Summary: Improve log output with UserImporter
 Key: OAK-5654
 URL: https://issues.apache.org/jira/browse/OAK-5654
 Project: Jackrabbit Oak
  Issue Type: Improvement
  Components: core
Reporter: angela
Assignee: angela
 Fix For: 1.7.0


The {{UserImporter}} logs a misleading warning when unable to handle a property 
unrelated to user/group import. Since the {{ProtectedItemImporter}} 
implementation are just asked to handle a given protected item, it's confusing 
to mark this a WARNing, it should just be for information purpose on DEBUG 
level.

While reviewing this I also got the impression that the importer is too verbose 
wrt besteffort handling of group membership. Would suggest to set this from 
INFO to DEBUG too.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Resolved] (OAK-5556) Allow filter paths for Check command

2017-02-14 Thread Andrei Dulceanu (JIRA)

 [ 
https://issues.apache.org/jira/browse/OAK-5556?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andrei Dulceanu resolved OAK-5556.
--
Resolution: Fixed

Fixed at r1782970.

> Allow filter paths for Check command
> 
>
> Key: OAK-5556
> URL: https://issues.apache.org/jira/browse/OAK-5556
> Project: Jackrabbit Oak
>  Issue Type: New Feature
>  Components: segment-tar, segmentmk
>Reporter: Alex Parvulescu
>Assignee: Andrei Dulceanu
>  Labels: tooling
> Fix For: 1.8
>
> Attachments: OAK-5556.patch
>
>
> It would be good if the {{check}} command would allow for filtering on 
> content path. This would help in quickly identifying what is the good 
> revision of a specific broken node in cases of very large repos.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Resolved] (OAK-5623) Enforce minimum line coverage for security related modules

2017-02-14 Thread angela (JIRA)

 [ 
https://issues.apache.org/jira/browse/OAK-5623?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

angela resolved OAK-5623.
-
Resolution: Fixed

> Enforce minimum line coverage for security related modules
> --
>
> Key: OAK-5623
> URL: https://issues.apache.org/jira/browse/OAK-5623
> Project: Jackrabbit Oak
>  Issue Type: Task
>  Components: auth-external, auth-ldap, authorization-cug, parent
>Reporter: angela
>Assignee: angela
> Fix For: 1.7.0
>
> Attachments: OAK-5623.patch
>
>
> I would like to use jacoco-maven-plugin to run an additional verification 
> upon module build to make sure the line coverage with test cases is 
> maintained while evolving the source.
> The attached patch extends the existing plugin definition for 
> jacoco-maven-plugin in the parent pom.xml and enables the verification with 
> the following modules:
> - auth-external
> - auth-ldap
> - authorization-cug
> Since the patch modifies the parent pom.xml I would like others to review 
> this as well. Will send out notification to the list.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5605) Speed up time to cancel revision GC

2017-02-14 Thread Marcel Reutegger (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5605?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15865826#comment-15865826
 ] 

Marcel Reutegger commented on OAK-5605:
---

Added ignored tests: http://svn.apache.org/r1782967

> Speed up time to cancel revision GC
> ---
>
> Key: OAK-5605
> URL: https://issues.apache.org/jira/browse/OAK-5605
> Project: Jackrabbit Oak
>  Issue Type: Improvement
>  Components: core, documentmk
>Reporter: Marcel Reutegger
>Assignee: Marcel Reutegger
>Priority: Minor
> Fix For: 1.8
>
>
> OAK-4915 introduced a method to cancel the Revision GC on a 
> DocumentNodeStore. The implementation does not wait for the Revision GC to 
> stop, but simply sets a flag. In some cases the Revision GC still runs for 
> some time even when canceled. This issue is about reducing the time it takes 
> to actually cancel the Revision GC.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Resolved] (OAK-5605) Speed up time to cancel revision GC

2017-02-14 Thread Marcel Reutegger (JIRA)

 [ 
https://issues.apache.org/jira/browse/OAK-5605?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Reutegger resolved OAK-5605.
---
   Resolution: Fixed
Fix Version/s: 1.7.0

Each phase now checks whether it should cancel and tests are enabled: 
http://svn.apache.org/r1782968

> Speed up time to cancel revision GC
> ---
>
> Key: OAK-5605
> URL: https://issues.apache.org/jira/browse/OAK-5605
> Project: Jackrabbit Oak
>  Issue Type: Improvement
>  Components: core, documentmk
>Reporter: Marcel Reutegger
>Assignee: Marcel Reutegger
>Priority: Minor
> Fix For: 1.7.0, 1.8
>
>
> OAK-4915 introduced a method to cancel the Revision GC on a 
> DocumentNodeStore. The implementation does not wait for the Revision GC to 
> stop, but simply sets a flag. In some cases the Revision GC still runs for 
> some time even when canceled. This issue is about reducing the time it takes 
> to actually cancel the Revision GC.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5652) RDB*Store: update Oracle JDBC driver reference to 12.1.0.2.0

2017-02-14 Thread Julian Reschke (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5652?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15865818#comment-15865818
 ] 

Julian Reschke commented on OAK-5652:
-

trunk: [r1782966|http://svn.apache.org/r1782966]


> RDB*Store: update Oracle JDBC driver reference to 12.1.0.2.0
> 
>
> Key: OAK-5652
> URL: https://issues.apache.org/jira/browse/OAK-5652
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>  Components: parent, rdbmk
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>  Labels: candidate_oak_1_0, candidate_oak_1_2, candidate_oak_1_4, 
> candidate_oak_1_6
> Fix For: 1.7.0, 1.8
>
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Resolved] (OAK-5652) RDB*Store: update Oracle JDBC driver reference to 12.1.0.2.0

2017-02-14 Thread Julian Reschke (JIRA)

 [ 
https://issues.apache.org/jira/browse/OAK-5652?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julian Reschke resolved OAK-5652.
-
   Resolution: Fixed
Fix Version/s: 1.7.0

> RDB*Store: update Oracle JDBC driver reference to 12.1.0.2.0
> 
>
> Key: OAK-5652
> URL: https://issues.apache.org/jira/browse/OAK-5652
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>  Components: parent, rdbmk
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>  Labels: candidate_oak_1_0, candidate_oak_1_2, candidate_oak_1_4, 
> candidate_oak_1_6
> Fix For: 1.7.0, 1.8
>
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5556) Allow filter paths for Check command

2017-02-14 Thread Francesco Mari (JIRA)

[ 
https://issues.apache.org/jira/browse/OAK-5556?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15865796#comment-15865796
 ] 

Francesco Mari commented on OAK-5556:
-

[~dulceanu] LGTM

> Allow filter paths for Check command
> 
>
> Key: OAK-5556
> URL: https://issues.apache.org/jira/browse/OAK-5556
> Project: Jackrabbit Oak
>  Issue Type: New Feature
>  Components: segment-tar, segmentmk
>Reporter: Alex Parvulescu
>Assignee: Andrei Dulceanu
>  Labels: tooling
> Fix For: 1.8
>
> Attachments: OAK-5556.patch
>
>
> It would be good if the {{check}} command would allow for filtering on 
> content path. This would help in quickly identifying what is the good 
> revision of a specific broken node in cases of very large repos.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (OAK-5556) Allow filter paths for Check command

2017-02-14 Thread Andrei Dulceanu (JIRA)

 [ 
https://issues.apache.org/jira/browse/OAK-5556?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andrei Dulceanu updated OAK-5556:
-
Attachment: OAK-5556.patch

Attaching a patch with the implementation and a few test cases to validate it 
in {{CheckValidRepositoryTest}}. There's a change in {{ConsistencyChecker}} 
regarding the place where the number of nodes and properties checked is 
printed. I made it in order to print those numbers before an invalid path was 
met (more informative and user-friendly I guess).

[~frm], could you take a look at it?

/cc [~mduerig]

> Allow filter paths for Check command
> 
>
> Key: OAK-5556
> URL: https://issues.apache.org/jira/browse/OAK-5556
> Project: Jackrabbit Oak
>  Issue Type: New Feature
>  Components: segment-tar, segmentmk
>Reporter: Alex Parvulescu
>Assignee: Andrei Dulceanu
>  Labels: tooling
> Fix For: 1.8
>
> Attachments: OAK-5556.patch
>
>
> It would be good if the {{check}} command would allow for filtering on 
> content path. This would help in quickly identifying what is the good 
> revision of a specific broken node in cases of very large repos.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Resolved] (OAK-5636) potential NPE in ReplicaSetInfo

2017-02-14 Thread JIRA

 [ 
https://issues.apache.org/jira/browse/OAK-5636?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Tomek Rękawek resolved OAK-5636.

Resolution: Fixed

> potential NPE in ReplicaSetInfo
> ---
>
> Key: OAK-5636
> URL: https://issues.apache.org/jira/browse/OAK-5636
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: core, mongomk
>Affects Versions: 1.6.0
>Reporter: Julian Reschke
>Assignee: Tomek Rękawek
>Priority: Critical
> Fix For: 1.7.0, 1.8, 1.6.1
>
> Attachments: OAK-5636.patch
>
>
> seen in log:
> {noformat}
> java.lang.NullPointerException: null
> at 
> com.google.common.base.Preconditions.checkNotNull(Preconditions.java:192) 
> ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> com.google.common.collect.SingletonImmutableSet.(SingletonImmutableSet.java:47)
>  ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at com.google.common.collect.ImmutableSet.of(ImmutableSet.java:94) 
> ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.mongo.replica.ReplicaSetInfo.updateRevisions(ReplicaSetInfo.java:264)
>  ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.mongo.replica.ReplicaSetInfo.updateReplicaStatus(ReplicaSetInfo.java:182)
>  ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.mongo.replica.ReplicaSetInfo.updateLoop(ReplicaSetInfo.java:145)
>  ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.mongo.replica.ReplicaSetInfo.run(ReplicaSetInfo.java:134)
>  ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at java.lang.Thread.run(Unknown Source) [na:1.8.0_121]
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (OAK-5636) potential NPE in ReplicaSetInfo

2017-02-14 Thread JIRA

 [ 
https://issues.apache.org/jira/browse/OAK-5636?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Tomek Rękawek updated OAK-5636:
---
Fix Version/s: 1.7.0

> potential NPE in ReplicaSetInfo
> ---
>
> Key: OAK-5636
> URL: https://issues.apache.org/jira/browse/OAK-5636
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: core, mongomk
>Affects Versions: 1.6.0
>Reporter: Julian Reschke
>Assignee: Tomek Rękawek
>Priority: Critical
> Fix For: 1.7.0, 1.8, 1.6.1
>
> Attachments: OAK-5636.patch
>
>
> seen in log:
> {noformat}
> java.lang.NullPointerException: null
> at 
> com.google.common.base.Preconditions.checkNotNull(Preconditions.java:192) 
> ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> com.google.common.collect.SingletonImmutableSet.(SingletonImmutableSet.java:47)
>  ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at com.google.common.collect.ImmutableSet.of(ImmutableSet.java:94) 
> ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.mongo.replica.ReplicaSetInfo.updateRevisions(ReplicaSetInfo.java:264)
>  ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.mongo.replica.ReplicaSetInfo.updateReplicaStatus(ReplicaSetInfo.java:182)
>  ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.mongo.replica.ReplicaSetInfo.updateLoop(ReplicaSetInfo.java:145)
>  ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.mongo.replica.ReplicaSetInfo.run(ReplicaSetInfo.java:134)
>  ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at java.lang.Thread.run(Unknown Source) [na:1.8.0_121]
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Comment Edited] (OAK-5636) potential NPE in ReplicaSetInfo

2017-02-14 Thread JIRA

[ 
https://issues.apache.org/jira/browse/OAK-5636?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15865771#comment-15865771
 ] 

Tomek Rękawek edited comment on OAK-5636 at 2/14/17 1:34 PM:
-

Fixed for trunk in [r1782962|https://svn.apache.org/r1782962]. Backported to 
1.6 in [r1782963|https://svn.apache.org/r1782963].


was (Author: tomek.rekawek):
Fixed for trunk in [r1782962|https://svn.apache.org/r1782962].

> potential NPE in ReplicaSetInfo
> ---
>
> Key: OAK-5636
> URL: https://issues.apache.org/jira/browse/OAK-5636
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: core, mongomk
>Affects Versions: 1.6.0
>Reporter: Julian Reschke
>Assignee: Tomek Rękawek
>Priority: Critical
> Fix For: 1.7.0, 1.8, 1.6.1
>
> Attachments: OAK-5636.patch
>
>
> seen in log:
> {noformat}
> java.lang.NullPointerException: null
> at 
> com.google.common.base.Preconditions.checkNotNull(Preconditions.java:192) 
> ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> com.google.common.collect.SingletonImmutableSet.(SingletonImmutableSet.java:47)
>  ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at com.google.common.collect.ImmutableSet.of(ImmutableSet.java:94) 
> ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.mongo.replica.ReplicaSetInfo.updateRevisions(ReplicaSetInfo.java:264)
>  ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.mongo.replica.ReplicaSetInfo.updateReplicaStatus(ReplicaSetInfo.java:182)
>  ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.mongo.replica.ReplicaSetInfo.updateLoop(ReplicaSetInfo.java:145)
>  ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.mongo.replica.ReplicaSetInfo.run(ReplicaSetInfo.java:134)
>  ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at java.lang.Thread.run(Unknown Source) [na:1.8.0_121]
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (OAK-5636) potential NPE in ReplicaSetInfo

2017-02-14 Thread JIRA

[ 
https://issues.apache.org/jira/browse/OAK-5636?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15865771#comment-15865771
 ] 

Tomek Rękawek commented on OAK-5636:


Fixed for trunk in [r1782962|https://svn.apache.org/r1782962].

> potential NPE in ReplicaSetInfo
> ---
>
> Key: OAK-5636
> URL: https://issues.apache.org/jira/browse/OAK-5636
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: core, mongomk
>Affects Versions: 1.6.0
>Reporter: Julian Reschke
>Assignee: Tomek Rękawek
>Priority: Critical
> Fix For: 1.8, 1.6.1
>
> Attachments: OAK-5636.patch
>
>
> seen in log:
> {noformat}
> java.lang.NullPointerException: null
> at 
> com.google.common.base.Preconditions.checkNotNull(Preconditions.java:192) 
> ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> com.google.common.collect.SingletonImmutableSet.(SingletonImmutableSet.java:47)
>  ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at com.google.common.collect.ImmutableSet.of(ImmutableSet.java:94) 
> ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.mongo.replica.ReplicaSetInfo.updateRevisions(ReplicaSetInfo.java:264)
>  ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.mongo.replica.ReplicaSetInfo.updateReplicaStatus(ReplicaSetInfo.java:182)
>  ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.mongo.replica.ReplicaSetInfo.updateLoop(ReplicaSetInfo.java:145)
>  ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at 
> org.apache.jackrabbit.oak.plugins.document.mongo.replica.ReplicaSetInfo.run(ReplicaSetInfo.java:134)
>  ~[oak-run-1.8-SNAPSHOT.jar:1.8-SNAPSHOT]
> at java.lang.Thread.run(Unknown Source) [na:1.8.0_121]
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


  1   2   >