[jira] [Created] (OAK-5590) The check command doesn't do any check when "deep" option is not provided

2017-02-06 Thread Andrei Dulceanu (JIRA)
Andrei Dulceanu created OAK-5590:


 Summary: The check command doesn't do any check when "deep" option 
is not provided
 Key: OAK-5590
 URL: https://issues.apache.org/jira/browse/OAK-5590
 Project: Jackrabbit Oak
  Issue Type: Bug
  Components: run, segment-tar
Reporter: Andrei Dulceanu
Assignee: Andrei Dulceanu
 Fix For: 1.8, 1.6.1


When the {{check}} command is used without {{--deep}} option, there is no 
check/traversal being done against the repository.

First relevant line in code is [1], where a check is supposed to happen, but 
due to a mismatch between argument expected/argument provided, {{null}} is 
always returned without checking anything. The method which should do the 
actual check [2] expects a set of paths to be traversed, but this set is always 
empty. Therefore, relevant code for running the check is never executed [3].

[1] 
https://github.com/apache/jackrabbit-oak/blob/trunk/oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/file/tooling/ConsistencyChecker.java#L120
[2] 
https://github.com/apache/jackrabbit-oak/blob/trunk/oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/file/tooling/ConsistencyChecker.java#L183
[3] 
https://github.com/apache/jackrabbit-oak/blob/trunk/oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/file/tooling/ConsistencyChecker.java#L194



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


[jira] [Updated] (OAK-5589) GlobbingPathFilter constructor is expensive

2017-02-06 Thread Stefan Egli (JIRA)

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

Stefan Egli updated OAK-5589:
-
Fix Version/s: 1.8
   1.7.0

