[jira] [Commented] (OAK-8918) RDBBlobStore: warn when legacy (SQLServer) default collation is active

2020-03-19 Thread Solomon Rutzky (Jira)


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

Solomon Rutzky commented on OAK-8918:
-

[~reschke] Good point. And, as I noted more recently on OAK-8908, keeping the 
column as {{VARCHAR}} and using (most likely) {{Latin1_General_BIN}} seems best.

> RDBBlobStore: warn when legacy (SQLServer) default collation is active
> --
>
> Key: OAK-8918
> URL: https://issues.apache.org/jira/browse/OAK-8918
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>  Components: rdbmk
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_8
> Fix For: 1.26.0, 1.10.9, 1.22.2
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OAK-8908) RDBBlobStore on SQL Server: bad performance when default collation is of type SQL*

2020-03-19 Thread Solomon Rutzky (Jira)


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

Solomon Rutzky commented on OAK-8908:
-

[~reschke], there will be minimal difference between {{Latin1_General_CI_AS}} 
and {{Latin1_General_BIN}} when dealing with a relatively small number of rows, 
especially if the values are somewhat narrow. This is mainly an issue of scale. 
You won't see much impact in a typical dev or QA environment as they don't 
usually have millions of rows. Of course, to be fair, I don't know much about 
this project and how many rows are expected in a "large" installation. I am 
just sharing my knowledge that for hex data stored as a string, 
{{Latin1_General_BIN}} is ideal (if needing to guarantee support all the way 
back to SQL Server 2000, else one of the other two as noted in Item 2 of my 
first comment above). This holds true for any type of code or ID (when unable 
to store the value in a {{BINARY}} / {{VARBINARY}} datatype).

 

P.S. I did do some testing and learned something unexpected and interesting 
(well, interesting to me at least ;) ): there are two binary collations that 
_do_ have the same performance hit when used on a {{VARCHAR}} column that is 
indexed _and_ that column is filtered on a Unicode literal or variable:
 # {{SQL_Latin1_General_CP437_BIN2}}
 # {{SQL_Latin1_General_CP850_BIN2}}

That is definitely odd, especially given that the regular "_BIN" versions of 
those work just fine:
 # {{SQL_Latin1_General_CP437_BIN}}
 # {{SQL_Latin1_General_CP850_BIN}}

Either way, {{Latin1_General_BIN}} does work as expected: there's no 
performance hit when filtering on a Unicode literal or variable. This could be 
quite helpful to users who are not upgrading to the new code that filters on a 
non-Unicode value (i.e. using your {{ALTER}} script in the first comment 
above). Again, only caveat being if there is a need to mix casing of *0xA - 
0xF* .

 

> RDBBlobStore on SQL Server: bad performance when default collation is of type 
> SQL*
> --
>
> Key: OAK-8908
> URL: https://issues.apache.org/jira/browse/OAK-8908
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>  Components: rdbmk
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Major
> Fix For: 1.28.0
>
> Attachments: OAK-8908-1.6.diff, OAK-8908.diff
>
>
> RDBBlobStore uses a 64-char primary key (digest in hex).
> Unfortunately, this causes performance issues on MS SQL Server, when the 
> collation for that column is of type "SQL*" (see links). These types of 
> collations are deprecated, but still the default for installations on the 
> "EN_US" locale.
> The performance loss can be observed by changing the collation on an existing 
> install, and then enable performance logging on RDBBlobStore.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OAK-8952) Test failure: DataStoreBlobStoreStatsTest.testDSBSGetRecordErrorStats

2020-03-19 Thread Hudson (Jira)


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

Hudson commented on OAK-8952:
-

