<freeStyleBuild _class='hudson.model.FreeStyleBuild'><action _class='hudson.model.CauseAction'><cause _class='hudson.model.Cause$UpstreamCause'><shortDescription>Started by upstream project "Lucene-MMAPv2-Windows" build number 3,770</shortDescription><upstreamBuild>3770</upstreamBuild><upstreamProject>Lucene-MMAPv2-Windows</upstreamProject><upstreamUrl>job/Lucene-MMAPv2-Windows/</upstreamUrl></cause></action><action></action><action _class='hudson.plugins.git.util.BuildData'><buildsByBranchName><refsremotesoriginmain _class='hudson.plugins.git.util.Build'><buildNumber>1868</buildNumber><marked><SHA1>a9c3fe8841d5560bb2d28bf5f34d2d352d0746aa</SHA1><branch><SHA1>a9c3fe8841d5560bb2d28bf5f34d2d352d0746aa</SHA1><name>refs/remotes/origin/main</name></branch></marked><revision><SHA1>a9c3fe8841d5560bb2d28bf5f34d2d352d0746aa</SHA1><branch><SHA1>a9c3fe8841d5560bb2d28bf5f34d2d352d0746aa</SHA1><name>refs/remotes/origin/main</name></branch></revision></refsremotesoriginmain></buildsByBranchName><lastBuiltRevision><SHA1>a9c3fe8841d5560bb2d28bf5f34d2d352d0746aa</SHA1><branch><SHA1>a9c3fe8841d5560bb2d28bf5f34d2d352d0746aa</SHA1><name>refs/remotes/origin/main</name></branch></lastBuiltRevision><remoteUrl>https://gitbox.apache.org/repos/asf/lucene.git</remoteUrl><scmName></scmName></action><action></action><action></action><action></action><action></action><action></action><action _class='org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction'></action><building>false</building><description>Java: 64bit/hotspot/jdk-25.0.2 -XX:-UseCompressedOops -XX:+UseZGC</description><displayName>#1868</displayName><duration>0</duration><estimatedDuration>859034</estimatedDuration><fullDisplayName>Lucene-MMAPv2-macOS #1868</fullDisplayName><id>1868</id><inProgress>false</inProgress><keepLog>false</keepLog><number>1868</number><queueId>224961</queueId><result>ABORTED</result><timestamp>1783534270940</timestamp><url>https://jenkins.thetaphi.de/view/Lucene/job/Lucene-MMAPv2-macOS/1868/</url><builtOn>macOS VM</builtOn><changeSet _class='hudson.plugins.git.GitChangeSetList'><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>lucene/grouping/src/java/org/apache/lucene/search/grouping/GroupingSearch.java</affectedPath><affectedPath>lucene/grouping/src/test/org/apache/lucene/search/grouping/TestGroupingSearch.java</affectedPath><affectedPath>lucene/core/src/java/org/apache/lucene/search/CachingCollector.java</affectedPath><affectedPath>lucene/grouping/src/java/org/apache/lucene/search/grouping/AllGroupsCollector.java</affectedPath><affectedPath>lucene/core/src/java/org/apache/lucene/search/CachingCollectorManager.java</affectedPath><affectedPath>lucene/core/src/test/org/apache/lucene/search/TestCachingCollectorManager.java</affectedPath><affectedPath>lucene/grouping/src/test/org/apache/lucene/search/grouping/BaseGroupSelectorTestCase.java</affectedPath><affectedPath>lucene/CHANGES.txt</affectedPath><affectedPath>lucene/grouping/src/java/org/apache/lucene/search/grouping/AllGroupHeadsCollector.java</affectedPath><commitId>3afffeef5a8d3bcbdcff9f2376e1c5a357764197</commitId><timestamp>1783502873000</timestamp><author><absoluteUrl>https://jenkins.thetaphi.de/user/noreply</absoluteUrl><fullName>noreply</fullName></author><authorEmail>noreply@github.com</authorEmail><comment>Introduce CachingCollectorManager to parallelize search when using CachingCollector (#16247)

Introduce CachingCollectorManager, switch GroupingSearch to use search concurrency and move away from the deprecated search(Query, Collector) method.

In addition, remove experimental GroupingSearch constructor that takes a GroupSelector as argument in favor of providing a GroupSelector supplier.

