[GitHub] [lucene] zhaih commented on a change in pull request #225: LUCENE-10010 Introduce NFARunAutomaton to run NFA directly

2021-10-07 Thread GitBox
zhaih commented on a change in pull request #225: URL: https://github.com/apache/lucene/pull/225#discussion_r724698226 ## File path: lucene/backward-codecs/src/java/org/apache/lucene/backward_codecs/lucene40/blocktree/FieldReader.java ## @@ -187,6 +187,14 @@ public TermsEnum

[GitHub] [lucene] zhaih commented on a change in pull request #225: LUCENE-10010 Introduce NFARunAutomaton to run NFA directly

2021-10-07 Thread GitBox
zhaih commented on a change in pull request #225: URL: https://github.com/apache/lucene/pull/225#discussion_r724698226 ## File path: lucene/backward-codecs/src/java/org/apache/lucene/backward_codecs/lucene40/blocktree/FieldReader.java ## @@ -187,6 +187,14 @@ public TermsEnum

[GitHub] [lucene] zhaih commented on a change in pull request #225: LUCENE-10010 Introduce NFARunAutomaton to run NFA directly

2021-10-07 Thread GitBox
zhaih commented on a change in pull request #225: URL: https://github.com/apache/lucene/pull/225#discussion_r724697716 ## File path: lucene/codecs/src/java/org/apache/lucene/codecs/memory/DirectPostingsFormat.java ## @@ -962,15 +964,22 @@ public ImpactsEnum impacts(int flags)

[GitHub] [lucene] zhaih commented on a change in pull request #225: LUCENE-10010 Introduce NFARunAutomaton to run NFA directly

2021-10-07 Thread GitBox
zhaih commented on a change in pull request #225: URL: https://github.com/apache/lucene/pull/225#discussion_r724695583 ## File path: lucene/core/src/test/org/apache/lucene/util/automaton/TestNFARunAutomaton.java ## @@ -0,0 +1,188 @@ +/* + * Licensed to the Apache Software

[GitHub] [lucene] zhaih commented on a change in pull request #225: LUCENE-10010 Introduce NFARunAutomaton to run NFA directly

2021-10-07 Thread GitBox
zhaih commented on a change in pull request #225: URL: https://github.com/apache/lucene/pull/225#discussion_r724695030 ## File path: lucene/core/src/java/org/apache/lucene/search/AutomatonQuery.java ## @@ -65,7 +66,19 @@ * @param automaton Automaton to run, terms that are

[GitHub] [lucene] zhaih commented on a change in pull request #225: LUCENE-10010 Introduce NFARunAutomaton to run NFA directly

2021-10-07 Thread GitBox
zhaih commented on a change in pull request #225: URL: https://github.com/apache/lucene/pull/225#discussion_r724693503 ## File path: lucene/core/src/java/org/apache/lucene/util/automaton/RegExp.java ## @@ -551,12 +551,22 @@ static RegExp newLeafNode( return new

[jira] [Commented] (LUCENE-5572) JapaneseTokenizer is sensitive to interrupts

