[jira] [Commented] (LUCENE-6970) Off-by-one error in Lucene54DocValuesProducer

2016-01-11 Thread Robert Muir (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6970?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15091960#comment-15091960
 ] 

Robert Muir commented on LUCENE-6970:
-

It took quite some time for jenkins to find this bug. Is there a non-Slow test 
that could do the trick? I have concerns about how often these tests run.

> Off-by-one error in Lucene54DocValuesProducer
> -
>
> Key: LUCENE-6970
> URL: https://issues.apache.org/jira/browse/LUCENE-6970
> Project: Lucene - Core
>  Issue Type: Bug
>Affects Versions: 5.4
>Reporter: Adrien Grand
>Assignee: Adrien Grand
> Fix For: 5.4.1
>
> Attachments: LUCENE-6970.patch
>
>
> This was found by this build failure: 
> http://jenkins.thetaphi.de/job/Lucene-Solr-5.x-Linux/15210/
> If the doc count is a multiple of 65534 minus one and the segment is storing 
> binary, sorted set or sorted numeric doc values then you may hit an error 
> when reading values that is due to an off-by-one error in 
> Lucene54DocValuesProducer. This was introduced in LUCENE-6840.
> I'll upload a patch shortly.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6970) Off-by-one error in Lucene54DocValuesProducer

2016-01-11 Thread Adrien Grand (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6970?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15092276#comment-15092276
 ] 

Adrien Grand commented on LUCENE-6970:
--

bq. I guess the existing test was found with the huge multiplier only?

This is correct.

> Off-by-one error in Lucene54DocValuesProducer
> -
>
> Key: LUCENE-6970
> URL: https://issues.apache.org/jira/browse/LUCENE-6970
> Project: Lucene - Core
>  Issue Type: Bug
>Affects Versions: 5.4
>Reporter: Adrien Grand
>Assignee: Adrien Grand
> Fix For: 5.4.1
>
> Attachments: LUCENE-6970.patch
>
>
> This was found by this build failure: 
> http://jenkins.thetaphi.de/job/Lucene-Solr-5.x-Linux/15210/
> If the doc count is a multiple of 65534 minus one and the segment is storing 
> binary, sorted set or sorted numeric doc values then you may hit an error 
> when reading values that is due to an off-by-one error in 
> Lucene54DocValuesProducer. This was introduced in LUCENE-6840.
> I'll upload a patch shortly.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6970) Off-by-one error in Lucene54DocValuesProducer

2016-01-11 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6970?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15092300#comment-15092300
 ] 

ASF subversion and git services commented on LUCENE-6970:
-

Commit 1724089 from [~jpountz] in branch 'dev/trunk'
[ https://svn.apache.org/r1724089 ]

LUCENE-6970: Fixed off-by-one error in Lucene54DocValuesProducer.

> Off-by-one error in Lucene54DocValuesProducer
> -
>
> Key: LUCENE-6970
> URL: https://issues.apache.org/jira/browse/LUCENE-6970
> Project: Lucene - Core
>  Issue Type: Bug
>Affects Versions: 5.4
>Reporter: Adrien Grand
>Assignee: Adrien Grand
> Fix For: 5.4.1
>
> Attachments: LUCENE-6970.patch
>
>
> This was found by this build failure: 
> http://jenkins.thetaphi.de/job/Lucene-Solr-5.x-Linux/15210/
> If the doc count is a multiple of 65534 minus one and the segment is storing 
> binary, sorted set or sorted numeric doc values then you may hit an error 
> when reading values that is due to an off-by-one error in 
> Lucene54DocValuesProducer. This was introduced in LUCENE-6840.
> I'll upload a patch shortly.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6970) Off-by-one error in Lucene54DocValuesProducer

2016-01-11 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6970?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15092340#comment-15092340
 ] 

ASF subversion and git services commented on LUCENE-6970:
-

