[jira] [Created] (LUCENE-10588) Make Luke launching code faster

2022-05-23 Thread Tomoko Uchida (Jira)
Tomoko Uchida created LUCENE-10588: -- Summary: Make Luke launching code faster Key: LUCENE-10588 URL: https://issues.apache.org/jira/browse/LUCENE-10588 Project: Lucene - Core Issue Type: Imp

[GitHub] [lucene] mocobeta commented on pull request #917: LUCENE-10531: Disable distribution test (gui test) on windows.

2022-05-23 Thread GitBox
mocobeta commented on PR #917: URL: https://github.com/apache/lucene/pull/917#issuecomment-1134306924 > One change I think we could try is to run the forked command with a higher priority Thanks for your suggestion; we could try this workaround though, I feel like it'd be better to k

[GitHub] [lucene] shaie merged pull request #919: Update dev-docs

2022-05-23 Thread GitBox
shaie merged PR #919: URL: https://github.com/apache/lucene/pull/919 -- 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.or

[GitHub] [lucene] romseygeek commented on pull request #909: LUCENE-10370: pass proper classpath/module arguments for forking jvms from within tests

2022-05-23 Thread GitBox
romseygeek commented on PR #909: URL: https://github.com/apache/lucene/pull/909#issuecomment-1134360770 Hiya, this is making the elasticsearch CI cross; all builds are failing with this message: ``` * Where: 08:09:37 Script '/var/lib/jenkins/workspace/apache+lucene+main/gradle/java

[GitHub] [lucene] romseygeek commented on pull request #909: LUCENE-10370: pass proper classpath/module arguments for forking jvms from within tests

2022-05-23 Thread GitBox
romseygeek commented on PR #909: URL: https://github.com/apache/lucene/pull/909#issuecomment-1134364141 Aha, and it's failing locally for me as well. I'll see if I can work out where the issue is! -- This is an automated message from the Apache Git Service. To respond to the message, ple

[GitHub] [lucene] dweiss commented on pull request #909: LUCENE-10370: pass proper classpath/module arguments for forking jvms from within tests

2022-05-23 Thread GitBox
dweiss commented on PR #909: URL: https://github.com/apache/lucene/pull/909#issuecomment-1134368823 Hi Alan. Is the Lucene build failing for you locally? -- 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

[GitHub] [lucene] romseygeek commented on pull request #909: LUCENE-10370: pass proper classpath/module arguments for forking jvms from within tests

2022-05-23 Thread GitBox
romseygeek commented on PR #909: URL: https://github.com/apache/lucene/pull/909#issuecomment-1134370810 Hey Dawid, yes I get local failures if I run `./gradlew clean check`. ``` * Where: Script '/Users/romseygeek/projects/lucene/gradle/java/modules.gradle' line: 215 * Wha

[GitHub] [lucene] dweiss commented on pull request #909: LUCENE-10370: pass proper classpath/module arguments for forking jvms from within tests

2022-05-23 Thread GitBox
dweiss commented on PR #909: URL: https://github.com/apache/lucene/pull/909#issuecomment-1134373557 No. I think it's the parent path that is missing here. -- 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 t

[GitHub] [lucene] dweiss commented on pull request #909: LUCENE-10370: pass proper classpath/module arguments for forking jvms from within tests

2022-05-23 Thread GitBox
dweiss commented on PR #909: URL: https://github.com/apache/lucene/pull/909#issuecomment-1134374008 try Files.createDirectories(forkProperties.toPath().getParent()); -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the

[GitHub] [lucene] dweiss commented on pull request #909: LUCENE-10370: pass proper classpath/module arguments for forking jvms from within tests

2022-05-23 Thread GitBox
dweiss commented on PR #909: URL: https://github.com/apache/lucene/pull/909#issuecomment-1134375202 I know why you're getting it. clean executes after configuration and wipes the temporary task directory for test. We'll have to recreate it properly. I'll commit a fix soon. -- This is an

