expani commented on code in PR #13521: URL: https://github.com/apache/lucene/pull/13521#discussion_r1801052715
########## lucene/benchmark-jmh/src/java/org/apache/lucene/benchmark/jmh/DocIdEncodingBenchmark.java: ########## @@ -0,0 +1,404 @@ +/* + * 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.benchmark.jmh; + +import java.io.IOException; +import java.nio.charset.Charset; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.Locale; +import java.util.Map; +import java.util.Objects; +import java.util.Scanner; +import java.util.concurrent.TimeUnit; +import org.apache.lucene.store.Directory; +import org.apache.lucene.store.IOContext; +import org.apache.lucene.store.IndexInput; +import org.apache.lucene.store.IndexOutput; +import org.apache.lucene.store.NIOFSDirectory; +import org.openjdk.jmh.annotations.Benchmark; +import org.openjdk.jmh.annotations.BenchmarkMode; +import org.openjdk.jmh.annotations.Fork; +import org.openjdk.jmh.annotations.Level; +import org.openjdk.jmh.annotations.Measurement; +import org.openjdk.jmh.annotations.Mode; +import org.openjdk.jmh.annotations.OutputTimeUnit; +import org.openjdk.jmh.annotations.Param; +import org.openjdk.jmh.annotations.Scope; +import org.openjdk.jmh.annotations.Setup; +import org.openjdk.jmh.annotations.State; +import org.openjdk.jmh.annotations.TearDown; +import org.openjdk.jmh.annotations.Warmup; + +@BenchmarkMode(Mode.AverageTime) +@OutputTimeUnit(TimeUnit.MILLISECONDS) +@State(Scope.Benchmark) +@Warmup(iterations = 3, time = 5) +@Measurement(iterations = 5, time = 8) +@Fork(value = 1) +public class DocIdEncodingBenchmark { + + private static final List<int[]> DOC_ID_SEQUENCES = new ArrayList<>(); + + private static int INPUT_SCALE_FACTOR; + + static { + parseInput(); + } + + @Param({"Bit21With3StepsEncoder", "Bit21With2StepsEncoder", "Bit24Encoder", "Bit32Encoder"}) + String encoderName; + + @Param({"encode", "decode"}) + String methodName; + + private DocIdEncoder docIdEncoder; + + private Path tmpDir; + + private IndexInput in; + + private IndexOutput out; + + private final int[] scratch = new int[512]; + + @Setup(Level.Trial) + public void init() throws IOException { + tmpDir = Files.createTempDirectory("docIdJmh"); + docIdEncoder = DocIdEncoder.SingletonFactory.fromName(encoderName); + // Create file once for decoders to read from in every iteration + if (methodName.equalsIgnoreCase("decode")) { + String dataFile = + String.join("_", "docIdJmhData", docIdEncoder.getClass().getSimpleName(), "DecoderInput"); + try (Directory dir = new NIOFSDirectory(tmpDir)) { + out = dir.createOutput(dataFile, IOContext.DEFAULT); + encode(); + } finally { + out.close(); + } + } + } + + @TearDown(Level.Trial) + public void finish() throws IOException { + if (methodName.equalsIgnoreCase("decode")) { + String dataFile = + String.join("_", "docIdJmhData", docIdEncoder.getClass().getSimpleName(), "DecoderInput"); + Files.delete(tmpDir.resolve(dataFile)); + } + Files.delete(tmpDir); + } + + @Benchmark + public void executeEncodeOrDecode() throws IOException { + if (methodName.equalsIgnoreCase("encode")) { + String dataFile = + String.join( + "_", + "docIdJmhData", + docIdEncoder.getClass().getSimpleName(), + String.valueOf(System.nanoTime())); + try (Directory dir = new NIOFSDirectory(tmpDir)) { + out = dir.createOutput(dataFile, IOContext.DEFAULT); + encode(); + } finally { + Files.delete(tmpDir.resolve(dataFile)); + out.close(); + } + } else if (methodName.equalsIgnoreCase("decode")) { + String inputFile = + String.join("_", "docIdJmhData", docIdEncoder.getClass().getSimpleName(), "DecoderInput"); + try (Directory dir = new NIOFSDirectory(tmpDir)) { + in = dir.openInput(inputFile, IOContext.DEFAULT); + decode(); + } finally { + in.close(); + } + } else { + throw new IllegalArgumentException("Unknown method: " + methodName); + } + } + + public void encode() throws IOException { + for (int[] docIdSequence : DOC_ID_SEQUENCES) { + for (int i = 1; i <= INPUT_SCALE_FACTOR; i++) { + docIdEncoder.encode(out, 0, docIdSequence.length, docIdSequence); + } + } + } + + public void decode() throws IOException { + for (int[] docIdSequence : DOC_ID_SEQUENCES) { + for (int i = 1; i <= INPUT_SCALE_FACTOR; i++) { + docIdEncoder.decode(in, 0, docIdSequence.length, scratch); + // Uncomment to test the output of Encoder + // if (!Arrays.equals( + // docIdSequence, Arrays.copyOfRange(scratch, 0, docIdSequence.length))) + // { + // throw new RuntimeException( + // String.format( + // "Error for Encoder %s with sequence Expected %s Got %s", + // encoderName, Arrays.toString(docIdSequence), + // Arrays.toString(scratch))); + // } + } + } + } + + /** + * Extend this interface to add a new implementation used for DocId Encoding and Decoding. These + * are taken from org.apache.lucene.util.bkd.DocIdsWriter. + */ + public interface DocIdEncoder { + + void encode(IndexOutput out, int start, int count, int[] docIds) throws IOException; + + void decode(IndexInput in, int start, int count, int[] docIds) throws IOException; + + class SingletonFactory { + + static final Map<String, DocIdEncoder> ENCODER_NAME_TO_INSTANCE_MAPPING = + Map.of( + Bit24Encoder.class.getSimpleName().toLowerCase(Locale.ROOT), + new Bit24Encoder(), + Bit21With2StepsEncoder.class.getSimpleName().toLowerCase(Locale.ROOT), + new Bit21With2StepsEncoder(), + Bit21With3StepsEncoder.class.getSimpleName().toLowerCase(Locale.ROOT), + new Bit21With3StepsEncoder(), + Bit32Encoder.class.getSimpleName().toLowerCase(Locale.ROOT), + new Bit32Encoder()); + + public static DocIdEncoder fromName(String encoderName) { + String parsedEncoderName = encoderName.trim().toLowerCase(Locale.ROOT); + if (ENCODER_NAME_TO_INSTANCE_MAPPING.containsKey(parsedEncoderName)) { + return ENCODER_NAME_TO_INSTANCE_MAPPING.get(parsedEncoderName); + } else { + throw new IllegalArgumentException("Unknown DocIdEncoder " + encoderName); + } + } + } + } + + static class Bit24Encoder implements DocIdEncoder { + @Override + public void encode(IndexOutput out, int start, int count, int[] docIds) throws IOException { + int i; + for (i = 0; i < count - 7; i += 8) { + int doc1 = docIds[i]; + int doc2 = docIds[i + 1]; + int doc3 = docIds[i + 2]; + int doc4 = docIds[i + 3]; + int doc5 = docIds[i + 4]; + int doc6 = docIds[i + 5]; + int doc7 = docIds[i + 6]; + int doc8 = docIds[i + 7]; + long l1 = (doc1 & 0xffffffL) << 40 | (doc2 & 0xffffffL) << 16 | ((doc3 >>> 8) & 0xffffL); + long l2 = + (doc3 & 0xffL) << 56 + | (doc4 & 0xffffffL) << 32 + | (doc5 & 0xffffffL) << 8 + | ((doc6 >> 16) & 0xffL); + long l3 = (doc6 & 0xffffL) << 48 | (doc7 & 0xffffffL) << 24 | (doc8 & 0xffffffL); + out.writeLong(l1); + out.writeLong(l2); + out.writeLong(l3); + } + for (; i < count; ++i) { + out.writeShort((short) (docIds[i] >>> 8)); + out.writeByte((byte) docIds[i]); + } + } + + @Override + public void decode(IndexInput in, int start, int count, int[] docIDs) throws IOException { + int i; + for (i = 0; i < count - 7; i += 8) { + long l1 = in.readLong(); + long l2 = in.readLong(); + long l3 = in.readLong(); + docIDs[i] = (int) (l1 >>> 40); + docIDs[i + 1] = (int) (l1 >>> 16) & 0xffffff; + docIDs[i + 2] = (int) (((l1 & 0xffff) << 8) | (l2 >>> 56)); + docIDs[i + 3] = (int) (l2 >>> 32) & 0xffffff; + docIDs[i + 4] = (int) (l2 >>> 8) & 0xffffff; + docIDs[i + 5] = (int) (((l2 & 0xff) << 16) | (l3 >>> 48)); + docIDs[i + 6] = (int) (l3 >>> 24) & 0xffffff; + docIDs[i + 7] = (int) l3 & 0xffffff; + } + for (; i < count; ++i) { + docIDs[i] = (Short.toUnsignedInt(in.readShort()) << 8) | Byte.toUnsignedInt(in.readByte()); + } + } + } + + static class Bit21With2StepsEncoder implements DocIdEncoder { + @Override + public void encode(IndexOutput out, int start, int count, int[] docIds) throws IOException { + int i = 0; + for (; i < count - 2; i += 3) { + long packedLong = + ((docIds[i] & 0x001FFFFFL) << 42) + | ((docIds[i + 1] & 0x001FFFFFL) << 21) + | (docIds[i + 2] & 0x001FFFFFL); + out.writeLong(packedLong); + } + for (; i < count; i++) { + out.writeInt(docIds[i]); + } + } + + @Override + public void decode(IndexInput in, int start, int count, int[] docIDs) throws IOException { + int i = 0; + for (; i < count - 2; i += 3) { + long packedLong = in.readLong(); + docIDs[i] = (int) (packedLong >>> 42); + docIDs[i + 1] = (int) ((packedLong & 0x000003FFFFE00000L) >>> 21); + docIDs[i + 2] = (int) (packedLong & 0x001FFFFFL); + } + for (; i < count; i++) { + docIDs[i] = in.readInt(); + } + } + } + + /** + * Variation of @{@link Bit21With2StepsEncoder} but uses 3 loops to decode the array of DocIds. + * Comparatively better than @{@link Bit21With2StepsEncoder} on aarch64 with JDK 22 + */ + static class Bit21With3StepsEncoder implements DocIdEncoder { + + @Override + public void encode(IndexOutput out, int start, int count, int[] docIds) throws IOException { + int i = 0; + for (; i < count - 8; i += 9) { + long l1 = + ((docIds[i] & 0x001FFFFFL) << 42) + | ((docIds[i + 1] & 0x001FFFFFL) << 21) + | (docIds[i + 2] & 0x001FFFFFL); + long l2 = + ((docIds[i + 3] & 0x001FFFFFL) << 42) + | ((docIds[i + 4] & 0x001FFFFFL) << 21) + | (docIds[i + 5] & 0x001FFFFFL); + long l3 = + ((docIds[i + 6] & 0x001FFFFFL) << 42) + | ((docIds[i + 7] & 0x001FFFFFL) << 21) + | (docIds[i + 8] & 0x001FFFFFL); + out.writeLong(l1); + out.writeLong(l2); + out.writeLong(l3); + } + for (; i < count - 2; i += 3) { + long packedLong = + ((docIds[i] & 0x001FFFFFL) << 42) + | ((docIds[i + 1] & 0x001FFFFFL) << 21) + | (docIds[i + 2] & 0x001FFFFFL); + out.writeLong(packedLong); + } + for (; i < count; i++) { + out.writeInt(docIds[i]); + } + } + + @Override + public void decode(IndexInput in, int start, int count, int[] docIDs) throws IOException { + int i = 0; + for (; i < count - 8; i += 9) { + long l1 = in.readLong(); + long l2 = in.readLong(); + long l3 = in.readLong(); + docIDs[i] = (int) (l1 >>> 42); + docIDs[i + 1] = (int) ((l1 & 0x000003FFFFE00000L) >>> 21); + docIDs[i + 2] = (int) (l1 & 0x001FFFFFL); + docIDs[i + 3] = (int) (l2 >>> 42); + docIDs[i + 4] = (int) ((l2 & 0x000003FFFFE00000L) >>> 21); + docIDs[i + 5] = (int) (l2 & 0x001FFFFFL); + docIDs[i + 6] = (int) (l3 >>> 42); + docIDs[i + 7] = (int) ((l3 & 0x000003FFFFE00000L) >>> 21); + docIDs[i + 8] = (int) (l3 & 0x001FFFFFL); + } + for (; i < count - 2; i += 3) { + long packedLong = in.readLong(); + docIDs[i] = (int) (packedLong >>> 42); + docIDs[i + 1] = (int) ((packedLong & 0x000003FFFFE00000L) >>> 21); + docIDs[i + 2] = (int) (packedLong & 0x001FFFFFL); + } + for (; i < count; i++) { + docIDs[i] = in.readInt(); + } + } + } + + static class Bit32Encoder implements DocIdEncoder { + + @Override + public void encode(IndexOutput out, int start, int count, int[] docIds) throws IOException { + for (int i = 0; i < count; i++) { + out.writeInt(docIds[i]); + } + } + + @Override + public void decode(IndexInput in, int start, int count, int[] docIds) throws IOException { + for (int i = 0; i < count; i++) { + docIds[i] = in.readInt(); + } + } + } + + private static void parseInput() { + String inputScaleFactor = System.getProperty("docIdEncoding.inputScaleFactor"); + + if (inputScaleFactor != null) { + INPUT_SCALE_FACTOR = Integer.parseInt(inputScaleFactor); + } else { + INPUT_SCALE_FACTOR = 2_00_000; + } + + String inputFilePath = System.getProperty("docIdEncoding.inputFile"); + Scanner fileReader = null; + try { + if (inputFilePath != null) { + fileReader = new Scanner(Paths.get(inputFilePath), Charset.defaultCharset()); + } else { + fileReader = + new Scanner( + Objects.requireNonNull( + DocIdEncodingBenchmark.class.getResourceAsStream( + "/org.apache.lucene.benchmark.jmh/docIds_bpv21.txt")), Review Comment: Implemented the testing as a UT in `TestDocIdEncoding` -- 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.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org