Re: [I] Make indexwriter a mere mortal when exceptions strike [LUCENE-5987] [lucene]

2024-04-23 Thread via GitHub
rmuir closed issue #7049: Make indexwriter a mere mortal when exceptions strike [LUCENE-5987] URL: https://github.com/apache/lucene/issues/7049 -- 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 sp

Re: [I] Strange Segment State after encoutering JDK22 bug [lucene]

2024-04-23 Thread via GitHub
rmuir closed issue #13275: Strange Segment State after encoutering JDK22 bug URL: https://github.com/apache/lucene/issues/13275 -- 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.

Re: [PR] IndexWriter: Treat java.lang.Error as tragedy [lucene]

2024-04-23 Thread via GitHub
rmuir merged PR #13277: URL: https://github.com/apache/lucene/pull/13277 -- 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-unsubscr...@lucene.apach

Re: [PR] Add timeout support to AbstractVectorSimilarityQuery [lucene]

2024-04-23 Thread via GitHub
github-actions[bot] commented on PR #13285: URL: https://github.com/apache/lucene/pull/13285#issuecomment-2073696066 This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the d...@lucene.apache.org list. Thank you for your contributi

Re: [I] CheckIndex cannot "fix" indexes that have individual segments with missing or corrupt .si files because sanity checks will fail trying to read the index initially. [LUCENE-6762] [lucene]

2024-04-23 Thread via GitHub
schlm3 commented on issue #7820: URL: https://github.com/apache/lucene/issues/7820#issuecomment-2072897607 Hi, We are facing the same kind of issues with apparently missing .si files in our index folder. Getting Exceptions like these: `org.apache.lucene.index.CorruptIndexException: Un

Re: [I] Support for building materialized views using Lucene formats [lucene]

2024-04-23 Thread via GitHub
msfroh commented on issue #13188: URL: https://github.com/apache/lucene/issues/13188#issuecomment-2072834737 Wow! Adding data cube (OLAP) capabilities to Lucene could be really powerful. -- This is an automated message from the Apache Git Service. To respond to the message, please log on t

[PR] Implement Weight#count for vector values in the FieldExistsQuery [lucene]

2024-04-23 Thread via GitHub
bugmakerr opened a new pull request, #13322: URL: https://github.com/apache/lucene/pull/13322 ### Description Considering only one vector value can be indexed per doc, we can use the Float/ByteVectorValues#size method to implement Weight#count for vector values in the FieldEx

Re: [I] [DISCUSS] Identifying Gaps in Lucene’s Faceting [lucene]

2024-04-23 Thread via GitHub
stefanvodita commented on issue #12553: URL: https://github.com/apache/lucene/issues/12553#issuecomment-2072780409 Hi @sandeshkr419! I think it's a good idea to support richer aggregations at a lower level, in Lucene. If the OpenSearch community wants to migrate some of the aggregation func

Re: [I] CorruptIndexException after failed segment merge caused by No space left on device [LUCENE-9867] [lucene]

2024-04-23 Thread via GitHub
schlm3 commented on issue #10906: URL: https://github.com/apache/lucene/issues/10906#issuecomment-2072646391 We are currently facing similar kind of Index corruption with unknown reason on our product running with an integrated lucene 7.4.0. Getting exceptions like these: `org.apache

Re: [I] Suggestion about LRUQueryCache Optimization [lucene]

2024-04-23 Thread via GitHub
boicehuang commented on issue #13318: URL: https://github.com/apache/lucene/issues/13318#issuecomment-2072534011 #13306 -- 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 u

Re: [PR] Avoid SegmentTermsEnumFrame reload block. [lucene]

2024-04-23 Thread via GitHub
mikemccand commented on PR #13253: URL: https://github.com/apache/lucene/pull/13253#issuecomment-2072488466 This might be a needle-moving optimization for apps that reuse a single `TermsEnum` and seek randomly to terms, right? Because all up and down the stack of `SegmentTermsEnumFrame`s w

Re: [PR] Improve int4 compressed comparisons performance [lucene]

2024-04-23 Thread via GitHub
benwtrent commented on code in PR #13321: URL: https://github.com/apache/lucene/pull/13321#discussion_r1576351827 ## lucene/core/src/java/org/apache/lucene/codecs/lucene99/Lucene99ScalarQuantizedVectorScorer.java: ## @@ -0,0 +1,283 @@ +/* + * Licensed to the Apache Software Foun

Re: [PR] Narrow MASKS and UTF8Byte.value's type, assign MASKS by left shift in UTF32ToUTF8 [lucene]

2024-04-23 Thread via GitHub
mikemccand merged PR #13310: URL: https://github.com/apache/lucene/pull/13310 -- 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-unsubscr...@lucene.

[PR] Improve int4 compressed comparisons performance [lucene]

2024-04-23 Thread via GitHub
benwtrent opened a new pull request, #13321: URL: https://github.com/apache/lucene/pull/13321 This updates the int4 dot-product comparison to have an optimized one for when one of the vectors are compressed (the most common search case). This change actually makes the compressed search on A

Re: [PR] Remove unnecessary assert and fix comment in SegmentTermsEnumFrame [lucene]

2024-04-23 Thread via GitHub
mikemccand merged PR #13279: URL: https://github.com/apache/lucene/pull/13279 -- 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-unsubscr...@lucene.

Re: [PR] Performance improvements to use read lock to access LRUQueryCache [lucene]

2024-04-23 Thread via GitHub
boicehuang commented on code in PR #13306: URL: https://github.com/apache/lucene/pull/13306#discussion_r1576153792 ## lucene/core/src/java/org/apache/lucene/search/LRUQueryCache.java: ## @@ -177,7 +180,6 @@ public boolean test(LeafReaderContext context) { * @lucene.experimen