[jira] [Commented] (LUCENE-10308) Make ecj and javadoc run with modular paths

2021-12-12 Thread Dawid Weiss (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10308?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17458012#comment-17458012 ] Dawid Weiss commented on LUCENE-10308: -- I made it all work... only to discover ecj

[GitHub] [lucene] msokolov commented on pull request #534: LUCENE-10183: KnnVectorsWriter#writeField to take KnnVectorsReader instead of VectorValues

2021-12-12 Thread GitBox
msokolov commented on pull request #534: URL: https://github.com/apache/lucene/pull/534#issuecomment-991976399 Maybe also and a CHANGELOG entry? I guess it's a somewhat internal API, being in codecs, but it's not marked @experimental, so if someone had implemented their own KnnVectorsWrite

[GitHub] [lucene] msokolov commented on a change in pull request #534: LUCENE-10183: KnnVectorsWriter#writeField to take KnnVectorsReader instead of VectorValues

2021-12-12 Thread GitBox
msokolov commented on a change in pull request #534: URL: https://github.com/apache/lucene/pull/534#discussion_r767331493 ## File path: lucene/core/src/java/org/apache/lucene/index/EmptyKnnVectorsReader.java ## @@ -0,0 +1,54 @@ +/* + * Licensed to the Apache Software Foundatio

[GitHub] [lucene-solr] janhoy opened a new pull request #2629: SOLR-15804 Support leading slash for "file" parameter

2021-12-12 Thread GitBox
janhoy opened a new pull request #2629: URL: https://github.com/apache/lucene-solr/pull/2629 https://issues.apache.org/jira/browse/SOLR-15804 Backport of https://github.com/apache/solr/pull/456 -- This is an automated message from the Apache Git Service. To respond to the message, plea

[GitHub] [lucene-solr] janhoy merged pull request #2629: SOLR-15804 Support leading slash for "file" parameter

2021-12-12 Thread GitBox
janhoy merged pull request #2629: URL: https://github.com/apache/lucene-solr/pull/2629 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsu

[GitHub] [lucene-solr] janhoy merged pull request #2628: SOLR-15844 Upgrade Velocity to v2.3

2021-12-12 Thread GitBox
janhoy merged pull request #2628: URL: https://github.com/apache/lucene-solr/pull/2628 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsu

[GitHub] [lucene] mayya-sharipova opened a new pull request #536: Don't store graph offsets for HNSW graph

2021-12-12 Thread GitBox
mayya-sharipova opened a new pull request #536: URL: https://github.com/apache/lucene/pull/536 Currently we store for each node an offset in the graph neighbours file from where to read this node's neighbours. We also load these offsets into the heap. This patch instead of stori

[GitHub] [lucene] mayya-sharipova commented on a change in pull request #416: LUCENE-10054 Make HnswGraph hierarchical

2021-12-12 Thread GitBox
mayya-sharipova commented on a change in pull request #416: URL: https://github.com/apache/lucene/pull/416#discussion_r767385760 ## File path: lucene/core/src/java/org/apache/lucene/codecs/lucene90/Lucene90HnswVectorsReader.java ## @@ -205,6 +215,43 @@ private FieldEntry readF

[GitHub] [lucene] sonatype-lift[bot] commented on a change in pull request #536: Don't store graph offsets for HNSW graph

2021-12-12 Thread GitBox
sonatype-lift[bot] commented on a change in pull request #536: URL: https://github.com/apache/lucene/pull/536#discussion_r767427109 ## File path: lucene/core/src/java/org/apache/lucene/codecs/lucene90/Lucene90HnswVectorsReader.java ## @@ -516,23 +494,20 @@ private void readVal

[jira] [Updated] (LUCENE-10297) Speed up medium cardinality fields with readLongs and SIMD

2021-12-12 Thread Feng Guo (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10297?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Feng Guo updated LUCENE-10297: -- Description: We introduced a bitset optimization for extremly low cardinality fields in [LUCENE-1023

[GitHub] [lucene] gf2121 commented on a change in pull request #530: LUCENE-10297: Speed up medium cardinality fields with readLongs and SIMD

2021-12-12 Thread GitBox
gf2121 commented on a change in pull request #530: URL: https://github.com/apache/lucene/pull/530#discussion_r767459420 ## File path: lucene/core/src/java/org/apache/lucene/util/bkd/Run.java ## @@ -0,0 +1,167 @@ +package org.apache.lucene.util.bkd; + +import java.io.IOException