Previously failing build now is OK.
 Passed run: [Jackrabbit Oak 
#2671|https://builds.apache.org/job/Jackrabbit%20Oak/2671/] [console 
log|https://builds.apache.org/job/Jackrabbit%20Oak/2671/console]

> Test failure: DataStoreBlobStoreStatsTest.testDSBSGetRecordErrorStats
> -
>
> Key: OAK-8952
> URL: https://issues.apache.org/jira/browse/OAK-8952
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: blob-plugins, continuous integration
>Reporter: Hudson
>Priority: Major
>
> No description is provided
> The build Jackrabbit Oak #2659 has failed.
> First failed run: [Jackrabbit Oak 
> #2659|https://builds.apache.org/job/Jackrabbit%20Oak/2659/] [console 
> log|https://builds.apache.org/job/Jackrabbit%20Oak/2659/console]
> {noformat}
> [ERROR] 
> testDSBSGetRecordErrorStats(org.apache.jackrabbit.oak.plugins.blob.datastore.DataStoreBlobStoreStatsTest)
>   Time elapsed: 1.093 s  <<< FAILURE!
> java.lang.AssertionError: expected:<1> but was:<0>
>   at org.junit.Assert.fail(Assert.java:88)
>   at org.junit.Assert.failNotEquals(Assert.java:834)
>   at org.junit.Assert.assertEquals(Assert.java:645)
>   at org.junit.Assert.assertEquals(Assert.java:631)
>   at 
> org.apache.jackrabbit.oak.plugins.blob.datastore.DataStoreBlobStoreStatsTest.testDSBSGetRecordErrorStats(DataStoreBlobStoreStatsTest.java:306)
> {noformat}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OAK-8952) Test failure: DataStoreBlobStoreStatsTest.testDSBSGetRecordErrorStats

2020-03-19 Thread Hudson (Jira)


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

Hudson commented on OAK-8952:
-

Previously failing build now is OK.
 Passed run: [Jackrabbit Oak 
#2670|https://builds.apache.org/job/Jackrabbit%20Oak/2670/] [console 
log|https://builds.apache.org/job/Jackrabbit%20Oak/2670/console]

> Test failure: DataStoreBlobStoreStatsTest.testDSBSGetRecordErrorStats
> -
>
> Key: OAK-8952
> URL: https://issues.apache.org/jira/browse/OAK-8952
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: blob-plugins, continuous integration
>Reporter: Hudson
>Priority: Major
>
> No description is provided
> The build Jackrabbit Oak #2659 has failed.
> First failed run: [Jackrabbit Oak 
> #2659|https://builds.apache.org/job/Jackrabbit%20Oak/2659/] [console 
> log|https://builds.apache.org/job/Jackrabbit%20Oak/2659/console]
> {noformat}
> [ERROR] 
> testDSBSGetRecordErrorStats(org.apache.jackrabbit.oak.plugins.blob.datastore.DataStoreBlobStoreStatsTest)
>   Time elapsed: 1.093 s  <<< FAILURE!
> java.lang.AssertionError: expected:<1> but was:<0>
>   at org.junit.Assert.fail(Assert.java:88)
>   at org.junit.Assert.failNotEquals(Assert.java:834)
>   at org.junit.Assert.assertEquals(Assert.java:645)
>   at org.junit.Assert.assertEquals(Assert.java:631)
>   at 
> org.apache.jackrabbit.oak.plugins.blob.datastore.DataStoreBlobStoreStatsTest.testDSBSGetRecordErrorStats(DataStoreBlobStoreStatsTest.java:306)
> {noformat}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Comment Edited] (OAK-8915) RDBDocumentStore: use setNString() for columns known to be of type N*CHAR

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke edited comment on OAK-8915 at 3/19/20, 1:26 PM:
---

trunk: [r1874249|http://svn.apache.org/r1874249]
1.22: (1.22.2) [r1874825|http://svn.apache.org/r1874825]
1.10: [r1875251|http://svn.apache.org/r1875251]
1.8: (1.8.21) [r1875260|http://svn.apache.org/r1875260]
1.6: [r1875423|http://svn.apache.org/r1875423]



was (Author: reschke):
trunk: [r1874249|http://svn.apache.org/r1874249]
1.22: (1.22.2) [r1874825|http://svn.apache.org/r1874825]
1.10: [r1875251|http://svn.apache.org/r1875251]
1.8: [r1875260|http://svn.apache.org/r1875260]


> RDBDocumentStore: use setNString() for columns known to be of type N*CHAR
> -
>
> Key: OAK-8915
> URL: https://issues.apache.org/jira/browse/OAK-8915
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>  Components: rdbmk
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
> Fix For: 1.26.0, 1.10.9, 1.8.21, 1.6.21, 1.22.2
>
>
> Microsoft's JDBC driver supports a connection property 
> "sendStringParametersAsUnicode" 
> ().
>  When set to false, RDBDocumentStore would fail as the DATA column indeed 
> requires Unicode.
> The fix is to detect the type of the DATA column (similar on how we 
> special-case ID), and use setNString() for these cases.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OAK-8915) RDBDocumentStore: use setNString() for columns known to be of type N*CHAR

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke updated OAK-8915:

Fix Version/s: 1.6.21

> RDBDocumentStore: use setNString() for columns known to be of type N*CHAR
> -
>
> Key: OAK-8915
> URL: https://issues.apache.org/jira/browse/OAK-8915
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>  Components: rdbmk
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_6
> Fix For: 1.26.0, 1.10.9, 1.8.21, 1.6.21, 1.22.2
>
>
> Microsoft's JDBC driver supports a connection property 
> "sendStringParametersAsUnicode" 
> ().
>  When set to false, RDBDocumentStore would fail as the DATA column indeed 
> requires Unicode.
> The fix is to detect the type of the DATA column (similar on how we 
> special-case ID), and use setNString() for these cases.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OAK-8915) RDBDocumentStore: use setNString() for columns known to be of type N*CHAR

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke updated OAK-8915:

Labels:   (was: candidate_oak_1_6)

> RDBDocumentStore: use setNString() for columns known to be of type N*CHAR
> -
>
> Key: OAK-8915
> URL: https://issues.apache.org/jira/browse/OAK-8915
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>  Components: rdbmk
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
> Fix For: 1.26.0, 1.10.9, 1.8.21, 1.6.21, 1.22.2
>
>
> Microsoft's JDBC driver supports a connection property 
> "sendStringParametersAsUnicode" 
> ().
>  When set to false, RDBDocumentStore would fail as the DATA column indeed 
> requires Unicode.
> The fix is to detect the type of the DATA column (similar on how we 
> special-case ID), and use setNString() for these cases.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Comment Edited] (OAK-8760) ClusterViewDocument uses static instance of SimpleDateFormat

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke edited comment on OAK-8760 at 3/19/20, 12:25 PM:


trunk: (1.22.0) [r1872485|http://svn.apache.org/r1872485]
1.10: [r1875419|http://svn.apache.org/r1875419]



was (Author: reschke):
trunk: [r1872485|http://svn.apache.org/r1872485]

> ClusterViewDocument uses static instance of SimpleDateFormat
> 
>
> Key: OAK-8760
> URL: https://issues.apache.org/jira/browse/OAK-8760
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: documentmk
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_8
> Fix For: 1.22.0, 1.10.9
>
> Attachments: OAK-8760.diff
>
>
> ...which is not thread-safe.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OAK-8760) ClusterViewDocument uses static instance of SimpleDateFormat

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke updated OAK-8760:

Fix Version/s: 1.10.9

> ClusterViewDocument uses static instance of SimpleDateFormat
> 
>
> Key: OAK-8760
> URL: https://issues.apache.org/jira/browse/OAK-8760
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: documentmk
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_10
> Fix For: 1.22.0, 1.10.9
>
> Attachments: OAK-8760.diff
>
>
> ...which is not thread-safe.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OAK-8760) ClusterViewDocument uses static instance of SimpleDateFormat

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke updated OAK-8760:

Labels: candidate_oak_1_8  (was: candidate_oak_1_10)

> ClusterViewDocument uses static instance of SimpleDateFormat
> 
>
> Key: OAK-8760
> URL: https://issues.apache.org/jira/browse/OAK-8760
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: documentmk
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_8
> Fix For: 1.22.0, 1.10.9
>
> Attachments: OAK-8760.diff
>
>
> ...which is not thread-safe.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Comment Edited] (OAK-8925) RDBDocumentStore: for SQL Server stats, include type_desc and fill_factor

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke edited comment on OAK-8925 at 3/19/20, 11:43 AM:


trunk: [r1874543|http://svn.apache.org/r1874543]
1.22: (1.22.2) [r1874847|http://svn.apache.org/r1874847]
1.10: [r1875418|http://svn.apache.org/r1875418]



was (Author: reschke):
trunk: [r1874543|http://svn.apache.org/r1874543]
1.22: [r1874847|http://svn.apache.org/r1874847]


> RDBDocumentStore: for SQL Server stats, include type_desc and fill_factor
> -
>
> Key: OAK-8925
> URL: https://issues.apache.org/jira/browse/OAK-8925
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>  Components: rdbmk
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_8
> Fix For: 1.26.0, 1.10.9, 1.22.2
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OAK-8925) RDBDocumentStore: for SQL Server stats, include type_desc and fill_factor

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke updated OAK-8925:

Labels: candidate_oak_1_8  (was: candidate_oak_1_10)

> RDBDocumentStore: for SQL Server stats, include type_desc and fill_factor
> -
>
> Key: OAK-8925
> URL: https://issues.apache.org/jira/browse/OAK-8925
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>  Components: rdbmk
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_8
> Fix For: 1.26.0, 1.10.9, 1.22.2
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OAK-8925) RDBDocumentStore: for SQL Server stats, include type_desc and fill_factor

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke updated OAK-8925:

Fix Version/s: 1.10.9

> RDBDocumentStore: for SQL Server stats, include type_desc and fill_factor
> -
>
> Key: OAK-8925
> URL: https://issues.apache.org/jira/browse/OAK-8925
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>  Components: rdbmk
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_10
> Fix For: 1.26.0, 1.10.9, 1.22.2
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OAK-8798) Upgrade maven-bundle-plugin to 4.2.1

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke updated OAK-8798:

Labels: candidate_oak_1_8  (was: candidate_oak_1_10)

> Upgrade maven-bundle-plugin to 4.2.1
> 
>
> Key: OAK-8798
> URL: https://issues.apache.org/jira/browse/OAK-8798
> Project: Jackrabbit Oak
>  Issue Type: Task
>  Components: parent
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_8
> Fix For: 1.22.0, 1.10.9
>
> Attachments: OAK-8798.diff
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Comment Edited] (OAK-8798) Upgrade maven-bundle-plugin to 4.2.1

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke edited comment on OAK-8798 at 3/19/20, 10:29 AM:


trunk: (1.22.0) [r1870833|http://svn.apache.org/r1870833] 
[r1870583|http://svn.apache.org/r1870583] 
[r1870563|http://svn.apache.org/r1870563]
1.10: [r1875417|http://svn.apache.org/r1875417]




was (Author: reschke):
trunk: [r1870833|http://svn.apache.org/r1870833] 
[r1870583|http://svn.apache.org/r1870583] 
[r1870563|http://svn.apache.org/r1870563]

> Upgrade maven-bundle-plugin to 4.2.1
> 
>
> Key: OAK-8798
> URL: https://issues.apache.org/jira/browse/OAK-8798
> Project: Jackrabbit Oak
>  Issue Type: Task
>  Components: parent
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_10
> Fix For: 1.22.0
>
> Attachments: OAK-8798.diff
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OAK-8798) Upgrade maven-bundle-plugin to 4.2.1

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke updated OAK-8798:

Fix Version/s: 1.10.9

> Upgrade maven-bundle-plugin to 4.2.1
> 
>
> Key: OAK-8798
> URL: https://issues.apache.org/jira/browse/OAK-8798
> Project: Jackrabbit Oak
>  Issue Type: Task
>  Components: parent
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_10
> Fix For: 1.22.0, 1.10.9
>
> Attachments: OAK-8798.diff
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OAK-8918) RDBBlobStore: warn when legacy (SQLServer) default collation is active

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke commented on OAK-8918:
-

trunk: [r1874271|http://svn.apache.org/r1874271]
1.22: (1.22.2) [r1874838|http://svn.apache.org/r1874838]
1.10: [r1875416|http://svn.apache.org/r1875416]


> RDBBlobStore: warn when legacy (SQLServer) default collation is active
> --
>
> Key: OAK-8918
> URL: https://issues.apache.org/jira/browse/OAK-8918
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>  Components: rdbmk
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_8
> Fix For: 1.26.0, 1.10.9, 1.22.2
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Issue Comment Deleted] (OAK-8918) RDBBlobStore: warn when legacy (SQLServer) default collation is active

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke updated OAK-8918:

Comment: was deleted

(was: trunk: [r1874271|http://svn.apache.org/r1874271]
1.22: [r1874838|http://svn.apache.org/r1874838]
)

> RDBBlobStore: warn when legacy (SQLServer) default collation is active
> --
>
> Key: OAK-8918
> URL: https://issues.apache.org/jira/browse/OAK-8918
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>  Components: rdbmk
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_8
> Fix For: 1.26.0, 1.10.9, 1.22.2
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OAK-8918) RDBBlobStore: warn when legacy (SQLServer) default collation is active

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke updated OAK-8918:

Labels: candidate_oak_1_8  (was: candidate_oak_1_10)

> RDBBlobStore: warn when legacy (SQLServer) default collation is active
> --
>
> Key: OAK-8918
> URL: https://issues.apache.org/jira/browse/OAK-8918
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>  Components: rdbmk
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_8
> Fix For: 1.26.0, 1.10.9, 1.22.2
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OAK-8918) RDBBlobStore: warn when legacy (SQLServer) default collation is active

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke updated OAK-8918:

Fix Version/s: 1.10.9

> RDBBlobStore: warn when legacy (SQLServer) default collation is active
> --
>
> Key: OAK-8918
> URL: https://issues.apache.org/jira/browse/OAK-8918
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>  Components: rdbmk
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_10
> Fix For: 1.26.0, 1.10.9, 1.22.2
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Comment Edited] (OAK-8823) Update org.apache.felix.scr.bnd to 1.9.6

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke edited comment on OAK-8823 at 3/19/20, 9:28 AM:
---

trunk: (1.22.0) [r1870993|http://svn.apache.org/r1870993]
1.10: [r1875415|http://svn.apache.org/r1875415]



was (Author: reschke):
trunk: [r1870993|http://svn.apache.org/r1870993]

> Update org.apache.felix.scr.bnd to 1.9.6
> 
>
> Key: OAK-8823
> URL: https://issues.apache.org/jira/browse/OAK-8823
> Project: Jackrabbit Oak
>  Issue Type: Task
>  Components: parent
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_8
> Fix For: 1.22.0, 1.10.9
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OAK-8823) Update org.apache.felix.scr.bnd to 1.9.6

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke updated OAK-8823:

Labels: candidate_oak_1_8  (was: candidate_oak_1_10)

> Update org.apache.felix.scr.bnd to 1.9.6
> 
>
> Key: OAK-8823
> URL: https://issues.apache.org/jira/browse/OAK-8823
> Project: Jackrabbit Oak
>  Issue Type: Task
>  Components: parent
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_8
> Fix For: 1.22.0, 1.10.9
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OAK-8823) Update org.apache.felix.scr.bnd to 1.9.6

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke updated OAK-8823:

Fix Version/s: 1.10.9

> Update org.apache.felix.scr.bnd to 1.9.6
> 
>
> Key: OAK-8823
> URL: https://issues.apache.org/jira/browse/OAK-8823
> Project: Jackrabbit Oak
>  Issue Type: Task
>  Components: parent
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_10
> Fix For: 1.22.0, 1.10.9
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OAK-8918) RDBBlobStore: warn when legacy (SQLServer) default collation is active

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke commented on OAK-8918:
-

[~Solomon.Rutzky] - yes; but we need to break that down into individual tasks; 
we can't simply change the table definition for existing installations.

> RDBBlobStore: warn when legacy (SQLServer) default collation is active
> --
>
> Key: OAK-8918
> URL: https://issues.apache.org/jira/browse/OAK-8918
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>  Components: rdbmk
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_10
> Fix For: 1.26.0, 1.22.2
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Comment Edited] (OAK-8916) RDBBlobStore: log additional DB diagnostics (align with RDBDocumentStore)

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke edited comment on OAK-8916 at 3/19/20, 8:50 AM:
---

trunk: [r1874269|http://svn.apache.org/r1874269]
1.22: (1.22.2) [r1874828|http://svn.apache.org/r1874828]
1.10: [r1875414|http://svn.apache.org/r1875414]



was (Author: reschke):
trunk: [r1874269|http://svn.apache.org/r1874269]
1.22: [r1874828|http://svn.apache.org/r1874828]


> RDBBlobStore: log additional DB diagnostics (align with RDBDocumentStore)
> -
>
> Key: OAK-8916
> URL: https://issues.apache.org/jira/browse/OAK-8916
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>  Components: rdbmk
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_8
> Fix For: 1.26.0, 1.10.9, 1.22.2
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OAK-8916) RDBBlobStore: log additional DB diagnostics (align with RDBDocumentStore)

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke updated OAK-8916:

Fix Version/s: 1.10.9

> RDBBlobStore: log additional DB diagnostics (align with RDBDocumentStore)
> -
>
> Key: OAK-8916
> URL: https://issues.apache.org/jira/browse/OAK-8916
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>  Components: rdbmk
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_10
> Fix For: 1.26.0, 1.10.9, 1.22.2
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OAK-8916) RDBBlobStore: log additional DB diagnostics (align with RDBDocumentStore)

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke updated OAK-8916:

Labels: candidate_oak_1_8  (was: candidate_oak_1_10)

> RDBBlobStore: log additional DB diagnostics (align with RDBDocumentStore)
> -
>
> Key: OAK-8916
> URL: https://issues.apache.org/jira/browse/OAK-8916
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>  Components: rdbmk
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_8
> Fix For: 1.26.0, 1.10.9, 1.22.2
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Comment Edited] (OAK-8844) update jackson dependency to 2.10.2

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke edited comment on OAK-8844 at 3/19/20, 8:28 AM:
---

trunk: (1.22.0) [r1872551|http://svn.apache.org/r1872551]
1.10: [r1875411|http://svn.apache.org/r1875411]



was (Author: reschke):
trunk: [r1872551|http://svn.apache.org/r1872551]

> update jackson dependency to 2.10.2
> ---
>
> Key: OAK-8844
> URL: https://issues.apache.org/jira/browse/OAK-8844
> Project: Jackrabbit Oak
>  Issue Type: Task
>  Components: parent
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_8
> Fix For: 1.22.0, 1.10.9
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OAK-8844) update jackson dependency to 2.10.2

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke updated OAK-8844:

Labels: candidate_oak_1_8  (was: candidate_oak_1_10)

> update jackson dependency to 2.10.2
> ---
>
> Key: OAK-8844
> URL: https://issues.apache.org/jira/browse/OAK-8844
> Project: Jackrabbit Oak
>  Issue Type: Task
>  Components: parent
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_8
> Fix For: 1.22.0, 1.10.9
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OAK-8844) update jackson dependency to 2.10.2

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke updated OAK-8844:

Fix Version/s: 1.10.9

> update jackson dependency to 2.10.2
> ---
>
> Key: OAK-8844
> URL: https://issues.apache.org/jira/browse/OAK-8844
> Project: Jackrabbit Oak
>  Issue Type: Task
>  Components: parent
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_10
> Fix For: 1.22.0, 1.10.9
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Comment Edited] (OAK-8824) update jackson dependency to 2.10.1

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke edited comment on OAK-8824 at 3/19/20, 7:24 AM:
---

trunk: (1.22.0) [r1871175|http://svn.apache.org/r1871175]
1.10: [r1875410|http://svn.apache.org/r1875410]



was (Author: reschke):
trunk: [r1871175|http://svn.apache.org/r1871175]

> update jackson dependency to 2.10.1
> ---
>
> Key: OAK-8824
> URL: https://issues.apache.org/jira/browse/OAK-8824
> Project: Jackrabbit Oak
>  Issue Type: Task
>  Components: parent, solr
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_8
> Fix For: 1.22.0, 1.10.9
>
> Attachments: OAK-8824.diff
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OAK-8824) update jackson dependency to 2.10.1

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke updated OAK-8824:

Labels: candidate_oak_1_8  (was: candidate_oak_1_10)

> update jackson dependency to 2.10.1
> ---
>
> Key: OAK-8824
> URL: https://issues.apache.org/jira/browse/OAK-8824
> Project: Jackrabbit Oak
>  Issue Type: Task
>  Components: parent, solr
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_8
> Fix For: 1.22.0, 1.10.9
>
> Attachments: OAK-8824.diff
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OAK-8824) update jackson dependency to 2.10.1

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke updated OAK-8824:

Fix Version/s: 1.10.9

> update jackson dependency to 2.10.1
> ---
>
> Key: OAK-8824
> URL: https://issues.apache.org/jira/browse/OAK-8824
> Project: Jackrabbit Oak
>  Issue Type: Task
>  Components: parent, solr
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_10
> Fix For: 1.22.0, 1.10.9
>
> Attachments: OAK-8824.diff
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Comment Edited] (OAK-8913) RDB*Store: extract "additionalDiagnostics" code into separate class for re-use from RDBBlobStore

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke edited comment on OAK-8913 at 3/19/20, 7:16 AM:
---

trunk: [r1874174|http://svn.apache.org/r1874174]
1.22: (1.22.2) [r1874819|http://svn.apache.org/r1874819]
1.10: [r1875409|http://svn.apache.org/r1875409]



was (Author: reschke):
trunk: [r1874174|http://svn.apache.org/r1874174]
1.22: [r1874819|http://svn.apache.org/r1874819]


> RDB*Store: extract "additionalDiagnostics" code into separate class for 
> re-use from RDBBlobStore
> 
>
> Key: OAK-8913
> URL: https://issues.apache.org/jira/browse/OAK-8913
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_8
> Fix For: 1.26.0, 1.10.9, 1.22.2
>
> Attachments: OAK-8913.diff
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OAK-8913) RDB*Store: extract "additionalDiagnostics" code into separate class for re-use from RDBBlobStore

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke updated OAK-8913:

Fix Version/s: 1.10.9

> RDB*Store: extract "additionalDiagnostics" code into separate class for 
> re-use from RDBBlobStore
> 
>
> Key: OAK-8913
> URL: https://issues.apache.org/jira/browse/OAK-8913
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_10
> Fix For: 1.26.0, 1.10.9, 1.22.2
>
> Attachments: OAK-8913.diff
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OAK-8913) RDB*Store: extract "additionalDiagnostics" code into separate class for re-use from RDBBlobStore

2020-03-19 Thread Julian Reschke (Jira)


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

Julian Reschke updated OAK-8913:

Labels: candidate_oak_1_8  (was: candidate_oak_1_10)

> RDB*Store: extract "additionalDiagnostics" code into separate class for 
> re-use from RDBBlobStore
> 
>
> Key: OAK-8913
> URL: https://issues.apache.org/jira/browse/OAK-8913
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Minor
>  Labels: candidate_oak_1_8
> Fix For: 1.26.0, 1.10.9, 1.22.2
>
> Attachments: OAK-8913.diff
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)