Re: [PR] Remove obsolete 'mappingRules' in Tokenizer tests [lucene]

2024-01-08 Thread via GitHub


sabi0 commented on code in PR #12972:
URL: https://github.com/apache/lucene/pull/12972#discussion_r1444282486


##
lucene/analysis/common/src/test/org/apache/lucene/analysis/wikipedia/TestWikipediaTokenizerFactory.java:
##
@@ -145,19 +140,17 @@ public void testBogusArguments() throws Exception {
 IllegalArgumentException expected =
 expectThrows(
 IllegalArgumentException.class,
-() -> {
-  tokenizerFactory(WIKIPEDIA, "bogusArg", 
"bogusValue").create(newAttributeFactory());
-});
+() ->
+tokenizerFactory(WIKIPEDIA, "bogusArg", "bogusValue")
+.create(newAttributeFactory()));
 assertTrue(expected.getMessage().contains("Unknown parameters"));
   }
 
   public void testIllegalArguments() throws Exception {
 IllegalArgumentException expected =
 expectThrows(
 IllegalArgumentException.class,
-() -> {

Review Comment:
   Thank you for this remark.
   I try to be rather picky about anything IntelliJ says. But sometimes the 
code I see when working on a file is further changed by `gradlew tidy`. And I 
overlooked the unfortunate line split in the above case.



-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Use Collections.addAll() instead of manual array copy and misc. code cleanups [lucene]

2024-01-08 Thread via GitHub


sabi0 commented on code in PR #12977:
URL: https://github.com/apache/lucene/pull/12977#discussion_r1444287508


##
lucene/misc/src/java/org/apache/lucene/misc/index/IndexSplitter.java:
##
@@ -67,18 +66,10 @@ public static void main(String[] args) throws Exception {
 if (args[1].equals("-l")) {
   is.listSegments();
 } else if (args[1].equals("-d")) {
-  List segs = new ArrayList<>();
-  for (int x = 2; x < args.length; x++) {
-segs.add(args[x]);
-  }
-  is.remove(segs.toArray(new String[0]));
+  is.remove(Arrays.copyOfRange(args, 2, args.length));

Review Comment:
   Thank you.



-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Remove unnecessary fields loop from extractWeightedSpanTerms() [lucene]

2024-01-08 Thread via GitHub


sabi0 commented on PR #12965:
URL: https://github.com/apache/lucene/pull/12965#issuecomment-1880698647

   I've rebased on the latest main, added the early termination check and a 
separate commit with minor cleanups.
   Please let me know if you'd like me to squash them all before the merge.


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] NullPointerException in IndexSearcher.search() when searching with SpanfirstQuery and a customized collector [lucene]

2024-01-08 Thread via GitHub


jpountz closed issue #12991: NullPointerException in IndexSearcher.search() 
when searching with SpanfirstQuery and a customized collector
URL: https://github.com/apache/lucene/issues/12991


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] NullPointerException in IndexSearcher.search() when searching with SpanfirstQuery and a customized collector [lucene]

2024-01-08 Thread via GitHub


jpountz commented on issue #12991:
URL: https://github.com/apache/lucene/issues/12991#issuecomment-1880706597

   `MyDocScoreCollector` returns `COMPLETE_NO_SCORES` in `scoreMode()`, yet 
`collect()` calls `Scorer.score()`, which is illegal.


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] Introduce Bloom Filter as non-experimental/core postings format [lucene]

2024-01-08 Thread via GitHub


jpountz commented on issue #12986:
URL: https://github.com/apache/lucene/issues/12986#issuecomment-1880750884

   I'd like to stick to the current policy that only the default codec has 
backward compatibility support. One idea would be to fold bloom filters into 
the default postings format like we did for the `Pulsing` codec (inlining 
postings in the terms dictionary when docFreq=1). One reason why I'm a bit on 
the fence about it is that this format still needs to materialize the bloom 
filter in heap at write time, while I'd like to keep heap requirements of the 
default codec as low as possible.
   
   That said, +1 to improve the bloom filter postings format to load the bloom 
filter off-heap at read time, this would be an interesting improvement.


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Remove obsolete 'mappingRules' in Tokenizer tests [lucene]

2024-01-08 Thread via GitHub


dweiss commented on code in PR #12972:
URL: https://github.com/apache/lucene/pull/12972#discussion_r140905


##
lucene/analysis/common/src/test/org/apache/lucene/analysis/wikipedia/TestWikipediaTokenizerFactory.java:
##
@@ -145,19 +140,17 @@ public void testBogusArguments() throws Exception {
 IllegalArgumentException expected =
 expectThrows(
 IllegalArgumentException.class,
-() -> {
-  tokenizerFactory(WIKIPEDIA, "bogusArg", 
"bogusValue").create(newAttributeFactory());
-});
+() ->
+tokenizerFactory(WIKIPEDIA, "bogusArg", "bogusValue")
+.create(newAttributeFactory()));
 assertTrue(expected.getMessage().contains("Unknown parameters"));
   }
 
   public void testIllegalArguments() throws Exception {
 IllegalArgumentException expected =
 expectThrows(
 IllegalArgumentException.class,
-() -> {

Review Comment:
   > I try to be rather picky about anything IntelliJ says.
   
   It's a very useful tool. But I wouldn't do automatically - many of the 
refactorings it suggests are subjective (whoever devised their code inspections 
was a human, after all). They're occasionally also wrong, introducing bugs - 
I've had that more than one time in my life (escape or visibility analysis gone 
wrong, for example).



-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Remove obsolete 'mappingRules' in Tokenizer tests [lucene]

2024-01-08 Thread via GitHub


dweiss commented on code in PR #12972:
URL: https://github.com/apache/lucene/pull/12972#discussion_r140905


##
lucene/analysis/common/src/test/org/apache/lucene/analysis/wikipedia/TestWikipediaTokenizerFactory.java:
##
@@ -145,19 +140,17 @@ public void testBogusArguments() throws Exception {
 IllegalArgumentException expected =
 expectThrows(
 IllegalArgumentException.class,
-() -> {
-  tokenizerFactory(WIKIPEDIA, "bogusArg", 
"bogusValue").create(newAttributeFactory());
-});
+() ->
+tokenizerFactory(WIKIPEDIA, "bogusArg", "bogusValue")
+.create(newAttributeFactory()));
 assertTrue(expected.getMessage().contains("Unknown parameters"));
   }
 
   public void testIllegalArguments() throws Exception {
 IllegalArgumentException expected =
 expectThrows(
 IllegalArgumentException.class,
-() -> {

Review Comment:
   > I try to be rather picky about anything IntelliJ says.
   
   It's a very useful tool. But I wouldn't apply them automatically - many of 
the refactorings it suggests are subjective (whoever devised their code 
inspections was a human, after all). They're occasionally also wrong, 
introducing bugs - I've had that more than one time in my life (escape or 
visibility analysis gone wrong, for example).



-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Cleanup and fix EscapeQuerySyntaxImpl [lucene]

2024-01-08 Thread via GitHub


dweiss commented on code in PR #12973:
URL: https://github.com/apache/lucene/pull/12973#discussion_r146785


##
lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/standard/parser/EscapeQuerySyntaxImpl.java:
##
@@ -184,7 +186,7 @@ public CharSequence escape(CharSequence text, Locale 
locale, Type type) {
* Returns a String where the escape char has been removed, or kept only 
once if there was a
* double escape.
*
-   * Supports escaped unicode characters, e. g. translates A 
to A.
+   * Supports escaped Unicode characters, e.g. translates A to 
A.

Review Comment:
   Can you check if the newer {@code xxx} markup works correctly here? Sorry, 
I'm busy at the moment. Also, I would not worry about intellij - if javadoc 
produces valid output, intellij has a bug (feel free to report it!). Escape 
sequences may be translated very early by javac lexer - I'm sure there is a way 
to escape them though.



-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Cleanup and fix EscapeQuerySyntaxImpl [lucene]

2024-01-08 Thread via GitHub


dweiss commented on code in PR #12973:
URL: https://github.com/apache/lucene/pull/12973#discussion_r146785


##
lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/standard/parser/EscapeQuerySyntaxImpl.java:
##
@@ -184,7 +186,7 @@ public CharSequence escape(CharSequence text, Locale 
locale, Type type) {
* Returns a String where the escape char has been removed, or kept only 
once if there was a
* double escape.
*
-   * Supports escaped unicode characters, e. g. translates A 
to A.
+   * Supports escaped Unicode characters, e.g. translates A to 
A.

Review Comment:
   Can you check if the newer ```{@code xxx}``` markup works correctly here? 
Sorry, I'm busy at the moment. Also, I would not worry about intellij - if 
javadoc produces valid output, intellij has a bug (feel free to report it!). 
Escape sequences may be translated very early by javac lexer - I'm sure there 
is a way to escape them though.



-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Cleanup and fix EscapeQuerySyntaxImpl [lucene]

2024-01-08 Thread via GitHub


dweiss commented on code in PR #12973:
URL: https://github.com/apache/lucene/pull/12973#discussion_r150852


##
lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/standard/parser/EscapeQuerySyntaxImpl.java:
##
@@ -184,7 +186,7 @@ public CharSequence escape(CharSequence text, Locale 
locale, Type type) {
* Returns a String where the escape char has been removed, or kept only 
once if there was a
* double escape.
*
-   * Supports escaped unicode characters, e. g. translates A 
to A.
+   * Supports escaped Unicode characters, e.g. translates A to 
A.

Review Comment:
   I think this gives you a hint on how to escape it in the source -
   https://stackoverflow.com/questions/21522770/unicode-escape-syntax-in-java
   
   Interesting, I didn't know about it.



-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Introduce workflow for stale PRs [lucene]

2024-01-08 Thread via GitHub


mikemccand merged PR #12813:
URL: https://github.com/apache/lucene/pull/12813


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] Port PR management bot from Apache Beam [lucene]

2024-01-08 Thread via GitHub


mikemccand closed issue #12796: Port PR management bot from Apache Beam
URL: https://github.com/apache/lucene/issues/12796


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Introduce workflow for stale PRs [lucene]

2024-01-08 Thread via GitHub


mikemccand commented on PR #12813:
URL: https://github.com/apache/lucene/pull/12813#issuecomment-1880816127

   Thanks @uschindler and @stefanvodita -- the latest iteration looks great -- 
the `debug-only` flag means it won't actually make any changes, just go through 
the motions.
   
   I'll merge now.


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Cleanup and fix EscapeQuerySyntaxImpl [lucene]

2024-01-08 Thread via GitHub


sabi0 commented on code in PR #12973:
URL: https://github.com/apache/lucene/pull/12973#discussion_r177534


##
lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/standard/parser/EscapeQuerySyntaxImpl.java:
##
@@ -40,105 +40,109 @@ public class EscapeQuerySyntaxImpl implements 
EscapeQuerySyntax {
 "AND", "OR", "NOT", "TO", "WITHIN", "SENTENCE", "PARAGRAPH", "INORDER"
   };
 
-  private static final CharSequence escapeChar(CharSequence str, Locale 
locale) {
-if (str == null || str.length() == 0) return str;
+  private static CharSequence escapeChar(CharSequence str, Locale locale) {
+if (str == null || str.isEmpty()) return str;
 
 CharSequence buffer = str;
 
-// regular escapable Char for terms
-for (int i = 0; i < escapableTermChars.length; i++) {
-  buffer = replaceIgnoreCase(buffer, 
escapableTermChars[i].toLowerCase(locale), "\\", locale);
+// regular escapable char for terms
+for (String escapableTermChar : escapableTermChars) {
+  buffer = escapeIgnoringCase(buffer, 
escapableTermChar.toLowerCase(locale), "\\", locale);
 }
 
-// First Character of a term as more escaping chars
-for (int i = 0; i < escapableTermExtraFirstChars.length; i++) {
-  if (buffer.charAt(0) == escapableTermExtraFirstChars[i].charAt(0)) {
-buffer = "\\" + buffer.charAt(0) + buffer.subSequence(1, 
buffer.length());
+// first char of a term as more escaping chars
+for (String escapableTermExtraFirstChar : escapableTermExtraFirstChars) {
+  if (buffer.charAt(0) == escapableTermExtraFirstChar.charAt(0)) {
+buffer = "\\" + buffer;
 break;
   }
 }
 
 return buffer;
   }
 
-  private final CharSequence escapeQuoted(CharSequence str, Locale locale) {
-if (str == null || str.length() == 0) return str;
+  private static CharSequence escapeQuoted(CharSequence str, Locale locale) {
+if (str == null || str.isEmpty()) return str;
 
 CharSequence buffer = str;
 
-for (int i = 0; i < escapableQuotedChars.length; i++) {
-  buffer = replaceIgnoreCase(buffer, 
escapableTermChars[i].toLowerCase(locale), "\\", locale);
+for (String escapableQuotedChar : escapableQuotedChars) {
+  buffer = escapeIgnoringCase(buffer, 
escapableQuotedChar.toLowerCase(locale), "\\", locale);
 }
 return buffer;
   }
 
-  private static final CharSequence escapeTerm(CharSequence term, Locale 
locale) {
-if (term == null) return term;
+  private static CharSequence escapeTerm(CharSequence term, Locale locale) {
+if (term == null || term.isEmpty()) return term;
 
-// Escape single Chars
+// escape single chars
 term = escapeChar(term, locale);
 term = escapeWhiteChar(term, locale);
 
-// Escape Parser Words
-for (int i = 0; i < escapableWordTokens.length; i++) {
-  if (escapableWordTokens[i].equalsIgnoreCase(term.toString())) return 
"\\" + term;
+// escape parser words
+for (String escapableWordToken : escapableWordTokens) {
+  if (escapableWordToken.equalsIgnoreCase(term.toString())) return "\\" + 
term;
 }
 return term;
   }
 
   /**
-   * replace with ignore case
+   * Prepend every case-insensitive occurrence of the {@code sequence1} in the 
{@code string} with
+   * the {@code escapeChar}. When the {@code sequence1} is empty, every 
character in the {@code
+   * string} is escaped.
*
-   * @param string string to get replaced
+   * @param string string to apply escaping to
* @param sequence1 the old character sequence in lowercase
-   * @param escapeChar the new character to prefix sequence1 in return string.
-   * @return the new String
+   * @param escapeChar the escape character to prefix sequence1 in the 
returned string
+   * @return CharSequence with every occurrence of {@code sequence1} prepended 
with {@code
+   * escapeChar}
*/
-  private static CharSequence replaceIgnoreCase(
+  private static CharSequence escapeIgnoringCase(
   CharSequence string, CharSequence sequence1, CharSequence escapeChar, 
Locale locale) {
 if (escapeChar == null || sequence1 == null || string == null) throw new 
NullPointerException();
 
-// empty string case
 int count = string.length();
 int sequence1Length = sequence1.length();
+
+// empty search string - escape every character
 if (sequence1Length == 0) {
-  StringBuilder result = new StringBuilder((count + 1) * 
escapeChar.length());
-  result.append(escapeChar);
+  StringBuilder result = new StringBuilder(count * (1 + 
escapeChar.length()));
   for (int i = 0; i < count; i++) {
-result.append(string.charAt(i));

Review Comment:
   The `escapeIgnoringCase` method is `private`. It is called in three places, 
all looking like this:
   ```
   for (String escapableQuotedChar : escapableQuotedChars) {
 buffer = escapeIgnoringCase(buffer, 
escapableQuotedChar.toLowerCase(locale), "\\", locale);
   }
   ```
   
   I.e.

Re: [PR] Make sure `ConcurrentApproximatePriorityQueue#poll` never returns `null` on a non-empty queue. [lucene]

2024-01-08 Thread via GitHub


jpountz commented on PR #12959:
URL: https://github.com/apache/lucene/pull/12959#issuecomment-1880832498

   I have a new iteration of this change, which now also accounts for how 
`DocumentsWriterPerThreadPool` may lock `DocumentsWriterPerThread` instances 
while they are still in the pool. I'm at 2 hours of beasting with J9 without a 
failure so far.


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Cleanup and fix EscapeQuerySyntaxImpl [lucene]

2024-01-08 Thread via GitHub


sabi0 commented on code in PR #12973:
URL: https://github.com/apache/lucene/pull/12973#discussion_r1444504974


##
lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/standard/parser/EscapeQuerySyntaxImpl.java:
##
@@ -184,7 +186,7 @@ public CharSequence escape(CharSequence text, Locale 
locale, Type type) {
* Returns a String where the escape char has been removed, or kept only 
once if there was a
* double escape.
*
-   * Supports escaped unicode characters, e. g. translates A 
to A.
+   * Supports escaped Unicode characters, e.g. translates A to 
A.

Review Comment:
   Thank you for the link. I did not know about the `\uu...` either.
   
   Unfortunately, javadoc seems to swallow all of those 'u's anyway:
   ```
   Returns a String where the escape char has been removed, 
or kept only once if there was a
double escape.
   
Supports escaped Unicode characters, e.g. translates A to 
A.
   ```
   
   The `{@code ...}` markup works the same:
   ```
   \u0041   => A
   \uu0041  => A
   \\u0041  => \\u0041
   
   {@code \u0041}   => A
   {@code \uu0041}  => A
   {@code \\u0041}  => \\u0041
   ```
   
   JDK Javadoc uses Unicode escape for the slash itself: `{@code \u005Cu0800}`:
   
https://github.com/openjdk/jdk/blob/master/src/java.base/share/classes/java/io/DataInput.java#L116



-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Introduce workflow for stale PRs [lucene]

2024-01-08 Thread via GitHub


stefanvodita commented on PR #12813:
URL: https://github.com/apache/lucene/pull/12813#issuecomment-1880875904

   Thanks Uwe for the review and Mike for merging.
   The action logs look good. #12998 disables `debug-only` and increases the 
operations budget to 500. The total [per-hour budget is 
1000](https://docs.github.com/en/rest/using-the-rest-api/rate-limits-for-the-rest-api?apiVersion=2022-11-28#primary-rate-limit-for-github_token-in-github-actions)
 and I don't think we're using it up with the other workflows on the repo.


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Reduce ArrayUtil#grow in decompress [lucene]

2024-01-08 Thread via GitHub


jpountz commented on code in PR #12996:
URL: https://github.com/apache/lucene/pull/12996#discussion_r1444536935


##
lucene/core/src/java/org/apache/lucene/codecs/lucene90/LZ4WithPresetDictCompressionMode.java:
##
@@ -128,10 +128,12 @@ public void decompress(DataInput in, int originalLength, 
int offset, int length,
   }
 
   // Read blocks that intersect with the interval we need
+  if (offsetInBlock < offset + length) {

Review Comment:
   I'd rather keep using `grow` over `growExact`. This helps make sure we don't 
keep allocating a new array in cases lengths grow in small increments.



-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Avoid reset BlockDocsEnum#freqBuffer when indexHasFreq is false [lucene]

2024-01-08 Thread via GitHub


jpountz commented on code in PR #12997:
URL: https://github.com/apache/lucene/pull/12997#discussion_r1444533812


##
lucene/core/src/java/org/apache/lucene/codecs/lucene99/Lucene99PostingsReader.java:
##
@@ -399,7 +400,9 @@ public PostingsEnum reset(IntBlockTermState termState, int 
flags) throws IOExcep
   doc = -1;
   this.needsFreq = PostingsEnum.featureRequested(flags, 
PostingsEnum.FREQS);
   this.isFreqsRead = true;
-  if (indexHasFreq == false || needsFreq == false) {
+  // if reuse, we don't consider whether the needsFreq is changed. this is 
undefined in freq().
+  // see also: BasePostingsFormatTestCase#testPostingsEnumFreqs
+  if ((indexHasFreq == false || needsFreq == false) && reuse == false) {

Review Comment:
   Do we actually need to check `reuse` here? My understanding is that there 
are 3 cases:
1. Freqs exist and they are needed. In that case, refillDocs() will make 
sure to fill this array, so we don't need to do anything here.
2. Freqs are not needed. There is nothing to do as calling 
`PostingsEnum#freq()` is undefined.
3. Freqs are needed but they don't exist. In that case we need to 
initialize this array with ones here.
   
   So it looks to me that we don't need to check the value of `reuse` and could 
change this condition to `if (indexHasFreq == false && needsFreqs)`? If you're 
saying this may be a bottleneck, we may also want to replace the for loop with 
a call to `Arrays#fill`.



-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Reduce frequencies buffer size when they are not needed [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12954:
URL: https://github.com/apache/lucene/pull/12954#issuecomment-1880898477

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Increase stale PRs action budget and mark not debug-only [lucene]

2024-01-08 Thread via GitHub


mikemccand merged PR #12998:
URL: https://github.com/apache/lucene/pull/12998


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Use growNoCopy in some places [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12951:
URL: https://github.com/apache/lucene/pull/12951#issuecomment-1880898535

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Made the UnifiedHighlighter's hasUnrecognizedQuery function processes FunctionQuery the same way as MatchAllDocsQuery and MatchNoDocsQuery queries for performance reasons. [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12938:
URL: https://github.com/apache/lucene/pull/12938#issuecomment-1880898750

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Clean up sleep in TestBackwardsCompatibility#testCreateMoreTermsIndex [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12914:
URL: https://github.com/apache/lucene/pull/12914#issuecomment-1880898867

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Fix for the bug where JapaneseReadingFormFilter cannot convert some hiragana to romaji [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12885:
URL: https://github.com/apache/lucene/pull/12885#issuecomment-1880899003

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] clean up smoketester GPG leaks [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12882:
URL: https://github.com/apache/lucene/pull/12882#issuecomment-1880899062

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Remove stale BWC tests [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12874:
URL: https://github.com/apache/lucene/pull/12874#issuecomment-1880899116

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Add Facets#getBulkSpecificValues method [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12862:
URL: https://github.com/apache/lucene/pull/12862#issuecomment-1880899290

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] [Minor] Fix the only use of java.lang.String#toLowerCase() with no Locale [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12856:
URL: https://github.com/apache/lucene/pull/12856#issuecomment-1880899436

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Fix Field.java documentation to refer to new IntField/FloatField/LongField/DoubleField #12125 [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12821:
URL: https://github.com/apache/lucene/pull/12821#issuecomment-1880899783

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Re-use information from graph traversal during exact search [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12820:
URL: https://github.com/apache/lucene/pull/12820#issuecomment-1880899839

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Reduce contention on flushControl.isFullFlush(). [lucene]

2024-01-08 Thread via GitHub


jpountz merged PR #12958:
URL: https://github.com/apache/lucene/pull/12958


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] During concurrent slice searches in IndexSearcher stop other tasks if one throws an Exception [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12756:
URL: https://github.com/apache/lucene/pull/12756#issuecomment-1880900120

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Bump release to Java 21 [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12753:
URL: https://github.com/apache/lucene/pull/12753#issuecomment-1880900224

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] [BROKEN, for reference only] concurrent hnsw [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12683:
URL: https://github.com/apache/lucene/pull/12683#issuecomment-1880900523

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] upgrade to OpenNLP 2.3.1 [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12674:
URL: https://github.com/apache/lucene/pull/12674#issuecomment-1880900643

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Add interface VectorValues to be implemented by [Float/Byte]VectorValues [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12636:
URL: https://github.com/apache/lucene/pull/12636#issuecomment-1880900898

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Fix hidden range embedded in UAX29URLEmail grammar [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12583:
URL: https://github.com/apache/lucene/pull/12583#issuecomment-1880901201

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Choose sparse values in IntTaxonomyFacets when FacetsCollector has em… [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12559:
URL: https://github.com/apache/lucene/pull/12559#issuecomment-1880901413

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Compute multiple float aggregations in one go [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12547:
URL: https://github.com/apache/lucene/pull/12547#issuecomment-1880901659

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] LockVerifyServer does not need to reuse addresses nor set accept timeout [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12535:
URL: https://github.com/apache/lucene/pull/12535#issuecomment-1880901771

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Early terminate visit BKD leaf when current value greater than upper point in sorted dim. [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12528:
URL: https://github.com/apache/lucene/pull/12528#issuecomment-1880901900

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] LUCENE-4056: Japanese Tokenizer (Kuromoji) cannot build UniDic dictionary [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12517:
URL: https://github.com/apache/lucene/pull/12517#issuecomment-1880902132

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Add Option to Set Subtoken Position Increment for Dictonary Decompounder [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12478:
URL: https://github.com/apache/lucene/pull/12478#issuecomment-1880902498

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Allow reading binary doc values as a DataInput [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12460:
URL: https://github.com/apache/lucene/pull/12460#issuecomment-1880902629

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Fix docFreq in score calculation after rewrite of boolean query consisting of blended query and boosted term query [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12354:
URL: https://github.com/apache/lucene/pull/12354#issuecomment-1880902826

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Improve error message if codec not found. This fixes #12300 [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12301:
URL: https://github.com/apache/lucene/pull/12301#issuecomment-1880903041

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Fix broken testAllVersionHaveCfsAndNocfs() [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12969:
URL: https://github.com/apache/lucene/pull/12969#issuecomment-1880898293

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Reduce duplication in taxonomy facets; always do counts [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12966:
URL: https://github.com/apache/lucene/pull/12966#issuecomment-1880898351

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Reduce contention on flushControl.isFullFlush(). [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12958:
URL: https://github.com/apache/lucene/pull/12958#issuecomment-1880898432

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Replace usage of deprecated size() with length() in ByteBuffersDataInput [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12948:
URL: https://github.com/apache/lucene/pull/12948#issuecomment-1880898585

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Update int array growth calls [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12947:
URL: https://github.com/apache/lucene/pull/12947#issuecomment-1880898629

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Improve exception handling for readLongs/readInts/readFloats in ByteBufferIndexInput [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12944:
URL: https://github.com/apache/lucene/pull/12944#issuecomment-1880898688

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Add new token filters for Japanese sutegana (捨て仮名) [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12915:
URL: https://github.com/apache/lucene/pull/12915#issuecomment-1880898815

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] fix FragEnd bug in BaseFragmentsBuilder [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #1:
URL: https://github.com/apache/lucene/pull/1#issuecomment-1880903470

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] [GITHUB-11915] Make Lucene smarter about long runs of matches via new API on DISI [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12194:
URL: https://github.com/apache/lucene/pull/12194#issuecomment-1880903582

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Bump Yetus version to 0.15.0 [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12886:
URL: https://github.com/apache/lucene/pull/12886#issuecomment-1880898952

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Add LatLonField class to index both LatLonPoint and LatLonDocValues [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12162:
URL: https://github.com/apache/lucene/pull/12162#issuecomment-1880903680

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Try using Murmurhash 3 for bloom filters [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12868:
URL: https://github.com/apache/lucene/pull/12868#issuecomment-1880899237

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] add similarity threshold for hnsw [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #11946:
URL: https://github.com/apache/lucene/pull/11946#issuecomment-1880904151

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Simplifying text area stream in Luke- ticket 12809 [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12869:
URL: https://github.com/apache/lucene/pull/12869#issuecomment-1880899184

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Create shared method for creating view buffers in ByteBufferIndexInput [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #11992:
URL: https://github.com/apache/lucene/pull/11992#issuecomment-1880904047

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Remove synchronization from OpenNLP integration and add thread-safety tests(checkRandomData) [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #11955:
URL: https://github.com/apache/lucene/pull/11955#issuecomment-1880904102

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] GH#11922: Allow DisjunctionDISIApproximation to short-circuit [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #11928:
URL: https://github.com/apache/lucene/pull/11928#issuecomment-1880904217

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] [Fix] Binary search the entries when all suffixes have the same length in a leaf block. [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #11888:
URL: https://github.com/apache/lucene/pull/11888#issuecomment-1880904269

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Add simple tool to diff entries in lucene's CHANGES.txt that should be identical [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12860:
URL: https://github.com/apache/lucene/pull/12860#issuecomment-1880899340

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Reuse BitSet when there are deleted documents in the index instead of creating new BitSet [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12857:
URL: https://github.com/apache/lucene/pull/12857#issuecomment-1880899377

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Use group-varint encode the positions [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12842:
URL: https://github.com/apache/lucene/pull/12842#issuecomment-1880899578

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Improve set deletions percentage javadoc [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12828:
URL: https://github.com/apache/lucene/pull/12828#issuecomment-1880899727

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Log number of visited nodes in knn query [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12819:
URL: https://github.com/apache/lucene/pull/12819#issuecomment-1880899899

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Generalize LSBRadixSorter and use it in SortingPostingsEnum [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12800:
URL: https://github.com/apache/lucene/pull/12800#issuecomment-1880899961

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] NeighborArray is now fixed size [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #11784:
URL: https://github.com/apache/lucene/pull/11784#issuecomment-1880904342

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Copy collected acc(maxFreqs) into empty acc, rather than merge them. [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12846:
URL: https://github.com/apache/lucene/pull/12846#issuecomment-1880899505

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] GITHUB#11728: Improve code clarity for OrdinalMap [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #11729:
URL: https://github.com/apache/lucene/pull/11729#issuecomment-1880904411

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Avoid generating invalid test polygons [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12757:
URL: https://github.com/apache/lucene/pull/12757#issuecomment-1880900035

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Simplify advancing on postings/impacts enums [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12838:
URL: https://github.com/apache/lucene/pull/12838#issuecomment-1880899639

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] LUCENE-10634: Speed up WANDScorer. [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #999:
URL: https://github.com/apache/lucene/pull/999#issuecomment-1880904576

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Optimize: Use DocIdSetIterator Reduce bkd docvalues iteration [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12723:
URL: https://github.com/apache/lucene/pull/12723#issuecomment-1880900334

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] LUCENE-10366: Override #readVInt and #readVLong for ByteBufferDataInput to avoid the abstraction confusion of #readByte. [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #592:
URL: https://github.com/apache/lucene/pull/592#issuecomment-1880905117

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Explicitly return needStats flag in TermStates [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12638:
URL: https://github.com/apache/lucene/pull/12638#issuecomment-1880900780

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Lucene-10334: Detected warm up of directreader [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #570:
URL: https://github.com/apache/lucene/pull/570#issuecomment-1880905163

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Override `normalize` method in the `PatternReplaceFilterFactory` [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12613:
URL: https://github.com/apache/lucene/pull/12613#issuecomment-1880901049

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Improve refresh speed with softdelete enable [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12557:
URL: https://github.com/apache/lucene/pull/12557#issuecomment-1880901540

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Speed up disjunctions by computing estimations of the score of the k-th top hit up-front. [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12526:
URL: https://github.com/apache/lucene/pull/12526#issuecomment-1880902026

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Reduce SegmentTermsEnumFrame Object Construction [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12509:
URL: https://github.com/apache/lucene/pull/12509#issuecomment-1880902251

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Fix onlyLongestMatch in DictionaryCompoundWordTokenFilter [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12485:
URL: https://github.com/apache/lucene/pull/12485#issuecomment-1880902372

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Index arbitrary fields in taxonomy docs [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12337:
URL: https://github.com/apache/lucene/pull/12337#issuecomment-1880902960

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Fix a bug in ShapeTestUtil [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12287:
URL: https://github.com/apache/lucene/pull/12287#issuecomment-1880903143

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Use `instanceof` pattern-matching where possible [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12295:
URL: https://github.com/apache/lucene/pull/12295#issuecomment-1880903091

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Avoid Redundant Loop for Checking Array Element Equality [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12262:
URL: https://github.com/apache/lucene/pull/12262#issuecomment-1880903226

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Exclude words ending in -ion from Swedish minimal and light stemmers. [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12247:
URL: https://github.com/apache/lucene/pull/12247#issuecomment-1880903343

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Change offset to start when data is all equals in StoredFieldsInts.java [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12258:
URL: https://github.com/apache/lucene/pull/12258#issuecomment-1880903287

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] simplify PrefixQuery to avoid requiring Automaton [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12207:
URL: https://github.com/apache/lucene/pull/12207#issuecomment-1880903543

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Add Romanian stopwords with s&t with comma [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12172:
URL: https://github.com/apache/lucene/pull/12172#issuecomment-1880903620

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Reproduce multi-word synonym regression (SOLR-16652) [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12157:
URL: https://github.com/apache/lucene/pull/12157#issuecomment-1880903735

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Avoid duplicate sorting in KeywordField#newSetQuery (alternative approach) [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12141:
URL: https://github.com/apache/lucene/pull/12141#issuecomment-1880903779

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Avoid duplicate sorting in KeywordField#newSetQuery [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12135:
URL: https://github.com/apache/lucene/pull/12135#issuecomment-1880903859

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Remove redundant code in Lucene search [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12035:
URL: https://github.com/apache/lucene/pull/12035#issuecomment-1880903973

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Deduplicate ensureValidMerge check [lucene]

2024-01-08 Thread via GitHub


github-actions[bot] commented on PR #12237:
URL: https://github.com/apache/lucene/pull/12237#issuecomment-1880903404

   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 contribution!


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



  1   2   >