[GitHub] [lucene] dweiss commented on a change in pull request #175: LUCENE-9990: gradle7 support

2021-06-14 Thread GitBox
dweiss commented on a change in pull request #175: URL: https://github.com/apache/lucene/pull/175#discussion_r651498995 ## File path: gradle/testing/alternative-jdk-support.gradle ## @@ -18,60 +18,60 @@ // This adds support for compiling and testing against a different Java r

[jira] [Commented] (LUCENE-10003) Disallow C-style array declarations

2021-06-14 Thread Dawid Weiss (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10003?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17363412#comment-17363412 ] Dawid Weiss commented on LUCENE-10003: -- Hi David. I've used plenty of those style-

[GitHub] [lucene] uschindler commented on pull request #177: Initial rewrite of MMapDirectory for JDK-17 preview (incubating) Panama APIs (>= JDK-17-ea-b25)

2021-06-14 Thread GitBox
uschindler commented on pull request #177: URL: https://github.com/apache/lucene/pull/177#issuecomment-861222097 Here is the results of the original pull request without the unsafe memory copy, using the `fromArray()` and slicing code. During runtime, the benchmark runs 72 seconds vs 60 se

[GitHub] [lucene] zacharymorn commented on a change in pull request #180: LUCENE-9959: [WIP] Add non thread local based API for term vector reader usage

2021-06-14 Thread GitBox
zacharymorn commented on a change in pull request #180: URL: https://github.com/apache/lucene/pull/180#discussion_r651468446 ## File path: lucene/core/src/java/org/apache/lucene/index/IndexReader.java ## @@ -310,6 +311,9 @@ public final int hashCode() { */ public abstrac

[GitHub] [lucene] zacharymorn commented on a change in pull request #180: LUCENE-9959: [WIP] Add non thread local based API for term vector reader usage

2021-06-14 Thread GitBox
zacharymorn commented on a change in pull request #180: URL: https://github.com/apache/lucene/pull/180#discussion_r651468301 ## File path: lucene/core/src/java/org/apache/lucene/index/BaseCompositeReader.java ## @@ -118,6 +121,65 @@ public final Fields getTermVectors(int docID)

[GitHub] [lucene] zacharymorn commented on pull request #180: LUCENE-9959: [WIP] Add non thread local based API for term vector reader usage

2021-06-14 Thread GitBox
zacharymorn commented on pull request #180: URL: https://github.com/apache/lucene/pull/180#issuecomment-861193051 Thanks @jpountz for the review and suggestions! I have implemented the `TermVectors` idea in https://github.com/apache/lucene/pull/180/commits/0f8b0f49faab675b735c2c2f9713acdf1

[jira] [Updated] (LUCENE-10004) Delete unnecessary flush in Lucene90CompressingStoredFieldsWriter.copyChunks() to reduce dirty chunks

2021-06-14 Thread kkewwei (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10004?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] kkewwei updated LUCENE-10004: - Description: In CompressingStoredFieldsWriter.merge(): if the segment meet the following conditions: {

[jira] [Updated] (LUCENE-10004) Delete unnecessary flush in Lucene90CompressingStoredFieldsWriter.copyChunks() to reduce dirty chunks

2021-06-14 Thread kkewwei (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10004?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] kkewwei updated LUCENE-10004: - Description: In CompressingStoredFieldsWriter.merge(): if the segment meet the following conditions: {

[jira] [Updated] (LUCENE-10004) Delete unnecessary flush in Lucene90CompressingStoredFieldsWriter.copyChunks() to reduce dirty chunks

2021-06-14 Thread kkewwei (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10004?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] kkewwei updated LUCENE-10004: - Description: In CompressingStoredFieldsWriter.merge(): if the segment meet the following conditions: `

[jira] [Created] (LUCENE-10004) Delete unnecessary flush in Lucene90CompressingStoredFieldsWriter.copyChunks() to reduce dirty chunks

2021-06-14 Thread kkewwei (Jira)
kkewwei created LUCENE-10004: Summary: Delete unnecessary flush in Lucene90CompressingStoredFieldsWriter.copyChunks() to reduce dirty chunks Key: LUCENE-10004 URL: https://issues.apache.org/jira/browse/LUCENE-10004

[GitHub] [lucene] gautamworah96 commented on a change in pull request #175: LUCENE-9990: gradle7 support

2021-06-14 Thread GitBox
gautamworah96 commented on a change in pull request #175: URL: https://github.com/apache/lucene/pull/175#discussion_r651422401 ## File path: gradle/testing/alternative-jdk-support.gradle ## @@ -18,60 +18,60 @@ // This adds support for compiling and testing against a different

[GitHub] [lucene] gautamworah96 commented on a change in pull request #181: LUCENE-10001: Make CollectionTerminatedException handling in MultiCollector configurable

2021-06-14 Thread GitBox
gautamworah96 commented on a change in pull request #181: URL: https://github.com/apache/lucene/pull/181#discussion_r651419099 ## File path: lucene/CHANGES.txt ## @@ -127,6 +127,10 @@ API Changes * LUCENE-8143: SpanBoostQuery has been removed. (Alan Woodward) +* LUCENE-100

[GitHub] [lucene] gautamworah96 commented on a change in pull request #181: LUCENE-10001: Make CollectionTerminatedException handling in MultiCollector configurable

2021-06-14 Thread GitBox
gautamworah96 commented on a change in pull request #181: URL: https://github.com/apache/lucene/pull/181#discussion_r651418529 ## File path: lucene/core/src/java/org/apache/lucene/search/MultiCollector.java ## @@ -25,13 +25,39 @@ /** * A {@link Collector} which allows runnin

[GitHub] [lucene] dnhatn opened a new pull request #182: LUCENE-9935: Clone term vectors reader for merges

2021-06-14 Thread GitBox
dnhatn opened a new pull request #182: URL: https://github.com/apache/lucene/pull/182 The newly added [assertion](https://github.com/apache/lucene/blob/50607e0fb9090a1321093aca4117b6560c511af0/lucene/core/src/java/org/apache/lucene/codecs/lucene90/compressing/Lucene90CompressingTermVectorsW

[jira] [Resolved] (LUCENE-9145) Address warnings found by static analysis

2021-06-14 Thread Mike Drob (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9145?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mike Drob resolved LUCENE-9145. --- Fix Version/s: 9.0 Resolution: Fixed Fine to close, I think there's been work done in other p

[GitHub] [lucene] uschindler edited a comment on pull request #177: Initial rewrite of MMapDirectory for JDK-17 preview (incubating) Panama APIs (>= JDK-17-ea-b25)

2021-06-14 Thread GitBox
uschindler edited a comment on pull request #177: URL: https://github.com/apache/lucene/pull/177#issuecomment-861046986 I did more testig and was able to make MMapDirectory work the same speed. This patch fixing the perf issue shows the problems: https://github.com/uschindler/lucene/commit

[GitHub] [lucene] uschindler edited a comment on pull request #177: Initial rewrite of MMapDirectory for JDK-17 preview (incubating) Panama APIs (>= JDK-17-ea-b25)

2021-06-14 Thread GitBox
uschindler edited a comment on pull request #177: URL: https://github.com/apache/lucene/pull/177#issuecomment-861046986 I did more testig and was able to make MMapDirectory work the same speed. This patch fixing the perf issue shows the problems: https://github.com/uschindler/lucene/commit

[GitHub] [lucene] uschindler edited a comment on pull request #177: Initial rewrite of MMapDirectory for JDK-17 preview (incubating) Panama APIs (>= JDK-17-ea-b25)

2021-06-14 Thread GitBox
uschindler edited a comment on pull request #177: URL: https://github.com/apache/lucene/pull/177#issuecomment-861046986 I did more testig and was able to make MMapDirectory work the same speed. This patch fixing the perf issue shows the problems: https://github.com/uschindler/lucene/commit

[GitHub] [lucene] uschindler commented on pull request #177: Initial rewrite of MMapDirectory for JDK-17 preview (incubating) Panama APIs (>= JDK-17-ea-b25)

2021-06-14 Thread GitBox
uschindler commented on pull request #177: URL: https://github.com/apache/lucene/pull/177#issuecomment-861046986 I did more testig and was able to make MMapDirectory work the same speed. This path shows the problems: https://github.com/uschindler/lucene/commit/b057213cc6548ffa29b8e2810f39e

[jira] [Commented] (LUCENE-9983) Stop sorting determinize powersets unnecessarily

2021-06-14 Thread Haoyu Zhai (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17363284#comment-17363284 ] Haoyu Zhai commented on LUCENE-9983: {quote}Could you maybe open PR to add that init

[jira] [Commented] (LUCENE-10003) Disallow C-style array declarations

2021-06-14 Thread Robert Muir (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10003?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17363221#comment-17363221 ] Robert Muir commented on LUCENE-10003: -- In this particular case, i'm specifically

[jira] [Commented] (LUCENE-10003) Disallow C-style array declarations

2021-06-14 Thread Robert Muir (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10003?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17363218#comment-17363218 ] Robert Muir commented on LUCENE-10003: -- What is the bug caused by this? It is 100%

[jira] [Commented] (LUCENE-10003) Disallow C-style array declarations

2021-06-14 Thread David Smiley (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10003?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17363170#comment-17363170 ] David Smiley commented on LUCENE-10003: --- I had IntelliJ check for this, and it ha

[jira] [Assigned] (LUCENE-10003) Disallow C-style array declarations

2021-06-14 Thread David Smiley (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10003?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] David Smiley reassigned LUCENE-10003: - Assignee: David Smiley > Disallow C-style array declarations > ---

[jira] [Created] (LUCENE-10003) Disallow C-style array declarations

2021-06-14 Thread David Smiley (Jira)
David Smiley created LUCENE-10003: - Summary: Disallow C-style array declarations Key: LUCENE-10003 URL: https://issues.apache.org/jira/browse/LUCENE-10003 Project: Lucene - Core Issue Type: I

[jira] [Commented] (LUCENE-9145) Address warnings found by static analysis

2021-06-14 Thread David Smiley (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9145?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17363149#comment-17363149 ] David Smiley commented on LUCENE-9145: -- Should this remain open or maybe close it a

[jira] [Resolved] (LUCENE-3973) Incorporate PMD / FindBugs

2021-06-14 Thread David Smiley (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-3973?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] David Smiley resolved LUCENE-3973. -- Resolution: Won't Fix We use error-prone now. Closing this issue. > Incorporate PMD / FindBu

[jira] [Resolved] (LUCENE-7764) Add FindBugs analysis to precommit

2021-06-14 Thread David Smiley (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-7764?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] David Smiley resolved LUCENE-7764. -- Resolution: Won't Fix We use "error-prone" instead now. > Add FindBugs analysis to precommit

[GitHub] [lucene] uschindler commented on pull request #177: Initial rewrite of MMapDirectory for JDK-17 preview (incubating) Panama APIs (>= JDK-17-ea-b25)

2021-06-14 Thread GitBox
uschindler commented on pull request #177: URL: https://github.com/apache/lucene/pull/177#issuecomment-860900058 With my patch to bulk methods results look like this: ``` TaskQPS baseline StdDevQPS my_modified_version StdDevPct diff p-

[GitHub] [lucene] uschindler commented on pull request #177: Initial rewrite of MMapDirectory for JDK-17 preview (incubating) Panama APIs (>= JDK-17-ea-b25)

2021-06-14 Thread GitBox
uschindler commented on pull request #177: URL: https://github.com/apache/lucene/pull/177#issuecomment-860889941 After analyzing the heap dumps provided by JFR, I was able to figure out what the problem is. Basically, all native, VarHandle backed methods are fast and optimize nice.

[GitHub] [lucene] zhaih commented on pull request #163: LUCENE-9983: Stop sorting determinize powersets unnecessarily

2021-06-14 Thread GitBox
zhaih commented on pull request #163: URL: https://github.com/apache/lucene/pull/163#issuecomment-860880755 Thank you @bruno-roustant for approving this, I've refined the javadoc according to your comment -- This is an automated message from the Apache Git Service. To respond to the mess

[GitHub] [lucene] uschindler removed a comment on pull request #177: Initial rewrite of MMapDirectory for JDK-17 preview (incubating) Panama APIs (>= JDK-17-ea-b25)

2021-06-14 Thread GitBox
uschindler removed a comment on pull request #177: URL: https://github.com/apache/lucene/pull/177#issuecomment-860731308 I used the wrong benchmark task (not wikimediumall but wikimedium10k, copypastershitnwaste). New benchmarks coming soon. -- This is an automated message from the Apach

[GitHub] [lucene] uschindler edited a comment on pull request #177: Initial rewrite of MMapDirectory for JDK-17 preview (incubating) Panama APIs (>= JDK-17-ea-b25)

2021-06-14 Thread GitBox
uschindler edited a comment on pull request #177: URL: https://github.com/apache/lucene/pull/177#issuecomment-860641916 Hi, I executed luceneutil bench using jdk-17-ea+b25: ``` TaskQPS baseline StdDevQPS my_modified_version StdDevPc

[jira] [Commented] (LUCENE-9935) Bulk merges for stored fields when index sorting is enabled

2021-06-14 Thread ASF subversion and git services (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9935?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17363038#comment-17363038 ] ASF subversion and git services commented on LUCENE-9935: - Commi

[jira] [Commented] (LUCENE-9935) Bulk merges for stored fields when index sorting is enabled

2021-06-14 Thread Robert Muir (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9935?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17363019#comment-17363019 ] Robert Muir commented on LUCENE-9935: - ah ok, sorry, i read the linked issues wrong.

[jira] [Commented] (LUCENE-9935) Bulk merges for stored fields when index sorting is enabled

2021-06-14 Thread Nhat Nguyen (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9935?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17363008#comment-17363008 ] Nhat Nguyen commented on LUCENE-9935: - Thanks [~rcmuir]. The change for term vectors

[jira] [Commented] (LUCENE-9998) The param 'fis' in StoredFieldsWriter.finish(FieldInfos fis, int numDocs) is never used

2021-06-14 Thread kkewwei (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9998?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17363005#comment-17363005 ] kkewwei commented on LUCENE-9998: - It's my please to do it. > The param 'fis' in Stored

[jira] [Reopened] (LUCENE-9935) Bulk merges for stored fields when index sorting is enabled

2021-06-14 Thread Robert Muir (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9935?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir reopened LUCENE-9935: - Reopening as the term vectors support was reverted from main (but not 8.x?). cc: [~dnhatn] > Bulk

[GitHub] [lucene] uschindler commented on pull request #177: Initial rewrite of MMapDirectory for JDK-17 preview (incubating) Panama APIs (>= JDK-17-ea-b25)

2021-06-14 Thread GitBox
uschindler commented on pull request #177: URL: https://github.com/apache/lucene/pull/177#issuecomment-860731308 I used the wrong benchmark task (not wikimediumall but wikimedium10k, copypastershitnwaste). New benchmarks coming soon. -- This is an automated message from the Apache Git Se

[GitHub] [lucene] uschindler removed a comment on pull request #177: Initial rewrite of MMapDirectory for JDK-17 preview (incubating) Panama APIs (>= JDK-17-ea-b25)

2021-06-14 Thread GitBox
uschindler removed a comment on pull request #177: URL: https://github.com/apache/lucene/pull/177#issuecomment-860649214 -- 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. For

[jira] [Commented] (LUCENE-9996) Can we improve DWPT's initial memory footprint?

2021-06-14 Thread Adrien Grand (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9996?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17362960#comment-17362960 ] Adrien Grand commented on LUCENE-9996: -- Actually I didn't know/remember but Indexin

[GitHub] [lucene] uschindler commented on pull request #177: Initial rewrite of MMapDirectory for JDK-17 preview (incubating) Panama APIs (>= JDK-17-ea-b25)

2021-06-14 Thread GitBox
uschindler commented on pull request #177: URL: https://github.com/apache/lucene/pull/177#issuecomment-860665332 > I will now download the JFR files created by the tool and analyze them locally. No info from JFR files :-( -- This is an automated message from the Apache Git Service

[jira] [Commented] (LUCENE-10002) Remove IndexSearcher#search(Query,Collector) in favor of IndexSearcher#search(Query,CollectorManager)

2021-06-14 Thread Greg Miller (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10002?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17362937#comment-17362937 ] Greg Miller commented on LUCENE-10002: -- +1. I also don't love that users can setup

[jira] [Commented] (LUCENE-10001) Make CollectionTerminatedException handling in MultiCollector configurable

2021-06-14 Thread Greg Miller (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-10001?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17362936#comment-17362936 ] Greg Miller commented on LUCENE-10001: -- [~jpountz] thanks for the feedback! The sp

[GitHub] [lucene] uschindler commented on pull request #177: Initial rewrite of MMapDirectory for JDK-17 preview (incubating) Panama APIs (>= JDK-17-ea-b25)

2021-06-14 Thread GitBox
uschindler commented on pull request #177: URL: https://github.com/apache/lucene/pull/177#issuecomment-860649214 I will now download the JFR files created by the tool and analyze them locally. -- This is an automated message from the Apache Git Service. To respond to the message, please

[jira] [Commented] (LUCENE-9998) The param 'fis' in StoredFieldsWriter.finish(FieldInfos fis, int numDocs) is never used

2021-06-14 Thread Adrien Grand (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9998?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17362922#comment-17362922 ] Adrien Grand commented on LUCENE-9998: -- I'm tempted to remove it as I can't think o

[GitHub] [lucene] uschindler commented on pull request #177: Initial rewrite of MMapDirectory for JDK-17 preview (incubating) Panama APIs (>= JDK-17-ea-b25)

2021-06-14 Thread GitBox
uschindler commented on pull request #177: URL: https://github.com/apache/lucene/pull/177#issuecomment-860641916 Hi, I executed luceneutil bench using jdk-17-ea+b25: ``` TaskQPS baseline StdDevQPS my_modified_version StdDevPct diff

[GitHub] [lucene-solr] bszabo97 opened a new pull request #2513: SOLR-15378 Suppress SimpleText codec in TestRestoreCore

2021-06-14 Thread GitBox
bszabo97 opened a new pull request #2513: URL: https://github.com/apache/lucene-solr/pull/2513 https://issues.apache.org/jira/browse/SOLR-15378 # Description Backup/restore doesn't support SimpleTextCodec and because of this testFailedRestore in TestRestoreCore with given seed

[GitHub] [lucene] uschindler commented on a change in pull request #177: Initial rewrite of MMapDirectory for JDK-17 preview (incubating) Panama APIs (>= JDK-17-ea-b25)

2021-06-14 Thread GitBox
uschindler commented on a change in pull request #177: URL: https://github.com/apache/lucene/pull/177#discussion_r650824464 ## File path: lucene/core/src/java/org/apache/lucene/store/MMapDirectory.java ## @@ -16,28 +16,17 @@ */ package org.apache.lucene.store; -import stat

[GitHub] [lucene] uschindler commented on a change in pull request #177: Initial rewrite of MMapDirectory for JDK-17 preview (incubating) Panama APIs (>= JDK-17-ea-b25)

2021-06-14 Thread GitBox
uschindler commented on a change in pull request #177: URL: https://github.com/apache/lucene/pull/177#discussion_r650822414 ## File path: lucene/core/src/java/org/apache/lucene/store/MMapDirectory.java ## @@ -16,28 +16,17 @@ */ package org.apache.lucene.store; -import stat

[GitHub] [lucene] bruno-roustant commented on a change in pull request #163: LUCENE-9983: Stop sorting determinize powersets unnecessarily

2021-06-14 Thread GitBox
bruno-roustant commented on a change in pull request #163: URL: https://github.com/apache/lucene/pull/163#discussion_r650761025 ## File path: lucene/core/src/java/org/apache/lucene/util/automaton/StateSet.java ## @@ -0,0 +1,106 @@ +/* + * Licensed to the Apache Software Foundat

[GitHub] [lucene] jpountz commented on a change in pull request #180: LUCENE-9959: [WIP] Add non thread local based API for term vector reader usage

2021-06-14 Thread GitBox
jpountz commented on a change in pull request #180: URL: https://github.com/apache/lucene/pull/180#discussion_r650714447 ## File path: lucene/core/src/java/org/apache/lucene/index/BaseCompositeReader.java ## @@ -118,6 +121,65 @@ public final Fields getTermVectors(int docID) thr

[jira] [Commented] (LUCENE-9959) Can we remove threadlocals of stored fields and term vectors

2021-06-14 Thread Adrien Grand (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9959?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17362813#comment-17362813 ] Adrien Grand commented on LUCENE-9959: -- bq. Is the implementation what you are expe

[GitHub] [lucene] dweiss commented on a change in pull request #163: LUCENE-9983: Stop sorting determinize powersets unnecessarily

2021-06-14 Thread GitBox
dweiss commented on a change in pull request #163: URL: https://github.com/apache/lucene/pull/163#discussion_r650372453 ## File path: lucene/core/src/java/org/apache/lucene/util/automaton/StateSet.java ## @@ -0,0 +1,106 @@ +/* + * Licensed to the Apache Software Foundation (ASF

[GitHub] [lucene] gsmiller opened a new pull request #181: LUCENE-10001: Make CollectionTerminatedException handling in MultiCollector configurable

2021-06-14 Thread GitBox
gsmiller opened a new pull request #181: URL: https://github.com/apache/lucene/pull/181 # Description There could be use-cases where a user wants to terminate all wrapped collectors in a MultiCollector when one terminates. Today, other collectors continue collecting. For example, a

[GitHub] [lucene] zacharymorn opened a new pull request #180: LUCENE-9959: [WIP] Add non thread local based API for term vector reader usage

2021-06-14 Thread GitBox
zacharymorn opened a new pull request #180: URL: https://github.com/apache/lucene/pull/180 *This is a WIP PR for discussion only* # Description This PR is to try out the idea proposed in https://github.com/apache/lucene/pull/137#issuecomment-840111367, and is for discussion only

[GitHub] [lucene] zhaih commented on a change in pull request #163: LUCENE-9983: Stop sorting determinize powersets unnecessarily

2021-06-14 Thread GitBox
zhaih commented on a change in pull request #163: URL: https://github.com/apache/lucene/pull/163#discussion_r650443185 ## File path: lucene/core/src/java/org/apache/lucene/util/automaton/StateSet.java ## @@ -0,0 +1,106 @@ +/* + * Licensed to the Apache Software Foundation (ASF)

[GitHub] [lucene] mikemccand commented on a change in pull request #163: LUCENE-9983: Stop sorting determinize powersets unnecessarily

2021-06-14 Thread GitBox
mikemccand commented on a change in pull request #163: URL: https://github.com/apache/lucene/pull/163#discussion_r650412326 ## File path: lucene/core/src/java/org/apache/lucene/util/automaton/StateSet.java ## @@ -0,0 +1,107 @@ +/* + * Licensed to the Apache Software Foundation

[GitHub] [lucene-solr] dsmiley merged pull request #2510: SolrZkClient: remove dead code

2021-06-14 Thread GitBox
dsmiley merged pull request #2510: URL: https://github.com/apache/lucene-solr/pull/2510 -- 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. For queries about this service, pl

[GitHub] [lucene] zacharymorn commented on a change in pull request #180: LUCENE-9959: [WIP] Add non thread local based API for term vector reader usage

2021-06-14 Thread GitBox
zacharymorn commented on a change in pull request #180: URL: https://github.com/apache/lucene/pull/180#discussion_r650443353 ## File path: lucene/core/src/java/org/apache/lucene/index/IndexReader.java ## @@ -310,6 +311,9 @@ public final int hashCode() { */ public abstrac

[GitHub] [lucene] dweiss merged pull request #178: LUCENE-9977: rat task corrections (proper up-to-date checks, cleanup and rewrite of the task itself).

2021-06-14 Thread GitBox
dweiss merged pull request #178: URL: https://github.com/apache/lucene/pull/178 -- 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. For queries about this service, please con

[GitHub] [lucene] balmukundblr commented on pull request #132: Parallel processing

2021-06-14 Thread GitBox
balmukundblr commented on pull request #132: URL: https://github.com/apache/lucene/pull/132#issuecomment-859316131 @mikemccand Mike, We've committed the code 4 days before and it still in Checking phase. Ideally **'musedev'** should not take longer time. Looks like, there is some probl

[GitHub] [lucene] uschindler commented on pull request #173: Initial rewrite of MMapDirectory for JDK-16 preview (incubating) Panama APIs (>= JDK-16-ea-b32)

2021-06-14 Thread GitBox
uschindler commented on pull request #173: URL: https://github.com/apache/lucene/pull/173#issuecomment-859613146 > Is the plan to work on this and #177 in parallel until we know which is the more sustainable option, or abandon this one altogether with expectations that JDK 17 will be bette

[GitHub] [lucene-solr] 16pierre commented on a change in pull request #1294: LUCENE-9074: Slice Allocation Control Plane For Concurrent Searches

2021-06-14 Thread GitBox
16pierre commented on a change in pull request #1294: URL: https://github.com/apache/lucene-solr/pull/1294#discussion_r649923783 ## File path: lucene/core/src/java/org/apache/lucene/search/SliceExecutor.java ## @@ -0,0 +1,80 @@ +/* + * Licensed to the Apache Software Foundation

[GitHub] [lucene] gautamworah96 opened a new pull request #179: LUCENE-9476: Add getBulkPath API to DirectoryTaxonomyWriter

2021-06-14 Thread GitBox
gautamworah96 opened a new pull request #179: URL: https://github.com/apache/lucene/pull/179 # Description In LUCENE-9450 we switched the Taxonomy index from Stored Fields to BinaryDocValues. In the resulting implementation of the getPath code, we create a new BinaryDocV