[GitHub] [lucene] romseygeek commented on pull request #909: LUCENE-10370: pass proper classpath/module arguments for forking jvms from within tests

2022-05-23 Thread GitBox
romseygeek commented on PR #909: URL: https://github.com/apache/lucene/pull/909#issuecomment-1134378224 Can confirm that adding the `createDirectories` line before the `writeString` fixes the problem. Thanks! -- This is an automated message from the Apache Git Service. To respond to the

[GitHub] [lucene] uschindler commented on pull request #909: LUCENE-10370: pass proper classpath/module arguments for forking jvms from within tests

2022-05-23 Thread GitBox
uschindler commented on PR #909: URL: https://github.com/apache/lucene/pull/909#issuecomment-1134378329 Yes, your Jenkins seems to call `gradlew clean test`, too, so this is failing. On ASF and Policeman Jenkins we do not do this, so it passes. Jenkins on my managed Jenkins instances

[jira] [Commented] (LUCENE-10574) Remove O(n^2) from TieredMergePolicy or change defaults to one that doesn't do this

2022-05-23 Thread Adrien Grand (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10574?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17540835#comment-17540835 ] Adrien Grand commented on LUCENE-10574: --- The stored fields benchmark aimed at rep

[jira] [Commented] (LUCENE-10370) Fix classpath/module path of tests forking their own Java (TestNRTReplication)

2022-05-23 Thread ASF subversion and git services (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10370?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17540836#comment-17540836 ] ASF subversion and git services commented on LUCENE-10370: -- Co

[jira] [Commented] (LUCENE-10370) Fix classpath/module path of tests forking their own Java (TestNRTReplication)

2022-05-23 Thread ASF subversion and git services (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10370?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17540837#comment-17540837 ] ASF subversion and git services commented on LUCENE-10370: -- Co

[GitHub] [lucene] dweiss commented on pull request #909: LUCENE-10370: pass proper classpath/module arguments for forking jvms from within tests

2022-05-23 Thread GitBox
dweiss commented on PR #909: URL: https://github.com/apache/lucene/pull/909#issuecomment-1134379491 I've committed a fix. -- 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

[GitHub] [lucene] romseygeek commented on pull request #909: LUCENE-10370: pass proper classpath/module arguments for forking jvms from within tests

2022-05-23 Thread GitBox
romseygeek commented on PR #909: URL: https://github.com/apache/lucene/pull/909#issuecomment-1134383958 Thanks Dawid! -- 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 uns

[jira] [Created] (LUCENE-10589) Fix corner case in TestKnnVectorQuery.testRandomWithFilter

2022-05-23 Thread Tomoko Uchida (Jira)
Tomoko Uchida created LUCENE-10589: -- Summary: Fix corner case in TestKnnVectorQuery.testRandomWithFilter Key: LUCENE-10589 URL: https://issues.apache.org/jira/browse/LUCENE-10589 Project: Lucene - Cor

[GitHub] [lucene] mocobeta opened a new pull request, #920: LUCENE-10589: increase upper bound of test range query to the maximum value + 1

2022-05-23 Thread GitBox
mocobeta opened a new pull request, #920: URL: https://github.com/apache/lucene/pull/920 This is a small tweak for `TestKnnVectorQuery.testRandomWithFilter()`. See https://issues.apache.org/jira/browse/LUCENE-10589. On main: ``` ./gradlew test --tests TestKnnVectorQuery.te

[jira] [Commented] (LUCENE-10589) Fix corner case in TestKnnVectorQuery.testRandomWithFilter

2022-05-23 Thread Dawid Weiss (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10589?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17540935#comment-17540935 ] Dawid Weiss commented on LUCENE-10589: -- I don't know anything about this code area

[GitHub] [lucene] mocobeta commented on pull request #920: LUCENE-10589: increase upper bound of test range query to the maximum value + 1

2022-05-23 Thread GitBox
mocobeta commented on PR #920: URL: https://github.com/apache/lucene/pull/920#issuecomment-1134641142 It looks like the test can be tweaked not to fall into the corner cases but I'm not fully sure if this is correct - is there a better way to fix it? -- This is an automated message from t

[GitHub] [lucene] jpountz opened a new pull request, #921: LUCENE-10078: Enable merge-on-refresh by default.

2022-05-23 Thread GitBox
jpountz opened a new pull request, #921: URL: https://github.com/apache/lucene/pull/921 This gives implementations of `findFullFlushMerges` to `LogMergePolicy` and `TieredMergePolicy` and enables merge-on-refresh with a default timeout of 500ms. The idea behind the 500ms default

[jira] [Commented] (LUCENE-10589) Fix corner case in TestKnnVectorQuery.testRandomWithFilter

2022-05-23 Thread Tomoko Uchida (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10589?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17540950#comment-17540950 ] Tomoko Uchida commented on LUCENE-10589: You’re welcome - debugging this was a

[GitHub] [lucene] rmuir merged pull request #901: remove commented-out/obselete AwaitsFix

2022-05-23 Thread GitBox
rmuir merged PR #901: URL: https://github.com/apache/lucene/pull/901 -- 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.or

[jira] [Commented] (LUCENE-10229) Match offsets should be consistent for fields with positions and fields with offsets

2022-05-23 Thread ASF subversion and git services (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10229?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17540955#comment-17540955 ] ASF subversion and git services commented on LUCENE-10229: -- Co

[jira] [Commented] (LUCENE-10229) Match offsets should be consistent for fields with positions and fields with offsets

2022-05-23 Thread ASF subversion and git services (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10229?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17540961#comment-17540961 ] ASF subversion and git services commented on LUCENE-10229: -- Co

[jira] [Commented] (LUCENE-10078) Enable merge-on-refresh by default?

2022-05-23 Thread Adrien Grand (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10078?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17540979#comment-17540979 ] Adrien Grand commented on LUCENE-10078: --- We had discussions about this in the con

[GitHub] [lucene] mocobeta commented on pull request #918: LUCENE-10586: Minor cleanup for local variables in BlockTreeTermsReader

2022-05-23 Thread GitBox
mocobeta commented on PR #918: URL: https://github.com/apache/lucene/pull/918#issuecomment-1134773996 Thanks @mikemccand for confirming this. I'll keep this open for a few more days for others to review it. -- This is an automated message from the Apache Git Service. To respond to the m

[jira] [Commented] (LUCENE-10586) Minor refactoring in Lucene90BlockTreeTermsReader local variables: metaIn, indexMetaIn, termsMetaIn

2022-05-23 Thread Adrien Grand (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10586?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17540996#comment-17540996 ] Adrien Grand commented on LUCENE-10586: --- +1 The reason is historical indeed. The

[GitHub] [lucene] msokolov commented on pull request #920: LUCENE-10589: increase upper bound of test range query to the maximum value + 1

2022-05-23 Thread GitBox
msokolov commented on PR #920: URL: https://github.com/apache/lucene/pull/920#issuecomment-1134805154 I suspect what's happening is RandomIndexWriter is causing some very small segment to be written, and within that segment the query *is* highly selective causing us to fall back to brute fo

[jira] [Commented] (LUCENE-8519) MultiDocValues.getNormValues should not call getMergedFieldInfos

2022-05-23 Thread Rushabh Shah (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-8519?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17541000#comment-17541000 ] Rushabh Shah commented on LUCENE-8519: -- [~dsmiley] Thank you for the review and the

[jira] [Created] (LUCENE-10590) Indexing all zero vectors leads to heat death of the universe

2022-05-23 Thread Michael Sokolov (Jira)
Michael Sokolov created LUCENE-10590: Summary: Indexing all zero vectors leads to heat death of the universe Key: LUCENE-10590 URL: https://issues.apache.org/jira/browse/LUCENE-10590 Project: Luce

[GitHub] [lucene] rmuir commented on a diff in pull request #916: Refine contribution guide and pull request template

2022-05-23 Thread GitBox
rmuir commented on code in PR #916: URL: https://github.com/apache/lucene/pull/916#discussion_r879605545 ## CONTRIBUTING.md: ## @@ -78,8 +78,11 @@ Please be patient. Committers are busy people too. If no one responds to your pa Please refer to [GitHub's documentation](https

[GitHub] [lucene] mocobeta commented on pull request #920: LUCENE-10589: increase upper bound of test range query to the maximum value + 1

2022-05-23 Thread GitBox
mocobeta commented on PR #920: URL: https://github.com/apache/lucene/pull/920#issuecomment-1134837438 According to the javadocs of the test, using a randomly skewed index with RandomIndexWriter is an intentional choice I think? ``` /** Tests with random vectors and a random filter. Us

[GitHub] [lucene] msokolov commented on pull request #920: LUCENE-10589: increase upper bound of test range query to the maximum value + 1

2022-05-23 Thread GitBox
msokolov commented on PR #920: URL: https://github.com/apache/lucene/pull/920#issuecomment-1134842970 Yeah, I'm just not sure that all the implications are desirable for this test. For example if we have a segment with 5 docs, their "tags" might all be > the threshold of the filter? -- T

[GitHub] [lucene] mocobeta commented on a diff in pull request #916: Refine contribution guide and pull request template

2022-05-23 Thread GitBox
mocobeta commented on code in PR #916: URL: https://github.com/apache/lucene/pull/916#discussion_r879634562 ## CONTRIBUTING.md: ## @@ -78,8 +78,11 @@ Please be patient. Committers are busy people too. If no one responds to your pa Please refer to [GitHub's documentation](ht

[GitHub] [lucene] shahrs87 commented on a diff in pull request #897: LUCENE-10266 Move nearest-neighbor search on points to core

2022-05-23 Thread GitBox
shahrs87 commented on code in PR #897: URL: https://github.com/apache/lucene/pull/897#discussion_r879640507 ## lucene/core/src/java/org/apache/lucene/document/LatLonPoint.java: ## @@ -362,4 +377,72 @@ public static Query newDistanceFeatureQuery( } return query; } +

[GitHub] [lucene] shahrs87 commented on a diff in pull request #897: LUCENE-10266 Move nearest-neighbor search on points to core

2022-05-23 Thread GitBox
shahrs87 commented on code in PR #897: URL: https://github.com/apache/lucene/pull/897#discussion_r879640718 ## lucene/core/src/java/org/apache/lucene/search/NearestNeighbor.java: ## @@ -31,12 +31,8 @@ import org.apache.lucene.util.Bits; import org.apache.lucene.util.SloppyMath

[GitHub] [lucene] shahrs87 commented on pull request #897: LUCENE-10266 Move nearest-neighbor search on points to core

2022-05-23 Thread GitBox
shahrs87 commented on PR #897: URL: https://github.com/apache/lucene/pull/897#issuecomment-1134875992 @jpountz Thank you for the feedback. I have addressed your comments in the latest revision. I have one question. To make changes in the CHANGES.txt file, will this change go in `API change

[jira] [Commented] (LUCENE-10590) Indexing all zero vectors leads to heat death of the universe

2022-05-23 Thread Dawid Weiss (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10590?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17541100#comment-17541100 ] Dawid Weiss commented on LUCENE-10590: -- Love the title, [~sokolov]. Very Douglas-y

[GitHub] [lucene] Yuti-G commented on a diff in pull request #915: LUCENE-10585: Scrub copy/paste code in the facets module and attempt to simplify a bit

2022-05-23 Thread GitBox
Yuti-G commented on code in PR #915: URL: https://github.com/apache/lucene/pull/915#discussion_r879786369 ## lucene/facet/src/java/org/apache/lucene/facet/sortedset/AbstractSortedSetDocValueFacetCounts.java: ## @@ -0,0 +1,333 @@ +/* + * Licensed to the Apache Software Foundation

[GitHub] [lucene] Yuti-G commented on pull request #915: LUCENE-10585: Scrub copy/paste code in the facets module and attempt to simplify a bit

2022-05-23 Thread GitBox
Yuti-G commented on PR #915: URL: https://github.com/apache/lucene/pull/915#issuecomment-1135050190 Hi @gsmiller, thanks for making a lot of improvements to the code, and it looks great to me! I also ran the benchmarks for facet and do not observe much difference from the main branch. I add

[GitHub] [lucene] gsmiller commented on a diff in pull request #841: LUCENE-10274: Add hyperrectangle faceting capabilities

2022-05-23 Thread GitBox
gsmiller commented on code in PR #841: URL: https://github.com/apache/lucene/pull/841#discussion_r879866385 ## lucene/facet/src/java/org/apache/lucene/facet/hyperrectangle/HyperRectangleFacetCounts.java: ## @@ -0,0 +1,149 @@ +/* + * Licensed to the Apache Software Foundation (AS

[GitHub] [lucene] gsmiller commented on a diff in pull request #841: LUCENE-10274: Add hyperrectangle faceting capabilities

2022-05-23 Thread GitBox
gsmiller commented on code in PR #841: URL: https://github.com/apache/lucene/pull/841#discussion_r879869751 ## lucene/facet/src/java/org/apache/lucene/facet/hyperrectangle/LongPointFacetField.java: ## @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) unde

[GitHub] [lucene] gsmiller commented on a diff in pull request #841: LUCENE-10274: Add hyperrectangle faceting capabilities

2022-05-23 Thread GitBox
gsmiller commented on code in PR #841: URL: https://github.com/apache/lucene/pull/841#discussion_r879870847 ## lucene/facet/src/java/org/apache/lucene/facet/hyperrectangle/HyperRectangle.java: ## @@ -0,0 +1,101 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under on

[GitHub] [lucene] gsmiller commented on a diff in pull request #841: LUCENE-10274: Add hyperrectangle faceting capabilities

2022-05-23 Thread GitBox
gsmiller commented on code in PR #841: URL: https://github.com/apache/lucene/pull/841#discussion_r879871471 ## lucene/facet/src/java/org/apache/lucene/facet/hyperrectangle/HyperRectangleFacetCounts.java: ## @@ -0,0 +1,149 @@ +/* + * Licensed to the Apache Software Foundation (AS

[jira] [Commented] (LUCENE-10590) Indexing all zero vectors leads to heat death of the universe

2022-05-23 Thread Michael Sokolov (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10590?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17541180#comment-17541180 ] Michael Sokolov commented on LUCENE-10590: -- > Love the title, Michael Sokolov.

[GitHub] [lucene] jtibshirani commented on pull request #920: LUCENE-10589: increase upper bound of test range query to the maximum value + 1

2022-05-23 Thread GitBox
jtibshirani commented on PR #920: URL: https://github.com/apache/lucene/pull/920#issuecomment-1135164651 Thank you @mocobeta for looking into this! I don't think the failure is caused having multiple segments, since we make sure to force merge to one segment before starting the searches. St

[jira] [Commented] (LUCENE-10590) Indexing all zero vectors leads to heat death of the universe

2022-05-23 Thread Julie Tibshirani (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10590?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17541185#comment-17541185 ] Julie Tibshirani commented on LUCENE-10590: --- I don't have a deep understandin

[jira] [Commented] (LUCENE-10590) Indexing all zero vectors leads to heat death of the universe

2022-05-23 Thread Michael Sokolov (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10590?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17541193#comment-17541193 ] Michael Sokolov commented on LUCENE-10590: -- Thanks Julie, this is definitely t

[jira] [Comment Edited] (LUCENE-10590) Indexing all zero vectors leads to heat death of the universe

2022-05-23 Thread Julie Tibshirani (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10590?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17541185#comment-17541185 ] Julie Tibshirani edited comment on LUCENE-10590 at 5/23/22 10:26 PM:

[jira] [Comment Edited] (LUCENE-10590) Indexing all zero vectors leads to heat death of the universe

2022-05-23 Thread Julie Tibshirani (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10590?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17541185#comment-17541185 ] Julie Tibshirani edited comment on LUCENE-10590 at 5/23/22 10:26 PM:

[GitHub] [lucene] mocobeta commented on a diff in pull request #916: Refine contribution guide and pull request template

2022-05-23 Thread GitBox
mocobeta commented on code in PR #916: URL: https://github.com/apache/lucene/pull/916#discussion_r879964992 ## CONTRIBUTING.md: ## @@ -78,8 +78,11 @@ Please be patient. Committers are busy people too. If no one responds to your pa Please refer to [GitHub's documentation](ht

[GitHub] [lucene] mocobeta commented on a diff in pull request #916: Refine contribution guide and pull request template

2022-05-23 Thread GitBox
mocobeta commented on code in PR #916: URL: https://github.com/apache/lucene/pull/916#discussion_r879967339 ## CONTRIBUTING.md: ## @@ -78,8 +78,11 @@ Please be patient. Committers are busy people too. If no one responds to your pa Please refer to [GitHub's documentation](ht

[jira] [Updated] (LUCENE-10590) Indexing all zero vectors leads to heat death of the universe

2022-05-23 Thread Lu Xugang (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10590?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Lu Xugang updated LUCENE-10590: --- Attachment: image.png > Indexing all zero vectors leads to heat death of the universe > ---

[jira] [Updated] (LUCENE-10590) Indexing all zero vectors leads to heat death of the universe

2022-05-23 Thread Lu Xugang (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10590?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Lu Xugang updated LUCENE-10590: --- Attachment: (was: image.png) > Indexing all zero vectors leads to heat death of the universe >

[jira] [Commented] (LUCENE-10559) Add preFilter/postFilter options to KnnGraphTester

2022-05-23 Thread Kaival Parikh (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10559?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17541282#comment-17541282 ] Kaival Parikh commented on LUCENE-10559: The graph construction parameters were

[GitHub] [lucene] mocobeta commented on pull request #916: Refine contribution guide and pull request template

2022-05-23 Thread GitBox
mocobeta commented on PR #916: URL: https://github.com/apache/lucene/pull/916#issuecomment-1135442476 Thank you @rmuir for reviewing. I'd merge this - let's restart from a blank sheet (all necessary information should be written in the contribution guide), but if anyone has suggestion

[GitHub] [lucene] mocobeta merged pull request #916: Refine contribution guide and pull request template

2022-05-23 Thread GitBox
mocobeta merged PR #916: URL: https://github.com/apache/lucene/pull/916 -- 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

[GitHub] [lucene] mocobeta merged pull request #918: LUCENE-10586: Minor cleanup for local variables in BlockTreeTermsReader

2022-05-23 Thread GitBox
mocobeta merged PR #918: URL: https://github.com/apache/lucene/pull/918 -- 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

[jira] [Commented] (LUCENE-10586) Minor refactoring in Lucene90BlockTreeTermsReader local variables: metaIn, indexMetaIn, termsMetaIn

2022-05-23 Thread ASF subversion and git services (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10586?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17541290#comment-17541290 ] ASF subversion and git services commented on LUCENE-10586: -- Co

[jira] [Commented] (LUCENE-10586) Minor refactoring in Lucene90BlockTreeTermsReader local variables: metaIn, indexMetaIn, termsMetaIn

2022-05-23 Thread ASF subversion and git services (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10586?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17541292#comment-17541292 ] ASF subversion and git services commented on LUCENE-10586: -- Co