javanna commented on code in PR #15795:
URL: https://github.com/apache/lucene/pull/15795#discussion_r3317042534
##########
lucene/misc/src/java/org/apache/lucene/misc/search/MemoryAccountingBitsetCollector.java:
##########
@@ -24,23 +24,46 @@
import org.apache.lucene.search.SimpleCollector;
import org.apache.lucene.util.FixedBitSet;
-/** Bitset collector which supports memory tracking */
+/**
+ * Bitset collector which supports memory tracking. Can operate in two modes:
Full index mode:
+ * allocates bitset for entire index (for single-threaded search),
Segment-local mode: allocates
+ * bitset only for segments processed (memory-efficient for concurrent search)
+ */
public class MemoryAccountingBitsetCollector extends SimpleCollector {
final CollectorMemoryTracker tracker;
+ final boolean segmentLocal;
Review Comment:
can you expand on the breakage? Wouldn't the functionality be the same if we
removed the flag and assume concurrent execution all the times?
##########
lucene/misc/src/java/org/apache/lucene/misc/search/MemoryAccountingBitsetCollectorManager.java:
##########
@@ -0,0 +1,71 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.lucene.misc.search;
+
+import java.util.Collection;
+import org.apache.lucene.misc.CollectorMemoryTracker;
+import org.apache.lucene.search.CollectorManager;
+import org.apache.lucene.util.FixedBitSet;
+
+/**
+ * CollectorManager for MemoryAccountingBitsetCollector that supports
concurrent search.
+ *
+ * <p>Creates multiple collectors for concurrent execution, each collector
only allocates bitset for
+ * segments it processes, then merges with proper offset in reduce().
+ */
+public class MemoryAccountingBitsetCollectorManager
+ implements CollectorManager<
+ MemoryAccountingBitsetCollector,
MemoryAccountingBitsetCollectorManager.Result> {
+
+ /** The result of a search, containing the matched document IDs and total
memory used. */
+ public record Result(FixedBitSet bitSet, long totalBytesUsed) {}
+
+ private final CollectorMemoryTracker tracker;
+
+ public MemoryAccountingBitsetCollectorManager(CollectorMemoryTracker
tracker) {
+ this.tracker = tracker;
+ }
+
+ @Override
+ public MemoryAccountingBitsetCollector newCollector() {
+ return new MemoryAccountingBitsetCollector(tracker, true);
+ }
+
+ @Override
+ public Result reduce(Collection<MemoryAccountingBitsetCollector> collectors)
{
+ int globalMinDocBase = Integer.MAX_VALUE;
Review Comment:
this is assigned but never used, is that on purpose?
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]