2021-10-07 Thread Trejkaz (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-5572?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17425928#comment-17425928 ] Trejkaz commented on LUCENE-5572: - Note: The answer may in fact be Java, in which case I will take the

[jira] [Comment Edited] (LUCENE-5572) JapaneseTokenizer is sensitive to interrupts

2021-10-07 Thread Trejkaz (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-5572?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17425927#comment-17425927 ] Trejkaz edited comment on LUCENE-5572 at 10/8/21, 3:00 AM: --- A GUI application

[jira] [Commented] (LUCENE-5572) JapaneseTokenizer is sensitive to interrupts

2021-10-07 Thread Trejkaz (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-5572?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17425927#comment-17425927 ] Trejkaz commented on LUCENE-5572: - A GUI application running outside our context is interrupting the

[GitHub] [lucene] zhaih commented on a change in pull request #225: LUCENE-10010 Introduce NFARunAutomaton to run NFA directly

2021-10-07 Thread GitBox
zhaih commented on a change in pull request #225: URL: https://github.com/apache/lucene/pull/225#discussion_r724613434 ## File path: lucene/core/src/java/org/apache/lucene/util/automaton/ByteRunnable.java ## @@ -0,0 +1,66 @@ +/* + * Licensed to the Apache Software Foundation

[GitHub] [lucene] zhaih commented on pull request #346: LUCENE-10103 Make QueryCache respect Accountable queries

2021-10-07 Thread GitBox
zhaih commented on pull request #346: URL: https://github.com/apache/lucene/pull/346#issuecomment-938236733 Thanks @mikemccand ! Just added the entry, I always forget that lol. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub

[GitHub] [lucene] jtibshirani opened a new pull request #366: LUCENE-10146: Add VectorSimilarityFunction.COSINE

2021-10-07 Thread GitBox
jtibshirani opened a new pull request #366: URL: https://github.com/apache/lucene/pull/366 This PR adds support for using cosine similarity with kNN vector fields. It takes a simple approach and doesn't attempt optimizations like normalizing the query vector in advance, or

[GitHub] [lucene] rmuir commented on a change in pull request #360: LUCENE-10155: Refactor TestMultiMMap into a BaseChunkedDirectoryTestCase

2021-10-07 Thread GitBox
rmuir commented on a change in pull request #360: URL: https://github.com/apache/lucene/pull/360#discussion_r724042253 ## File path: lucene/core/src/java/org/apache/lucene/store/ByteBuffersDataOutput.java ## @@ -137,6 +137,14 @@ public ByteBuffersDataOutput(

[GitHub] [lucene] dweiss commented on a change in pull request #359: LUCENE-9488: more distribution artifacts

2021-10-07 Thread GitBox
dweiss commented on a change in pull request #359: URL: https://github.com/apache/lucene/pull/359#discussion_r723962970 ## File path: gradle/publishing/defaults-maven.gradle ## @@ -80,6 +81,20 @@ configure(subprojects.findAll { it.path in rootProject.published }) { prj ->

[GitHub] [lucene] jpountz commented on a change in pull request #364: LUCENE-10154 NumericLeafComparator to define getPointValues

2021-10-07 Thread GitBox
jpountz commented on a change in pull request #364: URL: https://github.com/apache/lucene/pull/364#discussion_r723849356 ## File path: lucene/core/src/java/org/apache/lucene/search/comparators/NumericComparator.java ## @@ -130,12 +130,45 @@ public

[GitHub] [lucene] mayya-sharipova commented on pull request #364: LUCENE-10154 NumericLeafComparator to define getPointValues

2021-10-07 Thread GitBox
mayya-sharipova commented on pull request #364: URL: https://github.com/apache/lucene/pull/364#issuecomment-938131414 @jpountz Thank you for your feedback. I've addressed your comments in c4814f248b976ae2ae23173fc27319cb69d1c17d. This is ready for another round of review. > I

[GitHub] [lucene] dsmiley commented on a change in pull request #362: LUCENE-9431: UnifiedHighlighter WEIGHT_MATCHES is now true by default

2021-10-07 Thread GitBox
dsmiley commented on a change in pull request #362: URL: https://github.com/apache/lucene/pull/362#discussion_r724152591 ## File path: lucene/highlighter/src/java/org/apache/lucene/search/uhighlight/UnifiedHighlighter.java ## @@ -86,7 +86,7 @@ * {@link

[GitHub] [lucene] msokolov commented on a change in pull request #361: LUCENE-10147: ensure that KnnVectorQuery scores are positive

2021-10-07 Thread GitBox
msokolov commented on a change in pull request #361: URL: https://github.com/apache/lucene/pull/361#discussion_r724204344 ## File path: lucene/core/src/test/org/apache/lucene/search/TestKnnVectorQuery.java ## @@ -204,6 +207,64 @@ public void testScore() throws IOException {

[GitHub] [lucene] markrmiller edited a comment on pull request #365: GameGenie:1990JMH

2021-10-07 Thread GitBox
markrmiller edited a comment on pull request #365: URL: https://github.com/apache/lucene/pull/365#issuecomment-937821168 -- 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

[jira] [Resolved] (LUCENE-10147) KnnVectorQuery can produce negative scores

2021-10-07 Thread Michael Sokolov (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10147?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michael Sokolov resolved LUCENE-10147. -- Resolution: Fixed > KnnVectorQuery can produce negative scores >

[GitHub] [lucene] markrmiller commented on pull request #365: GameGenie:1990JMH

2021-10-07 Thread GitBox
markrmiller commented on pull request #365: URL: https://github.com/apache/lucene/pull/365#issuecomment-937514463 -- 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] dweiss commented on pull request #358: Add JAVA_OPTS to download the gradle-wrapper jar behind proxy.

2021-10-07 Thread GitBox
dweiss commented on pull request #358: URL: https://github.com/apache/lucene/pull/358#issuecomment-937056600 Dealing with this in scripts is nightmarish... but if you do want it then you should: - provide the defaults (empty string) if the variable is not defined, - modify all

[GitHub] [lucene] mayya-sharipova commented on a change in pull request #364: LUCENE-10154 NumericLeafComparator to define getPointValues

2021-10-07 Thread GitBox
mayya-sharipova commented on a change in pull request #364: URL: https://github.com/apache/lucene/pull/364#discussion_r724507356 ## File path: lucene/core/src/java/org/apache/lucene/search/comparators/NumericComparator.java ## @@ -130,12 +130,45 @@ public

[GitHub] [lucene] jpountz commented on a change in pull request #361: LUCENE-10147: ensure that KnnVectorQuery scores are positive

2021-10-07 Thread GitBox
jpountz commented on a change in pull request #361: URL: https://github.com/apache/lucene/pull/361#discussion_r723852770 ## File path: lucene/core/src/java/org/apache/lucene/util/VectorUtil.java ## @@ -115,19 +115,23 @@ public static float squareDistance(float[] v1, float[]

[GitHub] [lucene] msokolov merged pull request #361: LUCENE-10147: ensure that KnnVectorQuery scores are positive

2021-10-07 Thread GitBox
msokolov merged pull request #361: URL: https://github.com/apache/lucene/pull/361 -- 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:

[GitHub] [lucene-solr] madrob commented on pull request #2579: SOLR-15269: Upgrade Apache HttpComponents Client to 4.5.13 to fix CVE-2020-13956

2021-10-07 Thread GitBox
madrob commented on pull request #2579: URL: https://github.com/apache/lucene-solr/pull/2579#issuecomment-937996409 @ventry1990 can you add an entry to solr/CHANGES including how you would like to be credited? Thank you for your patch! -- This is an automated message from the Apache Git

[GitHub] [lucene] dweiss commented on a change in pull request #360: LUCENE-10155: Refactor TestMultiMMap into a BaseChunkedDirectoryTestCase

2021-10-07 Thread GitBox
dweiss commented on a change in pull request #360: URL: https://github.com/apache/lucene/pull/360#discussion_r723900036 ## File path: lucene/core/src/java/org/apache/lucene/store/ByteBuffersDataOutput.java ## @@ -137,6 +137,14 @@ public ByteBuffersDataOutput(

[GitHub] [lucene] jtibshirani commented on a change in pull request #361: LUCENE-10147: ensure that KnnVectorQuery scores are positive

2021-10-07 Thread GitBox
jtibshirani commented on a change in pull request #361: URL: https://github.com/apache/lucene/pull/361#discussion_r723760893 ## File path: lucene/core/src/test/org/apache/lucene/search/TestKnnVectorQuery.java ## @@ -204,6 +207,64 @@ public void testScore() throws IOException {

[GitHub] [lucene] romseygeek commented on a change in pull request #362: LUCENE-9431: UnifiedHighlighter WEIGHT_MATCHES is now true by default

2021-10-07 Thread GitBox
romseygeek commented on a change in pull request #362: URL: https://github.com/apache/lucene/pull/362#discussion_r723952192 ## File path: lucene/highlighter/src/java/org/apache/lucene/search/uhighlight/UnifiedHighlighter.java ## @@ -86,7 +86,7 @@ * {@link

[GitHub] [lucene] janhoy commented on a change in pull request #359: LUCENE-9488: more distribution artifacts

2021-10-07 Thread GitBox
janhoy commented on a change in pull request #359: URL: https://github.com/apache/lucene/pull/359#discussion_r723921857 ## File path: gradle/publishing/defaults-maven.gradle ## @@ -80,6 +81,20 @@ configure(subprojects.findAll { it.path in rootProject.published }) { prj ->

[jira] [Commented] (LUCENE-9488) Update release process to work with Gradle.

2021-10-07 Thread Jira
[ https://issues.apache.org/jira/browse/LUCENE-9488?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17425820#comment-17425820 ] Jan Høydahl commented on LUCENE-9488: - Congrats! No stress. I think we have some decent progress on

[jira] [Commented] (LUCENE-9488) Update release process to work with Gradle.

2021-10-07 Thread Dawid Weiss (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9488?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17425783#comment-17425783 ] Dawid Weiss commented on LUCENE-9488: - Took me two hours to figure out why Nexus returns HTTP 400...

[GitHub] [lucene] mayya-sharipova commented on pull request #364: LUCENE-10154 NumericLeafComparator to define getPointValues

2021-10-07 Thread GitBox
mayya-sharipova commented on pull request #364: URL: https://github.com/apache/lucene/pull/364#issuecomment-938131414 @jpountz Thank you for your feedback. I've addressed your comments in c4814f248b976ae2ae23173fc27319cb69d1c17d. This is ready for another round of review. > I

[jira] [Updated] (LUCENE-10157) Add Additional Indri Search Engine Functionality to Lucene

2021-10-07 Thread Cameron VandenBerg (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10157?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Cameron VandenBerg updated LUCENE-10157: Attachment: LUCENE-10157.patch Status: Open (was: Open) > Add

[GitHub] [lucene] mayya-sharipova commented on a change in pull request #364: LUCENE-10154 NumericLeafComparator to define getPointValues

2021-10-07 Thread GitBox
mayya-sharipova commented on a change in pull request #364: URL: https://github.com/apache/lucene/pull/364#discussion_r724507356 ## File path: lucene/core/src/java/org/apache/lucene/search/comparators/NumericComparator.java ## @@ -130,12 +130,45 @@ public

[GitHub] [lucene] dweiss commented on a change in pull request #359: LUCENE-9488: more distribution artifacts

2021-10-07 Thread GitBox
dweiss commented on a change in pull request #359: URL: https://github.com/apache/lucene/pull/359#discussion_r724012317 ## File path: gradle/publishing/defaults-maven.gradle ## @@ -80,6 +81,20 @@ configure(subprojects.findAll { it.path in rootProject.published }) { prj ->

[jira] [Created] (LUCENE-10157) Add Additional Indri Search Engine Functionality to Lucene

2021-10-07 Thread Cameron VandenBerg (Jira)
Cameron VandenBerg created LUCENE-10157: --- Summary: Add Additional Indri Search Engine Functionality to Lucene Key: LUCENE-10157 URL: https://issues.apache.org/jira/browse/LUCENE-10157 Project:

[jira] [Commented] (LUCENE-10151) Add timeout support to IndexSearcher

2021-10-07 Thread Adrien Grand (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10151?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17425746#comment-17425746 ] Adrien Grand commented on LUCENE-10151: --- Another question I have is how to signal to the user

[jira] [Updated] (LUCENE-10151) Add timeout support to IndexSearcher

2021-10-07 Thread Greg Miller (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10151?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Greg Miller updated LUCENE-10151: - Description: I'd like to explore adding optional "timeout" capabilities to {{IndexSearcher}}.

[jira] [Commented] (LUCENE-10147) KnnVectorQuery can produce negative scores

2021-10-07 Thread ASF subversion and git services (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10147?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17425725#comment-17425725 ] ASF subversion and git services commented on LUCENE-10147: -- Commit

[GitHub] [lucene] msokolov merged pull request #361: LUCENE-10147: ensure that KnnVectorQuery scores are positive

2021-10-07 Thread GitBox
msokolov merged pull request #361: URL: https://github.com/apache/lucene/pull/361 -- 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:

[GitHub] [lucene-solr] madrob commented on pull request #2579: SOLR-15269: Upgrade Apache HttpComponents Client to 4.5.13 to fix CVE-2020-13956

2021-10-07 Thread GitBox
madrob commented on pull request #2579: URL: https://github.com/apache/lucene-solr/pull/2579#issuecomment-937996409 @ventry1990 can you add an entry to solr/CHANGES including how you would like to be credited? Thank you for your patch! -- This is an automated message from the Apache Git

[GitHub] [lucene] markrmiller edited a comment on pull request #365: GameGenie:1990JMH

2021-10-07 Thread GitBox
markrmiller edited a comment on pull request #365: URL: https://github.com/apache/lucene/pull/365#issuecomment-937514463 No frills type output possibilities. ``` Result "org.apache.lucene.bench.search.SearchPerf.term": 1163.320 ±(99.9%) 262.404 ops/s [Average]

[jira] [Commented] (LUCENE-10153) More speedups for operations on byte[] via VarHandles

2021-10-07 Thread Adrien Grand (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10153?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17425689#comment-17425689 ] Adrien Grand commented on LUCENE-10153: --- There's a nice ~5% indexing speedup on the geo

[jira] [Commented] (LUCENE-10153) More speedups for operations on byte[] via VarHandles

2021-10-07 Thread Adrien Grand (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10153?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17425688#comment-17425688 ] Adrien Grand commented on LUCENE-10153: --- This seems to be responsible for another 3% speedup on

[GitHub] [lucene] markrmiller commented on pull request #365: GameGenie:1990JMH

2021-10-07 Thread GitBox
markrmiller commented on pull request #365: URL: https://github.com/apache/lucene/pull/365#issuecomment-937960859 The **index**, **line doc file**, and **tasks file** can be generated via the _lucene-util_ benchmark. The only current task is a **SearchPerf** task that roughly emulates a

[GitHub] [lucene] rmuir commented on a change in pull request #360: LUCENE-10155: Refactor TestMultiMMap into a BaseChunkedDirectoryTestCase

2021-10-07 Thread GitBox
rmuir commented on a change in pull request #360: URL: https://github.com/apache/lucene/pull/360#discussion_r724261686 ## File path: lucene/core/src/java/org/apache/lucene/store/ByteBuffersDataOutput.java ## @@ -137,6 +137,14 @@ public ByteBuffersDataOutput(

[jira] [Commented] (LUCENE-9431) UnifiedHighlighter: Make WEIGHT_MATCHES the default

2021-10-07 Thread Animesh Pandey (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9431?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17425606#comment-17425606 ] Animesh Pandey commented on LUCENE-9431: [~dsmiley] yes it would be

[GitHub] [lucene] jpountz commented on a change in pull request #361: LUCENE-10147: ensure that KnnVectorQuery scores are positive

2021-10-07 Thread GitBox
jpountz commented on a change in pull request #361: URL: https://github.com/apache/lucene/pull/361#discussion_r724238874 ## File path: lucene/core/src/java/org/apache/lucene/util/VectorUtil.java ## @@ -115,19 +115,23 @@ public static float squareDistance(float[] v1, float[]

[GitHub] [lucene] markrmiller edited a comment on pull request #365: GameGenie:1990JMH

2021-10-07 Thread GitBox
markrmiller edited a comment on pull request #365: URL: https://github.com/apache/lucene/pull/365#issuecomment-937821168 ### Built in Profilers You can see which are available to you and properly configured via ` ./jmh.sh -lprof` - Linux perf c2c profiler (shared C2C/HITM

[GitHub] [lucene] markrmiller edited a comment on pull request #365: GameGenie:1990JMH

2021-10-07 Thread GitBox
markrmiller edited a comment on pull request #365: URL: https://github.com/apache/lucene/pull/365#issuecomment-937821168 ### Built in Profilers You can see which are available to you and properly configured via ` ./jmh.sh -lprof` - Linux perf c2c profiler (shared C2C/HITM

[GitHub] [lucene] markrmiller commented on pull request #365: GameGenie:1990JMH

2021-10-07 Thread GitBox
markrmiller commented on pull request #365: URL: https://github.com/apache/lucene/pull/365#issuecomment-937821168 ### Built in Profilers - Linux perf c2c profiler - DTrace profile provider + PrintAssembly Profiler (OSX) - async-profiler profiler provider (flamegraphs, jfr

[GitHub] [lucene] msokolov commented on a change in pull request #361: LUCENE-10147: ensure that KnnVectorQuery scores are positive

2021-10-07 Thread GitBox
msokolov commented on a change in pull request #361: URL: https://github.com/apache/lucene/pull/361#discussion_r724204344 ## File path: lucene/core/src/test/org/apache/lucene/search/TestKnnVectorQuery.java ## @@ -204,6 +207,64 @@ public void testScore() throws IOException {

[jira] [Commented] (LUCENE-9431) UnifiedHighlighter: Make WEIGHT_MATCHES the default

2021-10-07 Thread David Smiley (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9431?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17425542#comment-17425542 ] David Smiley commented on LUCENE-9431: -- Animesh; do you have a GitHub account?  There is some peer

[GitHub] [lucene] dsmiley commented on a change in pull request #362: LUCENE-9431: UnifiedHighlighter WEIGHT_MATCHES is now true by default

2021-10-07 Thread GitBox
dsmiley commented on a change in pull request #362: URL: https://github.com/apache/lucene/pull/362#discussion_r724152591 ## File path: lucene/highlighter/src/java/org/apache/lucene/search/uhighlight/UnifiedHighlighter.java ## @@ -86,7 +86,7 @@ * {@link

[GitHub] [lucene] rmuir commented on a change in pull request #360: LUCENE-10155: Refactor TestMultiMMap into a BaseChunkedDirectoryTestCase

2021-10-07 Thread GitBox
rmuir commented on a change in pull request #360: URL: https://github.com/apache/lucene/pull/360#discussion_r724042253 ## File path: lucene/core/src/java/org/apache/lucene/store/ByteBuffersDataOutput.java ## @@ -137,6 +137,14 @@ public ByteBuffersDataOutput(

[GitHub] [lucene] dweiss commented on a change in pull request #359: LUCENE-9488: more distribution artifacts

2021-10-07 Thread GitBox
dweiss commented on a change in pull request #359: URL: https://github.com/apache/lucene/pull/359#discussion_r724012317 ## File path: gradle/publishing/defaults-maven.gradle ## @@ -80,6 +81,20 @@ configure(subprojects.findAll { it.path in rootProject.published }) { prj ->

[GitHub] [lucene] janhoy commented on a change in pull request #359: LUCENE-9488: more distribution artifacts

2021-10-07 Thread GitBox
janhoy commented on a change in pull request #359: URL: https://github.com/apache/lucene/pull/359#discussion_r724007138 ## File path: gradle/publishing/defaults-maven.gradle ## @@ -80,6 +81,20 @@ configure(subprojects.findAll { it.path in rootProject.published }) { prj ->

[GitHub] [lucene] markrmiller commented on pull request #365: GameGenie:1990JMH

2021-10-07 Thread GitBox
markrmiller commented on pull request #365: URL: https://github.com/apache/lucene/pull/365#issuecomment-937613511 Now we can pull some good clean perfasm: Result "org.apache.lucene.bench.search.SearchPerf.orHighHigh": 46.523 ±(99.9%) 2.531 ops/s [Average] (min,

[GitHub] [lucene] janhoy commented on a change in pull request #359: LUCENE-9488: more distribution artifacts

2021-10-07 Thread GitBox
janhoy commented on a change in pull request #359: URL: https://github.com/apache/lucene/pull/359#discussion_r724004710 ## File path: gradle/publishing/defaults-maven.gradle ## @@ -80,6 +81,20 @@ configure(subprojects.findAll { it.path in rootProject.published }) { prj ->

[GitHub] [lucene] dweiss commented on a change in pull request #359: LUCENE-9488: more distribution artifacts

2021-10-07 Thread GitBox
dweiss commented on a change in pull request #359: URL: https://github.com/apache/lucene/pull/359#discussion_r723994990 ## File path: gradle/publishing/defaults-maven.gradle ## @@ -80,6 +81,20 @@ configure(subprojects.findAll { it.path in rootProject.published }) { prj ->

[GitHub] [lucene] dweiss commented on a change in pull request #359: LUCENE-9488: more distribution artifacts

2021-10-07 Thread GitBox
dweiss commented on a change in pull request #359: URL: https://github.com/apache/lucene/pull/359#discussion_r723994570 ## File path: gradle/publishing/defaults-maven.gradle ## @@ -80,6 +81,20 @@ configure(subprojects.findAll { it.path in rootProject.published }) { prj ->

[GitHub] [lucene] janhoy commented on a change in pull request #359: LUCENE-9488: more distribution artifacts

2021-10-07 Thread GitBox
janhoy commented on a change in pull request #359: URL: https://github.com/apache/lucene/pull/359#discussion_r723984623 ## File path: lucene/packaging/build.gradle ## @@ -204,13 +220,15 @@ task assembleSourceDist() { "archive", Review comment: Fair

[GitHub] [lucene] janhoy commented on a change in pull request #359: LUCENE-9488: more distribution artifacts

2021-10-07 Thread GitBox
janhoy commented on a change in pull request #359: URL: https://github.com/apache/lucene/pull/359#discussion_r723983679 ## File path: gradle/publishing/defaults-maven.gradle ## @@ -80,6 +81,20 @@ configure(subprojects.findAll { it.path in rootProject.published }) { prj ->

[jira] [Commented] (LUCENE-10145) Use VarHandles to speedup byte[] comparisons in some cases

2021-10-07 Thread Adrien Grand (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10145?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17425424#comment-17425424 ] Adrien Grand commented on LUCENE-10145: --- And a 7% indexing speedup for LatLonShape:

[GitHub] [lucene] dweiss commented on a change in pull request #359: LUCENE-9488: more distribution artifacts

2021-10-07 Thread GitBox
dweiss commented on a change in pull request #359: URL: https://github.com/apache/lucene/pull/359#discussion_r723964613 ## File path: lucene/packaging/build.gradle ## @@ -204,13 +220,15 @@ task assembleSourceDist() { "archive", Review comment: I

[GitHub] [lucene] dweiss commented on a change in pull request #359: LUCENE-9488: more distribution artifacts

2021-10-07 Thread GitBox
dweiss commented on a change in pull request #359: URL: https://github.com/apache/lucene/pull/359#discussion_r723963480 ## File path: gradle/publishing/defaults-maven.gradle ## @@ -58,6 +58,7 @@ configure(rootProject) { ] apacheNexusSnapshots =

[GitHub] [lucene] dweiss commented on a change in pull request #359: LUCENE-9488: more distribution artifacts

2021-10-07 Thread GitBox
dweiss commented on a change in pull request #359: URL: https://github.com/apache/lucene/pull/359#discussion_r723962970 ## File path: gradle/publishing/defaults-maven.gradle ## @@ -80,6 +81,20 @@ configure(subprojects.findAll { it.path in rootProject.published }) { prj ->

[GitHub] [lucene] romseygeek commented on a change in pull request #362: LUCENE-9431: UnifiedHighlighter WEIGHT_MATCHES is now true by default

2021-10-07 Thread GitBox
romseygeek commented on a change in pull request #362: URL: https://github.com/apache/lucene/pull/362#discussion_r723952192 ## File path: lucene/highlighter/src/java/org/apache/lucene/search/uhighlight/UnifiedHighlighter.java ## @@ -86,7 +86,7 @@ * {@link

[jira] [Resolved] (LUCENE-10153) More speedups for operations on byte[] via VarHandles

2021-10-07 Thread Adrien Grand (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10153?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Adrien Grand resolved LUCENE-10153. --- Fix Version/s: main (9.0) Resolution: Fixed > More speedups for operations on

[jira] [Resolved] (LUCENE-10125) Investigate indexing throughput regression on NYC Taxis between 2021-04-12 and 2021-05-24

2021-10-07 Thread Adrien Grand (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10125?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Adrien Grand resolved LUCENE-10125. --- Fix Version/s: main (9.0) Resolution: Fixed I couldn't find an easy way to improve

[GitHub] [lucene] janhoy commented on a change in pull request #359: LUCENE-9488: more distribution artifacts

2021-10-07 Thread GitBox
janhoy commented on a change in pull request #359: URL: https://github.com/apache/lucene/pull/359#discussion_r723921857 ## File path: gradle/publishing/defaults-maven.gradle ## @@ -80,6 +81,20 @@ configure(subprojects.findAll { it.path in rootProject.published }) { prj ->

[GitHub] [lucene] markrmiller commented on pull request #365: GameGenie:1990JMH

2021-10-07 Thread GitBox
markrmiller commented on pull request #365: URL: https://github.com/apache/lucene/pull/365#issuecomment-937514463 No frills type output possibilities. `Result "org.apache.lucene.bench.search.SearchPerf.term": 1162.921 ±(99.9%) 215.504 ops/s [Average] (min, avg, max) =

[GitHub] [lucene] markrmiller opened a new pull request #365: GameGenie:1990JMH

2021-10-07 Thread GitBox
markrmiller opened a new pull request #365: URL: https://github.com/apache/lucene/pull/365 This is not necessarily intended to be finished or merged, though a little more at least will be done. Might be interesting to play with. Needs some handle bars first likely - [ ] handle

[GitHub] [lucene] dweiss commented on a change in pull request #360: LUCENE-10155: Refactor TestMultiMMap into a BaseChunkedDirectoryTestCase

2021-10-07 Thread GitBox
dweiss commented on a change in pull request #360: URL: https://github.com/apache/lucene/pull/360#discussion_r723900036 ## File path: lucene/core/src/java/org/apache/lucene/store/ByteBuffersDataOutput.java ## @@ -137,6 +137,14 @@ public ByteBuffersDataOutput(