> GlobbingPathFilter constructor is expensive
> ---
>
> Key: OAK-5589
> URL: https://issues.apache.org/jira/browse/OAK-5589
> Project: Jackrabbit Oak
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.6.0
>Reporter: Stefan Egli
>Assignee: Stefan Egli
> Fix For: 1.7.0, 1.8
>
>
> The [GlobbingPathFilter 
> constructor|https://github.com/apache/jackrabbit-oak/blob/jackrabbit-oak-1.6.0/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/observation/filter/GlobbingPathFilter.java#L75]
>  is doing an expensive {{ImmutableList.copyOf}} while traversing down a path 
> as part of filtering. ImmutableList internally first creates a Builder with 
> capacity 4 - thus frequently has to do an {{ObjectArrays.arraysCopyOf}}.
> Two things that can be improved here:
> * as suggested by [~mduerig] that [private 
> constructor|https://github.com/apache/jackrabbit-oak/blob/jackrabbit-oak-1.6.0/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/observation/filter/GlobbingPathFilter.java#L74]
>  - should not copy at all. Only the public constructors should. So the public 
> constructors should be rewritten to reflect this.
> * {{ImmutableList.copyOf}} cannot be passed an initial capacity 
> unfortunately. Perhaps there's an alternative for this though.



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


[jira] [Created] (OAK-5589) GlobbingPathFilter constructor is expensive

2017-02-06 Thread Stefan Egli (JIRA)
Stefan Egli created OAK-5589:


 Summary: GlobbingPathFilter constructor is expensive
 Key: OAK-5589
 URL: https://issues.apache.org/jira/browse/OAK-5589
 Project: Jackrabbit Oak
  Issue Type: Improvement
  Components: core
Affects Versions: 1.6.0
Reporter: Stefan Egli
Assignee: Stefan Egli


The [GlobbingPathFilter 
constructor|https://github.com/apache/jackrabbit-oak/blob/jackrabbit-oak-1.6.0/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/observation/filter/GlobbingPathFilter.java#L75]
 is doing an expensive {{ImmutableList.copyOf}} while traversing down a path as 
part of filtering. ImmutableList internally first creates a Builder with 
capacity 4 - thus frequently has to do an {{ObjectArrays.arraysCopyOf}}.

Two things that can be improved here:
* as suggested by [~mduerig] that [private 
constructor|https://github.com/apache/jackrabbit-oak/blob/jackrabbit-oak-1.6.0/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/observation/filter/GlobbingPathFilter.java#L74]
 - should not copy at all. Only the public constructors should. So the public 
constructors should be rewritten to reflect this.
* {{ImmutableList.copyOf}} cannot be passed an initial capacity unfortunately. 
Perhaps there's an alternative for this though.



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


[jira] [Updated] (OAK-5588) Improve Session stats.

2017-02-06 Thread JIRA

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

Michael Dürig updated OAK-5588:
---
Issue Type: Improvement  (was: Wish)

> Improve Session stats.
> --
>
> Key: OAK-5588
> URL: https://issues.apache.org/jira/browse/OAK-5588
> Project: Jackrabbit Oak
>  Issue Type: Improvement
>  Components: core
>Reporter: Ian Boston
>  Labels: monitoring, production
> Fix For: 1.8
>
>
> Currently each session has a SessionsStats MBean. Omongst other things it 
> records the total number or refresh operations. It also records the rate of 
> refresh operations, although this number in its current form is not usefull 
> as the rate is the number of refresh operations/session lifetime.  It would 
> be much better to have a set of stats related to classes of users that 
> recorded proper metrics in a consistent way.   eg 1 metric set per 
> service-user, 1 for the admin user and perhaps 1 for all normal users. Each 
> would record m1,m5,m15 rates, total count, p50,p75,p95,p99,p999 durations 
> with mean and stdev then 2 sets of metrics could be compared and monitored 
> without having to look at the code to work out how the metric was calculated. 
> Oak has metrics support to do this, minimal code would be required.
> I dont think it would be viable to have 1 metric per unique session (too much 
> overhead, too much data, good for devs but bad for production), and in fact 
> having 1 JMX MBean per unique session is likely to cause problems with 
> everything connected to JMX even the ManagementServer can cope. Same goes for 
> the other proliferation of MBeans in the Oak 1.6. Perhaps a review of JMX in 
> Oak is due.



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


[jira] [Updated] (OAK-5588) Improve Session stats.

2017-02-06 Thread JIRA

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

Michael Dürig updated OAK-5588:
---
Labels: monitoring production  (was: )

> Improve Session stats.
> --
>
> Key: OAK-5588
> URL: https://issues.apache.org/jira/browse/OAK-5588
> Project: Jackrabbit Oak
>  Issue Type: Wish
>  Components: core
>Reporter: Ian Boston
>  Labels: monitoring, production
> Fix For: 1.8
>
>
> Currently each session has a SessionsStats MBean. Omongst other things it 
> records the total number or refresh operations. It also records the rate of 
> refresh operations, although this number in its current form is not usefull 
> as the rate is the number of refresh operations/session lifetime.  It would 
> be much better to have a set of stats related to classes of users that 
> recorded proper metrics in a consistent way.   eg 1 metric set per 
> service-user, 1 for the admin user and perhaps 1 for all normal users. Each 
> would record m1,m5,m15 rates, total count, p50,p75,p95,p99,p999 durations 
> with mean and stdev then 2 sets of metrics could be compared and monitored 
> without having to look at the code to work out how the metric was calculated. 
> Oak has metrics support to do this, minimal code would be required.
> I dont think it would be viable to have 1 metric per unique session (too much 
> overhead, too much data, good for devs but bad for production), and in fact 
> having 1 JMX MBean per unique session is likely to cause problems with 
> everything connected to JMX even the ManagementServer can cope. Same goes for 
> the other proliferation of MBeans in the Oak 1.6. Perhaps a review of JMX in 
> Oak is due.



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


[jira] [Updated] (OAK-5588) Improve Session stats.

2017-02-06 Thread JIRA

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

Michael Dürig updated OAK-5588:
---
Component/s: core

> Improve Session stats.
> --
>
> Key: OAK-5588
> URL: https://issues.apache.org/jira/browse/OAK-5588
> Project: Jackrabbit Oak
>  Issue Type: Wish
>  Components: core
>Reporter: Ian Boston
>  Labels: monitoring, production
> Fix For: 1.8
>
>
> Currently each session has a SessionsStats MBean. Omongst other things it 
> records the total number or refresh operations. It also records the rate of 
> refresh operations, although this number in its current form is not usefull 
> as the rate is the number of refresh operations/session lifetime.  It would 
> be much better to have a set of stats related to classes of users that 
> recorded proper metrics in a consistent way.   eg 1 metric set per 
> service-user, 1 for the admin user and perhaps 1 for all normal users. Each 
> would record m1,m5,m15 rates, total count, p50,p75,p95,p99,p999 durations 
> with mean and stdev then 2 sets of metrics could be compared and monitored 
> without having to look at the code to work out how the metric was calculated. 
> Oak has metrics support to do this, minimal code would be required.
> I dont think it would be viable to have 1 metric per unique session (too much 
> overhead, too much data, good for devs but bad for production), and in fact 
> having 1 JMX MBean per unique session is likely to cause problems with 
> everything connected to JMX even the ManagementServer can cope. Same goes for 
> the other proliferation of MBeans in the Oak 1.6. Perhaps a review of JMX in 
> Oak is due.



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


[jira] [Updated] (OAK-5588) Improve Session stats.

2017-02-06 Thread JIRA

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

Michael Dürig updated OAK-5588:
---
Fix Version/s: 1.8

> Improve Session stats.
> --
>
> Key: OAK-5588
> URL: https://issues.apache.org/jira/browse/OAK-5588
> Project: Jackrabbit Oak
>  Issue Type: Wish
>Reporter: Ian Boston
> Fix For: 1.8
>
>
> Currently each session has a SessionsStats MBean. Omongst other things it 
> records the total number or refresh operations. It also records the rate of 
> refresh operations, although this number in its current form is not usefull 
> as the rate is the number of refresh operations/session lifetime.  It would 
> be much better to have a set of stats related to classes of users that 
> recorded proper metrics in a consistent way.   eg 1 metric set per 
> service-user, 1 for the admin user and perhaps 1 for all normal users. Each 
> would record m1,m5,m15 rates, total count, p50,p75,p95,p99,p999 durations 
> with mean and stdev then 2 sets of metrics could be compared and monitored 
> without having to look at the code to work out how the metric was calculated. 
> Oak has metrics support to do this, minimal code would be required.
> I dont think it would be viable to have 1 metric per unique session (too much 
> overhead, too much data, good for devs but bad for production), and in fact 
> having 1 JMX MBean per unique session is likely to cause problems with 
> everything connected to JMX even the ManagementServer can cope. Same goes for 
> the other proliferation of MBeans in the Oak 1.6. Perhaps a review of JMX in 
> Oak is due.



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


[jira] [Created] (OAK-5588) Improve Session stats.

2017-02-06 Thread Ian Boston (JIRA)
Ian Boston created OAK-5588:
---

 Summary: Improve Session stats.
 Key: OAK-5588
 URL: https://issues.apache.org/jira/browse/OAK-5588
 Project: Jackrabbit Oak
  Issue Type: Wish
Reporter: Ian Boston


Currently each session has a SessionsStats MBean. Omongst other things it 
records the total number or refresh operations. It also records the rate of 
refresh operations, although this number in its current form is not usefull as 
the rate is the number of refresh operations/session lifetime.  It would be 
much better to have a set of stats related to classes of users that recorded 
proper metrics in a consistent way.   eg 1 metric set per service-user, 1 for 
the admin user and perhaps 1 for all normal users. Each would record m1,m5,m15 
rates, total count, p50,p75,p95,p99,p999 durations with mean and stdev then 2 
sets of metrics could be compared and monitored without having to look at the 
code to work out how the metric was calculated. Oak has metrics support to do 
this, minimal code would be required.

I dont think it would be viable to have 1 metric per unique session (too much 
overhead, too much data, good for devs but bad for production), and in fact 
having 1 JMX MBean per unique session is likely to cause problems with 
everything connected to JMX even the ManagementServer can cope. Same goes for 
the other proliferation of MBeans in the Oak 1.6. Perhaps a review of JMX in 
Oak is due.



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


[jira] [Updated] (OAK-5557) incomplete diffManyChildren during commitHook evaluation in a persisted branch

2017-02-06 Thread Marcel Reutegger (JIRA)

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

Marcel Reutegger updated OAK-5557:
--
Affects Version/s: (was: 1.7.0)

> incomplete diffManyChildren during commitHook evaluation in a persisted branch
> --
>
> Key: OAK-5557
> URL: https://issues.apache.org/jira/browse/OAK-5557
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: core, documentmk
>Affects Versions: 1.2.23, 1.4.12, 1.6.0
> Environment: 'easily' reproducible on 1.2.14
> 'takes longer to' reproduce on 1.2.23
>Reporter: Stefan Egli
>Assignee: Marcel Reutegger
>  Labels: candidate_oak_1_2, candidate_oak_1_4, candidate_oak_1_6
> Fix For: 1.7.0, 1.8
>
> Attachments: DocumentNodeStoreBranchesTest.java, 
> DocumentNodeStoreBranchesTest.java, OAK-5557-1.2.patch, OAK-5557.patch
>
>
> In oak 1.2 when doing a diffManyChildren as part of running the CommitHooks 
> as part of a branch commit, not all child paths are taken into account in 
> some cases.
> The problem seems to be related to the [{{_modified}} 
> calculation|https://github.com/apache/jackrabbit-oak/blob/jackrabbit-oak-1.2.14/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/document/DocumentNodeStore.java#L2242]
>  when doing the query for affected child paths. It seems [that 
> {{minValue}}|https://github.com/apache/jackrabbit-oak/blob/jackrabbit-oak-1.2.14/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/document/DocumentNodeStore.java#L2242]
>  is not correctly calculated when doing {{compareAgainstBaseState}} as part 
> of a persisted branch.
> Note that the problem can be reproduced very good on 1.2.14, less good but 
> still on the latest 1.2 and not in trunk (ie almost 1.6.0).
> Attaching a test case to reproduce



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


[jira] [Updated] (OAK-5557) incomplete diffManyChildren during commitHook evaluation in a persisted branch

2017-02-06 Thread Marcel Reutegger (JIRA)

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

Marcel Reutegger updated OAK-5557:
--
Labels: candidate_oak_1_2 candidate_oak_1_4 candidate_oak_1_6  (was: )

> incomplete diffManyChildren during commitHook evaluation in a persisted branch
> --
>
> Key: OAK-5557
> URL: https://issues.apache.org/jira/browse/OAK-5557
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: core, documentmk
>Affects Versions: 1.2.23, 1.4.12, 1.6.0
> Environment: 'easily' reproducible on 1.2.14
> 'takes longer to' reproduce on 1.2.23
>Reporter: Stefan Egli
>Assignee: Marcel Reutegger
>  Labels: candidate_oak_1_2, candidate_oak_1_4, candidate_oak_1_6
> Fix For: 1.7.0, 1.8
>
> Attachments: DocumentNodeStoreBranchesTest.java, 
> DocumentNodeStoreBranchesTest.java, OAK-5557-1.2.patch, OAK-5557.patch
>
>
> In oak 1.2 when doing a diffManyChildren as part of running the CommitHooks 
> as part of a branch commit, not all child paths are taken into account in 
> some cases.
> The problem seems to be related to the [{{_modified}} 
> calculation|https://github.com/apache/jackrabbit-oak/blob/jackrabbit-oak-1.2.14/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/document/DocumentNodeStore.java#L2242]
>  when doing the query for affected child paths. It seems [that 
> {{minValue}}|https://github.com/apache/jackrabbit-oak/blob/jackrabbit-oak-1.2.14/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/document/DocumentNodeStore.java#L2242]
>  is not correctly calculated when doing {{compareAgainstBaseState}} as part 
> of a persisted branch.
> Note that the problem can be reproduced very good on 1.2.14, less good but 
> still on the latest 1.2 and not in trunk (ie almost 1.6.0).
> Attaching a test case to reproduce



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


[jira] [Updated] (OAK-5557) incomplete diffManyChildren during commitHook evaluation in a persisted branch

2017-02-06 Thread Marcel Reutegger (JIRA)

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

Marcel Reutegger updated OAK-5557:
--
Component/s: documentmk
 core

> incomplete diffManyChildren during commitHook evaluation in a persisted branch
> --
>
> Key: OAK-5557
> URL: https://issues.apache.org/jira/browse/OAK-5557
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: core, documentmk
>Affects Versions: 1.2.23, 1.4.12, 1.6.0
> Environment: 'easily' reproducible on 1.2.14
> 'takes longer to' reproduce on 1.2.23
>Reporter: Stefan Egli
>Assignee: Marcel Reutegger
>  Labels: candidate_oak_1_2, candidate_oak_1_4, candidate_oak_1_6
> Fix For: 1.7.0, 1.8
>
> Attachments: DocumentNodeStoreBranchesTest.java, 
> DocumentNodeStoreBranchesTest.java, OAK-5557-1.2.patch, OAK-5557.patch
>
>
> In oak 1.2 when doing a diffManyChildren as part of running the CommitHooks 
> as part of a branch commit, not all child paths are taken into account in 
> some cases.
> The problem seems to be related to the [{{_modified}} 
> calculation|https://github.com/apache/jackrabbit-oak/blob/jackrabbit-oak-1.2.14/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/document/DocumentNodeStore.java#L2242]
>  when doing the query for affected child paths. It seems [that 
> {{minValue}}|https://github.com/apache/jackrabbit-oak/blob/jackrabbit-oak-1.2.14/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/document/DocumentNodeStore.java#L2242]
>  is not correctly calculated when doing {{compareAgainstBaseState}} as part 
> of a persisted branch.
> Note that the problem can be reproduced very good on 1.2.14, less good but 
> still on the latest 1.2 and not in trunk (ie almost 1.6.0).
> Attaching a test case to reproduce



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


[jira] [Assigned] (OAK-5557) incomplete diffManyChildren during commitHook evaluation in a persisted branch

2017-02-06 Thread Marcel Reutegger (JIRA)

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

Marcel Reutegger reassigned OAK-5557:
-

Assignee: Marcel Reutegger  (was: Stefan Egli)

> incomplete diffManyChildren during commitHook evaluation in a persisted branch
> --
>
> Key: OAK-5557
> URL: https://issues.apache.org/jira/browse/OAK-5557
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: core, documentmk
>Affects Versions: 1.2.23, 1.4.12, 1.6.0
> Environment: 'easily' reproducible on 1.2.14
> 'takes longer to' reproduce on 1.2.23
>Reporter: Stefan Egli
>Assignee: Marcel Reutegger
>  Labels: candidate_oak_1_2, candidate_oak_1_4, candidate_oak_1_6
> Fix For: 1.7.0, 1.8
>
> Attachments: DocumentNodeStoreBranchesTest.java, 
> DocumentNodeStoreBranchesTest.java, OAK-5557-1.2.patch, OAK-5557.patch
>
>
> In oak 1.2 when doing a diffManyChildren as part of running the CommitHooks 
> as part of a branch commit, not all child paths are taken into account in 
> some cases.
> The problem seems to be related to the [{{_modified}} 
> calculation|https://github.com/apache/jackrabbit-oak/blob/jackrabbit-oak-1.2.14/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/document/DocumentNodeStore.java#L2242]
>  when doing the query for affected child paths. It seems [that 
> {{minValue}}|https://github.com/apache/jackrabbit-oak/blob/jackrabbit-oak-1.2.14/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/document/DocumentNodeStore.java#L2242]
>  is not correctly calculated when doing {{compareAgainstBaseState}} as part 
> of a persisted branch.
> Note that the problem can be reproduced very good on 1.2.14, less good but 
> still on the latest 1.2 and not in trunk (ie almost 1.6.0).
> Attaching a test case to reproduce



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


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

2017-02-06 Thread Hudson (JIRA)

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

Hudson commented on OAK-5576:
-

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 
#1404|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting/1404/]
 [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/1404/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=SEGMENT_MK,profile=integrationTesting #1401 failed
> --
>
> Key: OAK-5576
> URL: https://issues.apache.org/jira/browse/OAK-5576
> 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 #1401 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.7 (latest),nsfixtures=SEGMENT_MK,profile=integrationTesting 
> #1401|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting/1401/]
>  [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/1401/console]



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


[jira] [Created] (OAK-5587) Node counter index estimates must not be used before first async index cycle

2017-02-06 Thread Thomas Mueller (JIRA)
Thomas Mueller created OAK-5587:
---

 Summary: Node counter index estimates must not be used before 
first async index cycle
 Key: OAK-5587
 URL: https://issues.apache.org/jira/browse/OAK-5587
 Project: Jackrabbit Oak
  Issue Type: Bug
Reporter: Thomas Mueller
Assignee: Thomas Mueller
 Fix For: 1.6.1


Oak traversing index returns a very low estimate when first async index cycle 
hasn't completed yet, so that the wrong index can be used on first startup.

NodeCounter#getCombinedCost() should treat non-existing 
/oak:index/counter/:index same as /oak:index/counter not existing.



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


[jira] [Resolved] (OAK-5557) incomplete diffManyChildren during commitHook evaluation in a persisted branch

2017-02-06 Thread Marcel Reutegger (JIRA)

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

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

Applied patch to trunk: http://svn.apache.org/r1781846

> incomplete diffManyChildren during commitHook evaluation in a persisted branch
> --
>
> Key: OAK-5557
> URL: https://issues.apache.org/jira/browse/OAK-5557
> Project: Jackrabbit Oak
>  Issue Type: Bug
>Affects Versions: 1.2.23, 1.4.12, 1.6.0, 1.7.0
> Environment: 'easily' reproducible on 1.2.14
> 'takes longer to' reproduce on 1.2.23
>Reporter: Stefan Egli
>Assignee: Stefan Egli
> Fix For: 1.7.0, 1.8
>
> Attachments: DocumentNodeStoreBranchesTest.java, 
> DocumentNodeStoreBranchesTest.java, OAK-5557-1.2.patch, OAK-5557.patch
>
>
> In oak 1.2 when doing a diffManyChildren as part of running the CommitHooks 
> as part of a branch commit, not all child paths are taken into account in 
> some cases.
> The problem seems to be related to the [{{_modified}} 
> calculation|https://github.com/apache/jackrabbit-oak/blob/jackrabbit-oak-1.2.14/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/document/DocumentNodeStore.java#L2242]
>  when doing the query for affected child paths. It seems [that 
> {{minValue}}|https://github.com/apache/jackrabbit-oak/blob/jackrabbit-oak-1.2.14/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/document/DocumentNodeStore.java#L2242]
>  is not correctly calculated when doing {{compareAgainstBaseState}} as part 
> of a persisted branch.
> Note that the problem can be reproduced very good on 1.2.14, less good but 
> still on the latest 1.2 and not in trunk (ie almost 1.6.0).
> Attaching a test case to reproduce



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


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

2017-02-06 Thread Hudson (JIRA)

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

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 
#1404|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_RDB,profile=unittesting/1404/]
 [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/1404/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-5581) Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 (latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting #1403 failed

2017-02-06 Thread Hudson (JIRA)

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

Hudson commented on OAK-5581:
-

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 
#1404|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting/1404/]
 [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/1404/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting #1403 failed
> 
>
> Key: OAK-5581
> URL: https://issues.apache.org/jira/browse/OAK-5581
> 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 #1403 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.8 (latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting 
> #1403|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_RDB,profile=integrationTesting/1403/]
>  [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/1403/console]



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


[jira] [Commented] (OAK-5552) Test failure: query.SQL2OptimiseQueryTest.orToUnions (Query took too long)

2017-02-06 Thread Hudson (JIRA)

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

Hudson commented on OAK-5552:
-

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 
#1404|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_RDB,profile=unittesting/1404/]
 [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/1404/console]

> Test failure: query.SQL2OptimiseQueryTest.orToUnions (Query took too long)
> --
>
> Key: OAK-5552
> URL: https://issues.apache.org/jira/browse/OAK-5552
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>Assignee: Thomas Mueller
> Fix For: 1.8
>
>
> 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 #1393 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.8 (latest),nsfixtures=DOCUMENT_RDB,profile=unittesting 
> #1393|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_RDB,profile=unittesting/1393/]
>  [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/1393/console]



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


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

2017-02-06 Thread Hudson (JIRA)

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

Hudson commented on OAK-5578:
-

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

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=DOCUMENT_NS,profile=unittesting #1402 failed
> 
>
> Key: OAK-5578
> URL: https://issues.apache.org/jira/browse/OAK-5578
> 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_NS,profile=unittesting #1402 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.7 (latest),nsfixtures=DOCUMENT_NS,profile=unittesting 
> #1402|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_NS,profile=unittesting/1402/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_NS,profile=unittesting/1402/console]



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


[jira] [Updated] (OAK-3381) Provide Common Ancestor To ConflictHandler

2017-02-06 Thread JIRA

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

Michael Dürig updated OAK-3381:
---
Fix Version/s: 1.8

> Provide Common Ancestor To ConflictHandler
> --
>
> Key: OAK-3381
> URL: https://issues.apache.org/jira/browse/OAK-3381
> Project: Jackrabbit Oak
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3.5
>Reporter: Dominique Jäggi
>Assignee: Michael Dürig
> Fix For: 1.8
>
>
> currently _ConflictHandler_s are provided _ours_ and _theirs_, reflecting a 
> memory state and persisted state of changes to the same root resulting in a 
> conflict.
> unfortunately the information provided to _ConflictHandlers_ does not include 
> the common ancestor, needed for meaningful change-change merges (three-way 
> merge).
> the core should be enhanced to provide such information to _ConflictHandlers_.



--
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-06 Thread Hudson (JIRA)

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

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 
#1404|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_MK,profile=unittesting/1404/]
 [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/1404/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-5567) Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 (latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting #1397 failed

2017-02-06 Thread Hudson (JIRA)

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

Hudson commented on OAK-5567:
-

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 
#1404|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting/1404/]
 [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/1404/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting #1397 failed
> ---
>
> Key: OAK-5567
> URL: https://issues.apache.org/jira/browse/OAK-5567
> 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=integrationTesting #1397 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.8 (latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting 
> #1397|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting/1397/]
>  [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/1397/console]



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


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

2017-02-06 Thread Hudson (JIRA)

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

Hudson commented on OAK-5579:
-

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 
#1404|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting/1404/]
 [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/1404/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting #1402 failed
> ---
>
> Key: OAK-5579
> URL: https://issues.apache.org/jira/browse/OAK-5579
> 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_NS,profile=integrationTesting #1402 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.7 (latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting 
> #1402|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting/1402/]
>  [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/1402/console]



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


[jira] [Commented] (OAK-5485) Test failure: LdapDefaultLoginModuleTest

2017-02-06 Thread Hudson (JIRA)

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

Hudson commented on OAK-5485:
-

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 
#1404|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_TAR,profile=unittesting/1404/]
 [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/1404/console]

> Test failure: LdapDefaultLoginModuleTest
> 
>
> Key: OAK-5485
> URL: https://issues.apache.org/jira/browse/OAK-5485
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>  Labels: test-failure
> Fix For: 1.8, 1.6.1
>
> Attachments: unit-tests.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.8 
> (latest),nsfixtures=SEGMENT_TAR,profile=unittesting #1375 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.8 (latest),nsfixtures=SEGMENT_TAR,profile=unittesting 
> #1375|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_TAR,profile=unittesting/1375/]
>  [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/1375/console]



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


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

2017-02-06 Thread Hudson (JIRA)

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

Hudson commented on OAK-5504:
-

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 
#1404|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_MK,profile=unittesting/1404/]
 [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/1404/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 
> (latest),nsfixtures=SEGMENT_MK,profile=unittesting #1380 failed
> ---
>
> Key: OAK-5504
> URL: https://issues.apache.org/jira/browse/OAK-5504
> 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 #1380 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.8 (latest),nsfixtures=SEGMENT_MK,profile=unittesting 
> #1380|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_MK,profile=unittesting/1380/]
>  [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/1380/console]



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


[jira] [Commented] (OAK-4456) Setup Windows builds

2017-02-06 Thread JIRA

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

Michael Dürig commented on OAK-4456:


The stableness has gone again. The Windows CI does not reliably execute our job 
anymore: build #434: This run spent 19 hr waiting in the queue.



> Setup Windows builds 
> -
>
> Key: OAK-4456
> URL: https://issues.apache.org/jira/browse/OAK-4456
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>Reporter: Michael Dürig
>Assignee: Michael Dürig
>Priority: Blocker
>  Labels: CI, build, infrastructure, jenkins
> Fix For: 1.8, 1.6.1
>
>
> As [discussed | http://markmail.org/message/2dk6i3yxjfkknrzp] we should also 
> have CI coverage on Windows.



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


[jira] [Commented] (OAK-5540) Build failure: too many unapproved licenses

2017-02-06 Thread Hudson (JIRA)

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

Hudson commented on OAK-5540:
-

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

> Build failure: too many unapproved licenses
> ---
>
> Key: OAK-5540
> URL: https://issues.apache.org/jira/browse/OAK-5540
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>Priority: Blocker
>  Labels: test-failure
> Fix For: 1.6.0
>
>
> 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=rat #1387 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.8 (latest),nsfixtures=SEGMENT_TAR,profile=rat 
> #1387|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_TAR,profile=rat/1387/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_TAR,profile=rat/1387/console]



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


[jira] [Created] (OAK-5586) Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.8 (latest),nsfixtures=DOCUMENT_NS,profile=unittesting #1404 failed

2017-02-06 Thread Hudson (JIRA)
Hudson created OAK-5586:
---

 Summary: Build Apache Jackrabbit Oak matrix/Ubuntu 
Slaves=ubuntu,jdk=JDK 1.8 (latest),nsfixtures=DOCUMENT_NS,profile=unittesting 
#1404 failed
 Key: OAK-5586
 URL: https://issues.apache.org/jira/browse/OAK-5586
 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=unittesting #1404 has failed.
First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
1.8 (latest),nsfixtures=DOCUMENT_NS,profile=unittesting 
#1404|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_NS,profile=unittesting/1404/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_NS,profile=unittesting/1404/console]



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


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

2017-02-06 Thread Hudson (JIRA)
Hudson created OAK-5585:
---

 Summary: Build Apache Jackrabbit Oak matrix/Ubuntu 
Slaves=ubuntu,jdk=JDK 1.7 
(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting #1404 failed
 Key: OAK-5585
 URL: https://issues.apache.org/jira/browse/OAK-5585
 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 #1404 has failed.
First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
1.7 (latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting 
#1404|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_TAR,profile=integrationTesting/1404/]
 [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/1404/console]



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


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

2017-02-06 Thread Hudson (JIRA)

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

Hudson commented on OAK-5582:
-

Build is still failing.
Failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
(latest),nsfixtures=SEGMENT_TAR,profile=unittesting 
#1404|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_TAR,profile=unittesting/1404/]
 [console 
log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_TAR,profile=unittesting/1404/console]

> Build Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 1.7 
> (latest),nsfixtures=SEGMENT_TAR,profile=unittesting #1403 failed
> 
>
> Key: OAK-5582
> URL: https://issues.apache.org/jira/browse/OAK-5582
> 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=unittesting #1403 has failed.
> First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
> 1.7 (latest),nsfixtures=SEGMENT_TAR,profile=unittesting 
> #1403|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_TAR,profile=unittesting/1403/]
>  [console 
> log|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.7%20(latest),nsfixtures=SEGMENT_TAR,profile=unittesting/1403/console]



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


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

2017-02-06 Thread Hudson (JIRA)
Hudson created OAK-5584:
---

 Summary: Build Apache Jackrabbit Oak matrix/Ubuntu 
Slaves=ubuntu,jdk=JDK 1.8 
(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting #1404 failed
 Key: OAK-5584
 URL: https://issues.apache.org/jira/browse/OAK-5584
 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 #1404 has failed.
First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
1.8 (latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting 
#1404|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=DOCUMENT_NS,profile=integrationTesting/1404/]
 [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/1404/console]



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


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

2017-02-06 Thread Hudson (JIRA)
Hudson created OAK-5583:
---

 Summary: Build Apache Jackrabbit Oak matrix/Ubuntu 
Slaves=ubuntu,jdk=JDK 1.8 
(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting #1404 failed
 Key: OAK-5583
 URL: https://issues.apache.org/jira/browse/OAK-5583
 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 #1404 has failed.
First failed run: [Apache Jackrabbit Oak matrix/Ubuntu Slaves=ubuntu,jdk=JDK 
1.8 (latest),nsfixtures=SEGMENT_MK,profile=integrationTesting 
#1404|https://builds.apache.org/job/Apache%20Jackrabbit%20Oak%20matrix/Ubuntu%20Slaves=ubuntu,jdk=JDK%201.8%20(latest),nsfixtures=SEGMENT_MK,profile=integrationTesting/1404/]
 [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/1404/console]



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


<    1   2