Relates to #12892.
</comment><date>2026-07-08 11:27:53 +0200</date><id>3afffeef5a8d3bcbdcff9f2376e1c5a357764197</id><msg>Introduce CachingCollectorManager to parallelize search when using CachingCollector (#16247)</msg><path><editType>edit</editType><file>lucene/grouping/src/java/org/apache/lucene/search/grouping/GroupingSearch.java</file></path><path><editType>edit</editType><file>lucene/CHANGES.txt</file></path><path><editType>add</editType><file>lucene/core/src/java/org/apache/lucene/search/CachingCollectorManager.java</file></path><path><editType>add</editType><file>lucene/core/src/test/org/apache/lucene/search/TestCachingCollectorManager.java</file></path><path><editType>edit</editType><file>lucene/grouping/src/test/org/apache/lucene/search/grouping/TestGroupingSearch.java</file></path><path><editType>edit</editType><file>lucene/grouping/src/test/org/apache/lucene/search/grouping/BaseGroupSelectorTestCase.java</file></path><path><editType>edit</editType><file>lucene/core/src/java/org/apache/lucene/search/CachingCollector.java</file></path><path><editType>edit</editType><file>lucene/grouping/src/java/org/apache/lucene/search/grouping/AllGroupsCollector.java</file></path><path><editType>edit</editType><file>lucene/grouping/src/java/org/apache/lucene/search/grouping/AllGroupHeadsCollector.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>lucene/CHANGES.txt</affectedPath><affectedPath>lucene/core/src/test/org/apache/lucene/search/TestTermInSetQuery.java</affectedPath><commitId>6f015432d9ca7e3d484fc6c2b4e2fdd8c9403fd5</commitId><timestamp>1783528607000</timestamp><author><absoluteUrl>https://jenkins.thetaphi.de/user/noreply</absoluteUrl><fullName>noreply</fullName></author><authorEmail>noreply@github.com</authorEmail><comment>LUCENE-14611: Reduce memory pressure in TestTermInSetQuery.testDuel (#16300)

* LUCENE-14611: Reduce memory pressure in TestTermInSetQuery.testDuel

* LUCENE-14611: Clarify TestTermInSetQuery match comparison

* LUCENE-14611: Add CHANGES entry

* LUCENE-14611: Use FixedBitSet equality for match comparison

* LUCENE-14611: Reuse FixedBitSetCollector for match comparison

---------

Co-authored-by: Dawid Weiss &lt;dawid.weiss@carrotsearch.com&gt;
</comment><date>2026-07-08 18:36:47 +0200</date><id>6f015432d9ca7e3d484fc6c2b4e2fdd8c9403fd5</id><msg>LUCENE-14611: Reduce memory pressure in TestTermInSetQuery.testDuel (#16300)</msg><path><editType>edit</editType><file>lucene/core/src/test/org/apache/lucene/search/TestTermInSetQuery.java</file></path><path><editType>edit</editType><file>lucene/CHANGES.txt</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>lucene/CHANGES.txt</affectedPath><commitId>3928aae87bf9883f62859e181fa6a21a4e5c65a4</commitId><timestamp>1783528870000</timestamp><author><absoluteUrl>https://jenkins.thetaphi.de/user/dawid.weiss</absoluteUrl><fullName>dawid.weiss</fullName></author><authorEmail>dawid.weiss@carrotsearch.com</authorEmail><comment>move changes entry to 10.6 #16300
</comment><date>2026-07-08 18:41:10 +0200</date><id>3928aae87bf9883f62859e181fa6a21a4e5c65a4</id><msg>move changes entry to 10.6 #16300</msg><path><editType>edit</editType><file>lucene/CHANGES.txt</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>lucene/CHANGES.txt</affectedPath><commitId>a9c3fe8841d5560bb2d28bf5f34d2d352d0746aa</commitId><timestamp>1783529694000</timestamp><author><absoluteUrl>https://jenkins.thetaphi.de/user/dawid.weiss</absoluteUrl><fullName>dawid.weiss</fullName></author><authorEmail>dawid.weiss@carrotsearch.com</authorEmail><comment>Consolidate changes entry with 10x.
</comment><date>2026-07-08 18:54:54 +0200</date><id>a9c3fe8841d5560bb2d28bf5f34d2d352d0746aa</id><msg>Consolidate changes entry with 10x.</msg><path><editType>edit</editType><file>lucene/CHANGES.txt</file></path></item><kind>git</kind></changeSet><culprit><absoluteUrl>https://jenkins.thetaphi.de/user/noreply</absoluteUrl><fullName>noreply</fullName></culprit><culprit><absoluteUrl>https://jenkins.thetaphi.de/user/dawid.weiss</absoluteUrl><fullName>dawid.weiss</fullName></culprit></freeStyleBuild>