[jira] [Commented] (LUCENE-8599) Use sparse bitset to store docs in SingleValueDocValuesFieldUpdates

2018-12-12 Thread ASF subversion and git services (JIRA)


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

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

Commit 61e448666d56c20c37dfb825ec14ffe697d000ff in lucene-solr's branch 
refs/heads/jira/http2 from [~simonw]
[ https://git-wip-us.apache.org/repos/asf?p=lucene-solr.git;h=61e4486 ]

LUCENE-8599: Add hasNoValue bitset to ramBytesUsed calculation


> Use sparse bitset to store docs in SingleValueDocValuesFieldUpdates
> ---
>
> Key: LUCENE-8599
> URL: https://issues.apache.org/jira/browse/LUCENE-8599
> Project: Lucene - Core
>  Issue Type: Improvement
>Reporter: Simon Willnauer
>Priority: Major
> Fix For: master (8.0), 7.7
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Using a sparse bitset in SingleValueDocValuesFieldUdpates allows storing
> which documents have an update much more efficient and prevents the need
> to sort the docs array altogether that showed to be a significant 
> bottleneck
> in LUCENE-8598. Using the spares bitset yields another 10x performance 
> improvement
> in applying updates versus the changes proposed in LUCENE-8598.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Commented] (LUCENE-8599) Use sparse bitset to store docs in SingleValueDocValuesFieldUpdates

2018-12-11 Thread ASF subversion and git services (JIRA)


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

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

Commit 7a6f03c36da55cfdcb8b5ec46d1e659d657b8377 in lucene-solr's branch 
refs/heads/branch_7x from [~simonw]
[ https://git-wip-us.apache.org/repos/asf?p=lucene-solr.git;h=7a6f03c ]

LUCENE-8599: Add hasNoValue bitset to ramBytesUsed calculation


> Use sparse bitset to store docs in SingleValueDocValuesFieldUpdates
> ---
>
> Key: LUCENE-8599
> URL: https://issues.apache.org/jira/browse/LUCENE-8599
> Project: Lucene - Core
>  Issue Type: Improvement
>Reporter: Simon Willnauer
>Priority: Major
> Fix For: master (8.0), 7.7
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Using a sparse bitset in SingleValueDocValuesFieldUdpates allows storing
> which documents have an update much more efficient and prevents the need
> to sort the docs array altogether that showed to be a significant 
> bottleneck
> in LUCENE-8598. Using the spares bitset yields another 10x performance 
> improvement
> in applying updates versus the changes proposed in LUCENE-8598.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Commented] (LUCENE-8599) Use sparse bitset to store docs in SingleValueDocValuesFieldUpdates

2018-12-11 Thread ASF subversion and git services (JIRA)


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

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

Commit 61e448666d56c20c37dfb825ec14ffe697d000ff in lucene-solr's branch 
refs/heads/master from [~simonw]
[ https://git-wip-us.apache.org/repos/asf?p=lucene-solr.git;h=61e4486 ]

LUCENE-8599: Add hasNoValue bitset to ramBytesUsed calculation


> Use sparse bitset to store docs in SingleValueDocValuesFieldUpdates
> ---
>
> Key: LUCENE-8599
> URL: https://issues.apache.org/jira/browse/LUCENE-8599
> Project: Lucene - Core
>  Issue Type: Improvement
>Reporter: Simon Willnauer
>Priority: Major
> Fix For: master (8.0), 7.7
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Using a sparse bitset in SingleValueDocValuesFieldUdpates allows storing
> which documents have an update much more efficient and prevents the need
> to sort the docs array altogether that showed to be a significant 
> bottleneck
> in LUCENE-8598. Using the spares bitset yields another 10x performance 
> improvement
> in applying updates versus the changes proposed in LUCENE-8598.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Commented] (LUCENE-8599) Use sparse bitset to store docs in SingleValueDocValuesFieldUpdates

2018-12-11 Thread ASF subversion and git services (JIRA)


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

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