Commit 1724093 from [~jpountz] in branch 'dev/branches/lucene_solr_5_4'
[ https://svn.apache.org/r1724093 ]

LUCENE-6970: Fixed off-by-one error in Lucene54DocValuesProducer.

> Off-by-one error in Lucene54DocValuesProducer
> -
>
> Key: LUCENE-6970
> URL: https://issues.apache.org/jira/browse/LUCENE-6970
> Project: Lucene - Core
>  Issue Type: Bug
>Affects Versions: 5.4
>Reporter: Adrien Grand
>Assignee: Adrien Grand
> Fix For: 5.4.1
>
> Attachments: LUCENE-6970.patch
>
>
> This was found by this build failure: 
> http://jenkins.thetaphi.de/job/Lucene-Solr-5.x-Linux/15210/
> If the doc count is a multiple of 65534 minus one and the segment is storing 
> binary, sorted set or sorted numeric doc values then you may hit an error 
> when reading values that is due to an off-by-one error in 
> Lucene54DocValuesProducer. This was introduced in LUCENE-6840.
> I'll upload a patch shortly.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6970) Off-by-one error in Lucene54DocValuesProducer

2016-01-11 Thread Robert Muir (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6970?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15092261#comment-15092261
 ] 

Robert Muir commented on LUCENE-6970:
-

thanks for the explanation, I guess the existing test was found with the huge 
multiplier only?

+1 for patch

> Off-by-one error in Lucene54DocValuesProducer
> -
>
> Key: LUCENE-6970
> URL: https://issues.apache.org/jira/browse/LUCENE-6970
> Project: Lucene - Core
>  Issue Type: Bug
>Affects Versions: 5.4
>Reporter: Adrien Grand
>Assignee: Adrien Grand
> Fix For: 5.4.1
>
> Attachments: LUCENE-6970.patch
>
>
> This was found by this build failure: 
> http://jenkins.thetaphi.de/job/Lucene-Solr-5.x-Linux/15210/
> If the doc count is a multiple of 65534 minus one and the segment is storing 
> binary, sorted set or sorted numeric doc values then you may hit an error 
> when reading values that is due to an off-by-one error in 
> Lucene54DocValuesProducer. This was introduced in LUCENE-6840.
> I'll upload a patch shortly.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6970) Off-by-one error in Lucene54DocValuesProducer

2016-01-11 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6970?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15092324#comment-15092324
 ] 

ASF subversion and git services commented on LUCENE-6970:
-

Commit 1724091 from [~jpountz] in branch 'dev/branches/branch_5x'
[ https://svn.apache.org/r1724091 ]

LUCENE-6970: Fixed off-by-one error in Lucene54DocValuesProducer.

> Off-by-one error in Lucene54DocValuesProducer
> -
>
> Key: LUCENE-6970
> URL: https://issues.apache.org/jira/browse/LUCENE-6970
> Project: Lucene - Core
>  Issue Type: Bug
>Affects Versions: 5.4
>Reporter: Adrien Grand
>Assignee: Adrien Grand
> Fix For: 5.4.1
>
> Attachments: LUCENE-6970.patch
>
>
> This was found by this build failure: 
> http://jenkins.thetaphi.de/job/Lucene-Solr-5.x-Linux/15210/
> If the doc count is a multiple of 65534 minus one and the segment is storing 
> binary, sorted set or sorted numeric doc values then you may hit an error 
> when reading values that is due to an off-by-one error in 
> Lucene54DocValuesProducer. This was introduced in LUCENE-6840.
> I'll upload a patch shortly.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6970) Off-by-one error in Lucene54DocValuesProducer

2016-01-11 Thread Adrien Grand (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6970?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15092179#comment-15092179
 ] 

Adrien Grand commented on LUCENE-6970:
--

Maybe I should just remove the Slow annotation then? These tests take between 1 
and 2 secs on my machine. Sorry for my ignorance, but do we have builds that 
skip the slow tests (I thought this only applied to Nightly).

> Off-by-one error in Lucene54DocValuesProducer
> -
>
> Key: LUCENE-6970
> URL: https://issues.apache.org/jira/browse/LUCENE-6970
> Project: Lucene - Core
>  Issue Type: Bug
>Affects Versions: 5.4
>Reporter: Adrien Grand
>Assignee: Adrien Grand
> Fix For: 5.4.1
>
> Attachments: LUCENE-6970.patch
>
>
> This was found by this build failure: 
> http://jenkins.thetaphi.de/job/Lucene-Solr-5.x-Linux/15210/
> If the doc count is a multiple of 65534 minus one and the segment is storing 
> binary, sorted set or sorted numeric doc values then you may hit an error 
> when reading values that is due to an off-by-one error in 
> Lucene54DocValuesProducer. This was introduced in LUCENE-6840.
> I'll upload a patch shortly.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org