Commit ef61b547b175f9fbb63dd9fca78f7984f4f72be2 in lucene-solr's branch 
refs/heads/jira/http2 from [~simonw]
[ https://git-wip-us.apache.org/repos/asf?p=lucene-solr.git;h=ef61b54 ]

LUCENE-8599: Use sparse bitset to store docs in SingleValueDocValuesFieldUpdates

Using a sparse bitset in SingleValueDocValuesFieldUdpates allows storing
which documents have an update much more efficient and prevents the need
to sort the docs array altogether that showed to be a significant bottleneck
in LUCENE-8598. Using the spares bitset yields another 10x performance 
improvement
in applying updates versus the changes proposed in LUCENE-8598.


> Use sparse bitset to store docs in SingleValueDocValuesFieldUpdates
> ---
>
> Key: LUCENE-8599
> URL: https://issues.apache.org/jira/browse/LUCENE-8599
> Project: Lucene - Core
>  Issue Type: Improvement
>Reporter: Simon Willnauer
>Priority: Major
> Fix For: master (8.0), 7.7
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Using a sparse bitset in SingleValueDocValuesFieldUdpates allows storing
> which documents have an update much more efficient and prevents the need
> to sort the docs array altogether that showed to be a significant 
> bottleneck
> in LUCENE-8598. Using the spares bitset yields another 10x performance 
> improvement
> in applying updates versus the changes proposed in LUCENE-8598.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Commented] (LUCENE-8599) Use sparse bitset to store docs in SingleValueDocValuesFieldUpdates

2018-12-10 Thread ASF subversion and git services (JIRA)


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

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

Commit 300d093c86f56c94f1fc75e12f5cd13c2aa38fe1 in lucene-solr's branch 
refs/heads/branch_7x from [~simonw]
[ https://git-wip-us.apache.org/repos/asf?p=lucene-solr.git;h=300d093 ]

LUCENE-8599: Use sparse bitset to store docs in SingleValueDocValuesFieldUpdates

Using a sparse bitset in SingleValueDocValuesFieldUdpates allows storing
which documents have an update much more efficient and prevents the need
to sort the docs array altogether that showed to be a significant bottleneck
in LUCENE-8598. Using the spares bitset yields another 10x performance 
improvement
in applying updates versus the changes proposed in LUCENE-8598.


> Use sparse bitset to store docs in SingleValueDocValuesFieldUpdates
> ---
>
> Key: LUCENE-8599
> URL: https://issues.apache.org/jira/browse/LUCENE-8599
> Project: Lucene - Core
>  Issue Type: Improvement
>Reporter: Simon Willnauer
>Priority: Major
> Fix For: master (8.0), 7.7
>
>  Time Spent: 40m
>  Remaining Estimate: 0h
>
> Using a sparse bitset in SingleValueDocValuesFieldUdpates allows storing
> which documents have an update much more efficient and prevents the need
> to sort the docs array altogether that showed to be a significant 
> bottleneck
> in LUCENE-8598. Using the spares bitset yields another 10x performance 
> improvement
> in applying updates versus the changes proposed in LUCENE-8598.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Commented] (LUCENE-8599) Use sparse bitset to store docs in SingleValueDocValuesFieldUpdates

2018-12-10 Thread ASF subversion and git services (JIRA)


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

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

Commit ef61b547b175f9fbb63dd9fca78f7984f4f72be2 in lucene-solr's branch 
refs/heads/master from [~simonw]
[ https://git-wip-us.apache.org/repos/asf?p=lucene-solr.git;h=ef61b54 ]

LUCENE-8599: Use sparse bitset to store docs in SingleValueDocValuesFieldUpdates

Using a sparse bitset in SingleValueDocValuesFieldUdpates allows storing
which documents have an update much more efficient and prevents the need
to sort the docs array altogether that showed to be a significant bottleneck
in LUCENE-8598. Using the spares bitset yields another 10x performance 
improvement
in applying updates versus the changes proposed in LUCENE-8598.


> Use sparse bitset to store docs in SingleValueDocValuesFieldUpdates
> ---
>
> Key: LUCENE-8599
> URL: https://issues.apache.org/jira/browse/LUCENE-8599
> Project: Lucene - Core
>  Issue Type: Improvement
>Reporter: Simon Willnauer
>Priority: Major
> Fix For: master (8.0), 7.7
>
>  Time Spent: 40m
>  Remaining Estimate: 0h
>
> Using a sparse bitset in SingleValueDocValuesFieldUdpates allows storing
> which documents have an update much more efficient and prevents the need
> to sort the docs array altogether that showed to be a significant 
> bottleneck
> in LUCENE-8598. Using the spares bitset yields another 10x performance 
> improvement
> in applying updates versus the changes proposed in LUCENE-8598.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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