start: disk usage on /l: + df -h /l Filesystem Size Used Avail Use% Mounted on /dev/nvme1n1p1 880G 351G 485G 42% / + export ANT_HOME=/usr/local/src/apache-ant-1.9.5 + ANT_HOME=/usr/local/src/apache-ant-1.9.5 + export JAVA_HOME=/usr/lib/jvm/java-25-openjdk + JAVA_HOME=/usr/lib/jvm/java-25-openjdk + export GRADLE_HOME=/usr/local/src/gradle-2.9 + GRADLE_HOME=/usr/local/src/gradle-2.9 + export PATH=/usr/local/src/apache-ant-1.9.5/bin:/usr/lib/jvm/java-25-openjdk/bin:/usr/local/src/gradle-2.9/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games + PATH=/usr/local/src/apache-ant-1.9.5/bin:/usr/lib/jvm/java-25-openjdk/bin:/usr/local/src/gradle-2.9/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games ++ date + echo -e '\n\nFri May 15 02:45:27 PM EDT 2026: now start nightly benchmarks' Fri May 15 02:45:27 PM EDT 2026: now start nightly benchmarks + pkill java + true + pkill mencoder + true + cd /l/trunk.nightly/lucene + git checkout main Already on 'main' Your branch is up to date with 'origin/main'. + git pull origin main From https://gitbox.apache.org/repos/asf/lucene * branch main -> FETCH_HEAD dbf0d1426f1..de92f115a31 main -> origin/main Updating dbf0d1426f1..de92f115a31 Fast-forward .../plugins/java/ApplyForbiddenApisPlugin.java | 15 + .../plugins/java/ShowFailedTestsAtEndPlugin.java | 9 +- gradle/libs.versions.toml | 15 +- .../forbidden-apis/non-standard/junit4.txt | 209 ++ lucene/CHANGES.txt | 15 + lucene/MIGRATE.md | 31 +- .../lucene/analysis/classic/ClassicTokenizer.java | 4 +- .../lucene/analysis/core/KeywordTokenizer.java | 4 +- .../lucene/analysis/core/UpperCaseFilter.java | 2 +- .../apache/lucene/analysis/cz/CzechAnalyzer.java | 2 +- .../apache/lucene/analysis/de/GermanAnalyzer.java | 2 +- .../apache/lucene/analysis/el/GreekAnalyzer.java | 2 +- .../analysis/email/UAX29URLEmailTokenizer.java | 4 +- .../lucene/analysis/en/PorterStemFilter.java | 2 +- .../analysis/miscellaneous/ASCIIFoldingFilter.java | 2 +- .../analysis/miscellaneous/EmptyTokenStream.java | 2 +- .../miscellaneous/TruncateTokenFilter.java | 2 +- .../analysis/ngram/EdgeNGramTokenFilter.java | 2 +- .../lucene/analysis/ngram/NGramTokenFilter.java | 2 +- .../analysis/no/NorwegianNormalizationFilter.java | 2 +- .../analysis/ro/RomanianNormalizationFilter.java | 2 +- .../analysis/shingle/ShingleAnalyzerWrapper.java | 2 +- .../lucene/analysis/sinks/TeeSinkTokenFilter.java | 6 +- .../lucene/analysis/snowball/SnowballFilter.java | 2 +- .../lucene/analysis/tr/ApostropheFilter.java | 2 +- .../lucene/analysis/tr/TurkishLowerCaseFilter.java | 2 +- .../apache/lucene/analysis/util/ElisionFilter.java | 2 +- .../analysis/wikipedia/WikipediaTokenizer.java | 2 +- lucene/core/src/java/module-info.java | 1 + .../apache/lucene/analysis/CachingTokenFilter.java | 4 +- .../analysis/standard/StandardTokenizer.java | 4 +- .../Lucene90CompressingTermVectorsReader.java | 2 +- .../document/LatLonPointDistanceFeatureQuery.java | 2 +- .../lucene/document/LongDistanceFeatureQuery.java | 2 +- .../document/SortedSetDocValuesRangeQuery.java | 178 +- .../document/SortedSkipperScorerSupplier.java | 179 ++ .../lucene/document/column/BinaryColumn.java | 57 + .../org/apache/lucene/document/column/Column.java | 77 + .../apache/lucene/document/column/ColumnBatch.java | 39 + .../lucene/document/column/ColumnFieldAdapter.java | 207 ++ .../lucene/document/column/ColumnValidation.java | 215 ++ .../apache/lucene/document/column/LongColumn.java | 110 + .../lucene/document/column/LongTupleCursor.java | 45 + .../lucene/document/column/LongValuesCursor.java | 111 + .../lucene/document/column/ObjectTupleCursor.java | 48 + .../lucene/document/column/VectorColumn.java | 60 + .../lucene/document/column/package-info.java | 67 + .../java/org/apache/lucene/geo/Tessellator.java | 4 +- .../index/ConcurrentApproximatePriorityQueue.java | 2 +- .../java/org/apache/lucene/index/DocValues.java | 10 +- .../org/apache/lucene/index/DocsWithFieldSet.java | 32 + .../org/apache/lucene/index/DocumentsWriter.java | 38 + .../lucene/index/DocumentsWriterFlushControl.java | 2 +- .../lucene/index/DocumentsWriterPerThread.java | 88 +- .../java/org/apache/lucene/index/IndexWriter.java | 36 + .../org/apache/lucene/index/IndexingChain.java | 531 +++- .../lucene/index/NumericDocValuesWriter.java | 16 + .../org/apache/lucene/index/PointValuesWriter.java | 90 + .../java/org/apache/lucene/index/SegmentInfos.java | 22 +- .../lucene/index/SortedNumericDocValuesWriter.java | 35 + .../src/java/org/apache/lucene/index/Sorter.java | 89 +- .../src/java/org/apache/lucene/index/Term.java | 2 +- .../org/apache/lucene/search/BlendedTermQuery.java | 2 +- .../org/apache/lucene/search/CachingCollector.java | 2 +- .../org/apache/lucene/search/PhrasePositions.java | 4 +- .../java/org/apache/lucene/search/WANDScorer.java | 2 +- .../apache/lucene/store/ByteBuffersDataInput.java | 6 +- .../apache/lucene/store/ByteBuffersDirectory.java | 4 +- .../org/apache/lucene/store/NIOFSDirectory.java | 2 +- .../apache/lucene/store/NativeFSLockFactory.java | 2 +- .../apache/lucene/util/StrictStringTokenizer.java | 4 +- .../util/compress/LowercaseAsciiCompression.java | 2 +- .../util/hnsw/HnswConcurrentMergeBuilder.java | 22 + .../apache/lucene/util/hnsw/HnswGraphBuilder.java | 62 +- .../lucene/util/packed/PackedLongValues.java | 36 +- .../document/column/ColumnBatchTestUtil.java | 527 ++++ .../column/TestColumnBatchBinaryColumn.java | 696 +++++ .../document/column/TestColumnBatchLongColumn.java | 1213 ++++++++ .../column/TestColumnBatchVectorColumn.java | 470 +++ .../lucene/index/TestClassloadingDeadlock.java | 2 +- .../lucene/index/TestColumnBatchIndexing.java | 1646 +++++++++++ .../apache/lucene/index/TestDocsWithFieldSet.java | 50 + .../apache/lucene/search/TestDocValuesQueries.java | 55 + .../lucene/expressions/TestDemoExpressions.java | 34 +- .../lucene/expressions/TestExpressionRescorer.java | 25 +- .../expressions/TestExpressionSortField.java | 8 +- .../lucene/expressions/TestExpressionSorts.java | 25 +- .../expressions/TestExpressionValidation.java | 13 +- .../expressions/TestExpressionValueSource.java | 31 +- .../lucene/expressions/js/CompilerTestCase.java | 4 +- .../lucene/expressions/js/TestAPISanity.java | 2 + .../lucene/expressions/js/TestCustomFunctions.java | 17 + .../lucene/expressions/js/TestExpressionMath.java | 6 +- .../expressions/js/TestJavascriptCompiler.java | 13 + .../expressions/js/TestJavascriptFunction.java | 27 + .../expressions/js/TestJavascriptOperations.java | 28 + .../lucene/expressions/js/TestVariableContext.java | 10 + .../search/highlight/QueryTermExtractor.java | 6 +- lucene/licenses/apiguardian-api-1.1.2.jar.sha1 | 1 + lucene/licenses/apiguardian-api-LICENSE-ASL.txt | 202 ++ lucene/licenses/apiguardian-api-NOTICE.txt | 0 lucene/licenses/jspecify-1.0.0.jar.sha1 | 1 + lucene/licenses/jspecify-LICENSE-ASL.txt | 202 ++ lucene/licenses/jspecify-NOTICE.txt | 0 lucene/licenses/junit-jupiter-6.0.3.jar.sha1 | 1 + lucene/licenses/junit-jupiter-api-6.0.3.jar.sha1 | 1 + .../licenses/junit-jupiter-engine-6.0.3.jar.sha1 | 1 + .../licenses/junit-jupiter-params-6.0.3.jar.sha1 | 1 + .../licenses/junit-platform-testkit-6.0.3.jar.sha1 | 1 + .../randomizedtesting-jupiter-0.3.0.jar.sha1 | 1 + .../randomizedtesting-jupiter-LICENSE-ASL.txt | 202 ++ .../licenses/randomizedtesting-jupiter-NOTICE.txt | 0 .../lucene/index/memory/TestMemoryIndex.java | 84 +- .../memory/TestMemoryIndexAgainstDirectory.java | 228 +- .../index/memory/TestSlicedIntBlockPool.java | 32 +- .../lucene/misc/index/MultiPassIndexSplitter.java | 2 +- .../org/apache/lucene/misc/store/RAFDirectory.java | 2 +- .../lucene/monitor/SuffixingNGramTokenFilter.java | 2 +- .../apache/lucene/queries/spans/SpanOrQuery.java | 2 +- .../queryparser/charstream/FastCharStream.java | 20 +- .../flexible/core/util/QueryNodeOperation.java | 2 +- .../complexPhrase/TestComplexPhraseQuery.java | 17 +- .../lucene/sandbox/search/CoveringScorer.java | 2 +- .../spatial4j/ShapeRectRelationTestCase.java | 4 - .../spatial3d/tests/RandomGeo3dShapeGenerator.java | 3 +- .../search/suggest/fst/TestBytesRefSorters.java | 3 +- lucene/test-framework/build.gradle | 6 + lucene/test-framework/src/java/module-info.java | 4 + .../lucene/tests/analysis/MockLowerCaseFilter.java | 2 +- .../lucene/tests/analysis/MockTokenizer.java | 5 +- .../org/apache/lucene/tests/geo/GeoTestUtil.java | 4 +- .../org/apache/lucene/tests/geo/ShapeTestUtil.java | 3 +- ...leDirectory.java => AssertDirectoryClosed.java} | 22 +- .../lucene/tests/util/BeforeAfterCallback.java | 24 + .../lucene/tests/util/CallbacksToRuleAdapter.java | 50 + .../lucene/tests/util/CustomMethodOrderer.java | 50 + .../tests/util/EnsureSequentialExecution.java | 32 + .../org/apache/lucene/tests/util/FieldToType.java | 101 + .../apache/lucene/tests/util/IsSystemThread.java | 54 + .../apache/lucene/tests/util/LuceneTestCase.java | 3049 +------------------- .../lucene/tests/util/LuceneTestCaseJupiter.java | 633 ++++ .../lucene/tests/util/LuceneTestCaseParent.java | 2834 ++++++++++++++++++ .../lucene/tests/util/QuickPatchThreadsFilter.java | 34 +- .../apache/lucene/tests/util/RemoveUponClose.java | 60 - .../tests/util/RunListenerPrintReproduceInfo.java | 195 +- ...ClassEnv.java => SetupAndRestoreStaticEnv.java} | 58 +- .../lucene/tests/util/SuiteFailureState.java | 22 + .../org/apache/lucene/tests/util/TagState.java | 72 + ...lesCleanup.java => TemporaryFilesSupplier.java} | 145 +- .../org/apache/lucene/tests/util/TestEnvInfo.java | 164 ++ .../tests/util/TestRuleAssertionsRequired.java | 43 +- .../lucene/tests/util/TestRuleLimitSysouts.java | 4 +- .../lucene/tests/util/TestRuleMarkFailure.java | 16 +- .../util/TestRuleSetupAndRestoreInstanceEnv.java | 6 +- .../org/apache/lucene/tests/util/TestUtil.java | 3 +- .../util/VerifyTestClassNamingConvention.java | 5 +- .../tests/search/TestBaseExplanationTestCase.java | 2 +- .../tests/util/TestFailIfDirectoryNotClosed.java | 9 +- .../tests/util/TestLuceneTestCaseJupiter.java | 432 +++ versions.lock | 1384 ++++++++- 160 files changed, 14518 insertions(+), 3837 deletions(-) create mode 100644 gradle/validation/forbidden-apis/non-standard/junit4.txt create mode 100644 lucene/core/src/java/org/apache/lucene/document/SortedSkipperScorerSupplier.java create mode 100644 lucene/core/src/java/org/apache/lucene/document/column/BinaryColumn.java create mode 100644 lucene/core/src/java/org/apache/lucene/document/column/Column.java create mode 100644 lucene/core/src/java/org/apache/lucene/document/column/ColumnBatch.java create mode 100644 lucene/core/src/java/org/apache/lucene/document/column/ColumnFieldAdapter.java create mode 100644 lucene/core/src/java/org/apache/lucene/document/column/ColumnValidation.java create mode 100644 lucene/core/src/java/org/apache/lucene/document/column/LongColumn.java create mode 100644 lucene/core/src/java/org/apache/lucene/document/column/LongTupleCursor.java create mode 100644 lucene/core/src/java/org/apache/lucene/document/column/LongValuesCursor.java create mode 100644 lucene/core/src/java/org/apache/lucene/document/column/ObjectTupleCursor.java create mode 100644 lucene/core/src/java/org/apache/lucene/document/column/VectorColumn.java create mode 100644 lucene/core/src/java/org/apache/lucene/document/column/package-info.java create mode 100644 lucene/core/src/test/org/apache/lucene/document/column/ColumnBatchTestUtil.java create mode 100644 lucene/core/src/test/org/apache/lucene/document/column/TestColumnBatchBinaryColumn.java create mode 100644 lucene/core/src/test/org/apache/lucene/document/column/TestColumnBatchLongColumn.java create mode 100644 lucene/core/src/test/org/apache/lucene/document/column/TestColumnBatchVectorColumn.java create mode 100644 lucene/core/src/test/org/apache/lucene/index/TestColumnBatchIndexing.java create mode 100644 lucene/licenses/apiguardian-api-1.1.2.jar.sha1 create mode 100644 lucene/licenses/apiguardian-api-LICENSE-ASL.txt create mode 100644 lucene/licenses/apiguardian-api-NOTICE.txt create mode 100644 lucene/licenses/jspecify-1.0.0.jar.sha1 create mode 100644 lucene/licenses/jspecify-LICENSE-ASL.txt create mode 100644 lucene/licenses/jspecify-NOTICE.txt create mode 100644 lucene/licenses/junit-jupiter-6.0.3.jar.sha1 create mode 100644 lucene/licenses/junit-jupiter-api-6.0.3.jar.sha1 create mode 100644 lucene/licenses/junit-jupiter-engine-6.0.3.jar.sha1 create mode 100644 lucene/licenses/junit-jupiter-params-6.0.3.jar.sha1 create mode 100644 lucene/licenses/junit-platform-testkit-6.0.3.jar.sha1 create mode 100644 lucene/licenses/randomizedtesting-jupiter-0.3.0.jar.sha1 create mode 100644 lucene/licenses/randomizedtesting-jupiter-LICENSE-ASL.txt create mode 100644 lucene/licenses/randomizedtesting-jupiter-NOTICE.txt rename lucene/test-framework/src/java/org/apache/lucene/tests/util/{CloseableDirectory.java => AssertDirectoryClosed.java} (70%) create mode 100644 lucene/test-framework/src/java/org/apache/lucene/tests/util/BeforeAfterCallback.java create mode 100644 lucene/test-framework/src/java/org/apache/lucene/tests/util/CallbacksToRuleAdapter.java create mode 100644 lucene/test-framework/src/java/org/apache/lucene/tests/util/CustomMethodOrderer.java create mode 100644 lucene/test-framework/src/java/org/apache/lucene/tests/util/EnsureSequentialExecution.java create mode 100644 lucene/test-framework/src/java/org/apache/lucene/tests/util/FieldToType.java create mode 100644 lucene/test-framework/src/java/org/apache/lucene/tests/util/IsSystemThread.java create mode 100644 lucene/test-framework/src/java/org/apache/lucene/tests/util/LuceneTestCaseJupiter.java create mode 100644 lucene/test-framework/src/java/org/apache/lucene/tests/util/LuceneTestCaseParent.java delete mode 100644 lucene/test-framework/src/java/org/apache/lucene/tests/util/RemoveUponClose.java rename lucene/test-framework/src/java/org/apache/lucene/tests/util/{TestRuleSetupAndRestoreClassEnv.java => SetupAndRestoreStaticEnv.java} (89%) create mode 100644 lucene/test-framework/src/java/org/apache/lucene/tests/util/SuiteFailureState.java create mode 100644 lucene/test-framework/src/java/org/apache/lucene/tests/util/TagState.java rename lucene/test-framework/src/java/org/apache/lucene/tests/util/{TestRuleTemporaryFilesCleanup.java => TemporaryFilesSupplier.java} (72%) create mode 100644 lucene/test-framework/src/java/org/apache/lucene/tests/util/TestEnvInfo.java create mode 100644 lucene/test-framework/src/test/org/apache/lucene/tests/util/TestLuceneTestCaseJupiter.java + ../gradlew clean Starting a Gradle Daemon (subsequent builds will be faster) > Task :build-infra:compileJava > Task :build-infra:pluginDescriptors UP-TO-DATE > Task :build-infra:processResources UP-TO-DATE > Task :build-infra:classes > Task :build-infra:jar The eclint tool location is not set ('lucene.tool.eclint' option), will not apply eclint checks. The eclint tool location is not set ('lucene.tool.eclint' option), will not apply eclint checks. > Task :lucene:clean UP-TO-DATE > Task :lucene:distribution:clean UP-TO-DATE > Task :lucene:analysis:clean UP-TO-DATE > Task :lucene:analysis.tests:clean > Task :lucene:documentation:clean UP-TO-DATE > Task :lucene:distribution.tests:clean > Task :lucene:core.tests:clean > Task :lucene:classification:clean > Task :lucene:demo:clean > Task :lucene:expressions:clean > Task :lucene:grouping:clean > Task :lucene:memory:clean > Task :lucene:benchmark:clean > Task :lucene:codecs:clean > Task :lucene:join:clean > Task :lucene:highlighter:clean > Task :lucene:facet:clean > Task :lucene:misc:clean > Task :lucene:monitor:clean > Task :lucene:replicator:clean > Task :lucene:spatial-test-fixtures:clean > Task :lucene:backward-codecs:clean > Task :lucene:spatial-extras:clean > Task :lucene:luke:clean > Task :lucene:spatial3d:clean > Task :lucene:analysis:icu:clean > Task :lucene:suggest:clean > Task :lucene:benchmark-jmh:clean > Task :lucene:analysis:morfologik.tests:clean > Task :lucene:sandbox:clean > Task :lucene:queries:clean > Task :lucene:analysis:morfologik:clean > Task :lucene:queryparser:clean > Task :lucene:analysis:opennlp:clean > Task :lucene:analysis:phonetic:clean > Task :lucene:analysis:nori:clean > Task :lucene:analysis:kuromoji:clean > Task :lucene:analysis:smartcn:clean > Task :lucene:analysis:stempel:clean > Task :lucene:test-framework:clean > Task :lucene:analysis:common:clean > Task :lucene:core:clean BUILD SUCCESSFUL in 7s 46 actionable tasks: 40 executed, 6 up-to-date Consider enabling configuration cache to speed up this build: https://docs.gradle.org/9.5.0/userguide/configuration_cache_enabling.html + ../gradlew jar + cd /l/util.nightly + echo 'activate luceneutil venv' activate luceneutil venv + make env make: Nothing to be done for 'env'. + source .venv/bin/activate ++ deactivate nondestructive ++ '[' -n '' ']' ++ '[' -n '' ']' ++ hash -r ++ '[' -n '' ']' ++ unset VIRTUAL_ENV ++ unset VIRTUAL_ENV_PROMPT ++ '[' '!' nondestructive = nondestructive ']' ++ case "$(uname)" in +++ uname ++ export VIRTUAL_ENV=/l/util.nightly/.venv ++ VIRTUAL_ENV=/l/util.nightly/.venv ++ _OLD_VIRTUAL_PATH=/usr/local/src/apache-ant-1.9.5/bin:/usr/lib/jvm/java-25-openjdk/bin:/usr/local/src/gradle-2.9/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games ++ PATH=/l/util.nightly/.venv/bin:/usr/local/src/apache-ant-1.9.5/bin:/usr/lib/jvm/java-25-openjdk/bin:/usr/local/src/gradle-2.9/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games ++ export PATH ++ VIRTUAL_ENV_PROMPT=.venv ++ export VIRTUAL_ENV_PROMPT ++ '[' -n '' ']' ++ '[' -z '' ']' ++ _OLD_VIRTUAL_PS1= ++ PS1='(.venv) ' ++ export PS1 ++ hash -r + rm -rf build + mkdir build + git pull origin main From github.com:mikemccand/luceneutil * branch main -> FETCH_HEAD Already up to date. + echo 'Run gradle test' Run gradle test + python3 -u /l/util.nightly/src/python/runNightlyGradleTestPrecommit.py ***USING BIG LINE FILE*** Using java from: /usr/lib/jvm/java-25-openjdk/bin/ gradle test log: /l/logs.nightly/ant_test/2026.05.15.lucene-tests.txt took: 1.4 min gradle precommit log: /l/logs.nightly/ant_test/2026.05.15.precommit.txt took: 0.5 min + echo 'Run lucene nightly' Run lucene nightly + python -uO /l/util.nightly/src/python/nightlyBench.py -run ***USING BIG LINE FILE*** Using java from: /usr/lib/jvm/java-25-openjdk/bin/ NOTE: perf executable is /usr/sbin/perf; will collect aggregate CPU profiling data NOTE: vmstat executable is /usr/sbin/vmstat; will collect system-wide CPU/IO telemetry NOTE: gnuplot executable is /usr/sbin/gnuplot; will generate system-wide CPU/IO graphs from vmstat WARNING: perf SIMD counters not available on this CPU; disabling SIMD validation NOTE: perf executable is /usr/sbin/perf; will collect aggregate CPU profiling data GitHub pull request counts: 303 open, 3952 closed Removing old JFR /l/logs.nightly/bench-search-nightly-nightly-14.jfr... Removing old JFR /l/logs.nightly/bench-search-nightly-nightly-13.jfr... Removing old JFR /l/logs.nightly/bench-search-nightly-nightly-5.jfr... Removing old JFR /l/logs.nightly/bench-search-nightly-nightly-0.jfr... Removing old JFR /l/logs.nightly/bench-search-nightly-nightly-17.jfr... Removing old JFR /l/logs.nightly/bench-search-nightly-nightly-19.jfr... Removing old JFR /l/logs.nightly/bench-search-nightly-nightly-16.jfr... Removing old JFR /l/logs.nightly/bench-search-nightly-nightly-11.jfr... Removing old JFR /l/logs.nightly/bench-search-nightly-nightly-8.jfr... Removing old JFR /l/logs.nightly/bench-search-nightly-nightly-18.jfr... Removing old JFR /l/logs.nightly/bench-search-nightly-nightly-1.jfr... Removing old JFR /l/logs.nightly/bench-search-nightly-nightly-7.jfr... Removing old JFR /l/logs.nightly/bench-search-nightly-nightly-9.jfr... Removing old JFR /l/logs.nightly/bench-search-nightly-nightly-2.jfr... Removing old JFR /l/logs.nightly/bench-search-nightly-nightly-3.jfr... Removing old JFR /l/logs.nightly/bench-search-nightly-nightly-6.jfr... Removing old JFR /l/logs.nightly/bench-search-nightly-nightly-12.jfr... Removing old JFR /l/logs.nightly/bench-search-nightly-nightly-4.jfr... Removing old JFR /l/logs.nightly/bench-search-nightly-nightly-10.jfr... Removing old JFR /l/logs.nightly/bench-search-nightly-nightly-15.jfr... [2026-05-15 14:49:32.469202] start [2026-05-15 14:49:32.469318] log dir /l/logs.nightly/2026.05.15.14.49.32 Java version (see also /l/logs.nightly/2026.05.15.14.49.32/java_version.txt): cmd='/usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -version 2>&1' WARNING: Using incubator modules: jdk.incubator.vector openjdk version "25.0.2" 2026-01-20 OpenJDK Runtime Environment (build 25.0.2) OpenJDK 64-Bit Server VM (build 25.0.2, mixed mode, sharing) WARNING: Using incubator modules: jdk.incubator.vector openjdk version "25.0.2" 2026-01-20 OpenJDK Runtime Environment (build 25.0.2) OpenJDK 64-Bit Server VM (build 25.0.2, mixed mode, sharing) Java full version (see also /l/logs.nightly/2026.05.15.14.49.32/java_full_version.txt): cmd='/usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -fullversion 2>&1' openjdk full version "25.0.2" Java version & all flags (see also /l/logs.nightly/2026.05.15.14.49.32/java_final_flags.txt): cmd='/usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -XX:+PrintFlagsFinal -version' [Global flags] ccstr AOTCache = {product} {default} ccstr AOTCacheOutput = {product} {default} bool AOTClassLinking = false {product} {default} ccstr AOTConfiguration = {product} {default} ccstr AOTMode = {product} {default} int ActiveProcessorCount = -1 {product} {default} uintx AdaptiveSizeDecrementScaleFactor = 4 {product} {default} uintx AdaptiveSizeMajorGCDecayTimeScale = 10 {product} {default} uintx AdaptiveSizePolicyInitializingSteps = 20 {product} {default} uintx AdaptiveSizePolicyOutputInterval = 0 {product} {default} uint AdaptiveSizePolicyWeight = 10 {product} {default} uint AdaptiveSizeThroughPutPolicy = 0 {product} {default} uint AdaptiveTimeWeight = 25 {product} {default} bool AdjustStackSizeForTLS = false {product} {default} bool AggressiveHeap = false {product} {default} bool AlignVector = false {C2 product} {default} ccstr AllocateHeapAt = {product} {default} int AllocateInstancePrefetchLines = 1 {product} {default} int AllocatePrefetchDistance = 256 {product} {default} intx AllocatePrefetchInstr = 0 {product} {default} int AllocatePrefetchLines = 3 {product} {default} int AllocatePrefetchStepSize = 64 {product} {default} int AllocatePrefetchStyle = 1 {product} {default} bool AllowParallelDefineClass = false {product} {default} bool AllowRedefinitionToAddDeleteMethods = false {product} {default} bool AllowUserSignalHandlers = false {product} {default} bool AllowVectorizeOnDemand = true {C2 product} {default} bool AlwaysActAsServerClassMachine = false {product} {default} bool AlwaysCompileLoopMethods = false {product} {default} bool AlwaysPreTouch = false {product} {default} bool AlwaysRestoreFPU = false {product} {default} bool AlwaysTenure = false {product} {default} ccstr ArchiveClassesAtExit = {product} {default} intx ArrayCopyLoadStoreMaxElem = 8 {C2 product} {default} size_t AsyncLogBufferSize = 2097152 {product} {default} intx AutoBoxCacheMax = 128 {C2 product} {default} bool AutoCreateSharedArchive = false {product} {default} intx BCEATraceLevel = 0 {product} {default} bool BackgroundCompilation = true {pd product} {default} bool BlockLayoutByFrequency = true {C2 product} {default} intx BlockLayoutMinDiamondPercentage = 20 {C2 product} {default} bool BlockLayoutRotateLoops = true {C2 product} {default} intx C1InlineStackLimit = 5 {C1 product} {default} intx C1MaxInlineLevel = 9 {C1 product} {default} intx C1MaxInlineSize = 35 {C1 product} {default} intx C1MaxRecursiveInlineLevel = 1 {C1 product} {default} intx C1MaxTrivialSize = 6 {C1 product} {default} bool C1OptimizeVirtualCallProfiling = true {C1 product} {default} bool C1ProfileBranches = true {C1 product} {default} bool C1ProfileCalls = true {C1 product} {default} bool C1ProfileCheckcasts = true {C1 product} {default} bool C1ProfileInlinedCalls = true {C1 product} {default} bool C1ProfileVirtualCalls = true {C1 product} {default} bool C1UpdateMethodData = true {C1 product} {default} intx CICompilerCount = 21 {product} {ergonomic} bool CICompilerCountPerCPU = true {product} {default} bool CITime = false {product} {default} bool CheckJNICalls = false {product} {default} bool ClassUnloading = true {product} {default} bool ClassUnloadingWithConcurrentMark = true {product} {default} bool ClipInlining = true {product} {default} uintx CodeCacheExpansionSize = 65536 {pd product} {default} bool CompactStrings = true {pd product} {default} ccstr CompilationMode = default {product} {default} ccstrlist CompileCommand = {product} {default} ccstr CompileCommandFile = {product} {default} ccstrlist CompileOnly = {product} {default} intx CompileThreshold = 10000 {pd product} {default} double CompileThresholdScaling = 1.000000 {product} {default} int CompilerThreadPriority = -1 {product} {default} intx CompilerThreadStackSize = 1024 {pd product} {default} size_t CompressedClassSpaceSize = 1073741824 {product} {default} uint ConcGCThreads = 0 {product} {default} intx ConditionalMoveLimit = 3 {C2 pd product} {default} int ContendedPaddingWidth = 128 {product} {default} bool CrashOnOutOfMemoryError = false {product} {default} bool CreateCoredumpOnCrash = true {product} {default} bool DTraceAllocProbes = false {product} {default} bool DTraceMethodProbes = false {product} {default} bool DTraceMonitorProbes = false {product} {default} bool DisableAttachMechanism = false {product} {default} bool DisableExplicitGC = false {product} {default} bool DisplayVMOutputToStderr = false {product} {default} bool DisplayVMOutputToStdout = false {product} {default} bool DoEscapeAnalysis = true {C2 product} {default} bool DontCompileHugeMethods = true {product} {default} ccstr DumpLoadedClassList = {product} {default} bool DumpReplayDataOnError = true {product} {default} bool EagerXrunInit = false {product} {default} intx EliminateAllocationArraySizeLimit = 64 {C2 product} {default} bool EliminateAllocations = true {C2 product} {default} bool EliminateAutoBox = true {C2 product} {default} bool EliminateLocks = true {C2 product} {default} bool EliminateNestedLocks = true {C2 product} {default} bool EnableContended = true {product} {default} bool EnableDynamicAgentLoading = true {product} {default} size_t ErgoHeapSizeLimit = 0 {product} {default} ccstr ErrorFile = {product} {default} bool ErrorFileToStderr = false {product} {default} bool ErrorFileToStdout = false {product} {default} uint64_t ErrorLogTimeout = 120 {product} {default} double EscapeAnalysisTimeout = 20.000000 {C2 product} {default} bool EstimateArgEscape = true {product} {default} bool ExecutingUnitTests = false {product} {default} bool ExitOnOutOfMemoryError = false {product} {default} bool ExplicitGCInvokesConcurrent = false {product} {default} bool ExtensiveErrorReports = false {product} {default} ccstr ExtraSharedClassListFile = {product} {default} bool FlightRecorder = false {product} {default} ccstr FlightRecorderOptions = {product} {default} bool ForceTimeHighResolution = false {product} {default} intx FreqInlineSize = 325 {C2 pd product} {default} uint FullGCHeapDumpLimit = 0 {manageable} {default} double G1ConcMarkStepDurationMillis = 10.000000 {product} {default} uint G1ConcRefinementThreads = 0 {product} {default} uint G1ConfidencePercent = 50 {product} {default} size_t G1HeapRegionSize = 0 {product} {default} uint G1HeapWastePercent = 5 {product} {default} uintx G1MixedGCCountTarget = 8 {product} {default} uintx G1PeriodicGCInterval = 0 {manageable} {default} bool G1PeriodicGCInvokesConcurrent = true {product} {default} double G1PeriodicGCSystemLoadThreshold = 0.000000 {manageable} {default} uint G1RSetUpdatingPauseTimePercent = 10 {product} {default} uint G1RefProcDrainInterval = 1000 {product} {default} uint G1ReservePercent = 10 {product} {default} uint G1SATBBufferEnqueueingThresholdPercent = 60 {product} {default} size_t G1SATBBufferSize = 1024 {product} {default} size_t G1UpdateBufferSize = 256 {product} {default} bool G1UseAdaptiveIHOP = true {product} {default} uint GCCardSizeInBytes = 512 {product} {default} uint GCDrainStackTargetSize = 64 {product} {default} uint GCHeapFreeLimit = 2 {product} {default} uintx GCPauseIntervalMillis = 0 {product} {default} uint GCTimeLimit = 98 {product} {default} uint GCTimeRatio = 99 {product} {default} size_t HeapBaseMinAddress = 2147483648 {pd product} {default} bool HeapDumpAfterFullGC = false {manageable} {default} bool HeapDumpBeforeFullGC = false {manageable} {default} int HeapDumpGzipLevel = 0 {manageable} {default} bool HeapDumpOnOutOfMemoryError = false {manageable} {default} ccstr HeapDumpPath = {manageable} {default} uintx HeapMaximumCompactionInterval = 20 {product} {default} uintx HeapSearchSteps = 3 {product} {default} size_t HeapSizePerGCThread = 43620760 {product} {default} bool IgnoreEmptyClassPaths = false {product} {default} bool IgnoreUnrecognizedVMOptions = false {product} {default} uintx IncreaseFirstTierCompileThresholdAt = 50 {product} {default} bool IncrementalInline = true {C2 product} {default} uintx InitialCodeCacheSize = 2555904 {pd product} {default} size_t InitialHeapSize = 34359738368 {product} {command line} double InitialRAMPercentage = 1.562500 {product} {default} uintx InitialSurvivorRatio = 8 {product} {default} uint InitialTenuringThreshold = 7 {product} {default} uint InitiatingHeapOccupancyPercent = 45 {product} {default} bool Inline = true {product} {default} ccstr InlineDataFile = {product} {default} intx InlineSmallCode = 2500 {C2 pd product} {default} bool InlineSynchronizedMethods = true {C1 product} {default} intx InteriorEntryAlignment = 16 {C2 pd product} {default} intx InterpreterProfilePercentage = 33 {product} {default} bool JavaMonitorsInStackTrace = true {product} {default} int JavaPriority10_To_OSPriority = -1 {product} {default} int JavaPriority1_To_OSPriority = -1 {product} {default} int JavaPriority2_To_OSPriority = -1 {product} {default} int JavaPriority3_To_OSPriority = -1 {product} {default} int JavaPriority4_To_OSPriority = -1 {product} {default} int JavaPriority5_To_OSPriority = -1 {product} {default} int JavaPriority6_To_OSPriority = -1 {product} {default} int JavaPriority7_To_OSPriority = -1 {product} {default} int JavaPriority8_To_OSPriority = -1 {product} {default} int JavaPriority9_To_OSPriority = -1 {product} {default} size_t LargePageHeapSizeThreshold = 134217728 {product} {default} size_t LargePageSizeInBytes = 0 {product} {default} intx LiveNodeCountInliningCutoff = 40000 {C2 product} {default} bool LoadExecStackDllInVMThread = true {product} {default} int LockingMode = 2 {product} {default} ccstr LogClassLoadingCauseFor = {product} {default} intx LoopMaxUnroll = 16 {C2 product} {default} intx LoopOptsCount = 43 {C2 product} {default} intx LoopPercentProfileLimit = 10 {C2 pd product} {default} uintx LoopStripMiningIter = 0 {C2 product} {default} uintx LoopStripMiningIterShortLoop = 0 {C2 product} {default} intx LoopUnrollLimit = 60 {C2 pd product} {default} intx LoopUnrollMin = 4 {C2 product} {default} bool LoopUnswitching = true {C2 product} {default} bool ManagementServer = false {product} {default} size_t MarkStackSize = 4194304 {product} {default} size_t MarkStackSizeMax = 536870912 {product} {default} uint MarkSweepAlwaysCompactCount = 4 {product} {default} uint MarkSweepDeadRatio = 5 {product} {default} intx MaxBCEAEstimateLevel = 5 {product} {default} intx MaxBCEAEstimateSize = 150 {product} {default} uint64_t MaxDirectMemorySize = 0 {product} {default} bool MaxFDLimit = true {product} {default} uintx MaxGCPauseMillis = 18446744073709551614 {product} {default} uintx MaxHeapFreeRatio = 100 {manageable} {default} size_t MaxHeapSize = 34359738368 {product} {command line} intx MaxInlineLevel = 15 {C2 product} {default} intx MaxInlineSize = 35 {C2 product} {default} intx MaxJNILocalCapacity = 65536 {product} {default} int MaxJavaStackTraceDepth = 1024 {product} {default} intx MaxJumpTableSize = 65000 {C2 product} {default} intx MaxJumpTableSparseness = 5 {C2 product} {default} intx MaxLabelRootDepth = 1100 {C2 product} {default} intx MaxLoopPad = 15 {C2 product} {default} size_t MaxMetaspaceExpansion = 5439488 {product} {default} uint MaxMetaspaceFreeRatio = 70 {product} {default} size_t MaxMetaspaceSize = 18446744073709551615 {product} {default} size_t MaxNewSize = 11453071360 {product} {ergonomic} intx MaxNodeLimit = 80000 {C2 product} {default} uint64_t MaxRAM = 137438953472 {pd product} {default} double MaxRAMPercentage = 25.000000 {product} {default} intx MaxRecursiveInlineLevel = 1 {C2 product} {default} uint MaxTenuringThreshold = 15 {product} {default} intx MaxTrivialSize = 6 {C2 product} {default} intx MaxVectorSize = 32 {C2 product} {default} size_t MetaspaceSize = 22020096 {product} {default} bool MethodFlushing = true {product} {default} size_t MinHeapDeltaBytes = 524288 {product} {ergonomic} uintx MinHeapFreeRatio = 0 {manageable} {default} size_t MinHeapSize = 34359738368 {product} {command line} intx MinJumpTableSize = 10 {C2 pd product} {default} size_t MinMetaspaceExpansion = 327680 {product} {default} uint MinMetaspaceFreeRatio = 40 {product} {default} double MinRAMPercentage = 50.000000 {product} {default} uintx MinSurvivorRatio = 3 {product} {default} size_t MinTLABSize = 2048 {product} {default} intx MultiArrayExpandLimit = 6 {C2 product} {default} uintx NUMAChunkResizeWeight = 20 {product} {default} size_t NUMAInterleaveGranularity = 2097152 {product} {default} size_t NUMASpaceResizeRate = 1073741824 {product} {default} bool NUMAStats = false {product} {default} ccstr NativeMemoryTracking = off {product} {default} bool NeverActAsServerClassMachine = false {pd product} {default} bool NeverTenure = false {product} {default} uintx NewRatio = 2 {product} {default} size_t NewSize = 11453071360 {product} {ergonomic} size_t NewSizeThreadIncrease = 5320 {pd product} {default} intx NmethodSweepActivity = 4 {product} {default} intx NodeLimitFudgeFactor = 2000 {C2 product} {default} uintx NonNMethodCodeHeapSize = 9371648 {pd product} {ergonomic} uintx NonProfiledCodeHeapSize = 121147392 {pd product} {ergonomic} intx NumberOfLoopInstrToAlign = 4 {C2 product} {default} int ObjectAlignmentInBytes = 8 {product lp64_product} {default} size_t OldPLABSize = 1024 {product} {default} bool OmitStackTraceInFastThrow = true {product} {default} ccstrlist OnError = {product} {default} ccstrlist OnOutOfMemoryError = {product} {default} intx OnStackReplacePercentage = 140 {pd product} {default} bool OptimizeFill = false {C2 product} {default} bool OptimizePtrCompare = true {C2 product} {default} bool OptimizeStringConcat = true {C2 product} {default} bool OptoBundling = false {C2 pd product} {default} intx OptoLoopAlignment = 16 {pd product} {default} bool OptoRegScheduling = true {C2 pd product} {default} bool OptoScheduling = false {C2 pd product} {default} uint PLABWeight = 75 {product} {default} bool PSChunkLargeArrays = true {product} {default} int ParGCArrayScanChunk = 50 {product} {default} uint ParallelGCBufferWastePct = 10 {product} {default} uint ParallelGCThreads = 83 {product} {default} bool ParallelRefProcBalancingEnabled = true {product} {default} bool ParallelRefProcEnabled = true {product} {default} bool PartialPeelAtUnsignedTests = true {C2 product} {default} bool PartialPeelLoop = true {C2 product} {default} intx PartialPeelNewPhiDelta = 0 {C2 product} {default} uint PausePadding = 1 {product} {default} intx PerBytecodeRecompilationCutoff = 200 {product} {default} intx PerBytecodeTrapLimit = 4 {product} {default} intx PerMethodRecompilationCutoff = 400 {product} {default} intx PerMethodTrapLimit = 100 {product} {default} bool PerfAllowAtExitRegistration = false {product} {default} bool PerfBypassFileSystemCheck = false {product} {default} int PerfDataMemorySize = 32768 {product} {default} ccstr PerfDataSaveFile = {product} {default} bool PerfDataSaveToFile = false {product} {default} bool PerfDisableSharedMem = false {product} {default} int PerfMaxStringConstLength = 1024 {product} {default} size_t PreTouchParallelChunkSize = 4194304 {pd product} {default} bool PreferInterpreterNativeStubs = false {pd product} {default} intx PrefetchCopyIntervalInBytes = 576 {product} {default} intx PrefetchScanIntervalInBytes = 576 {product} {default} bool PreserveFramePointer = false {pd product} {default} size_t PretenureSizeThreshold = 0 {product} {default} bool PrintClassHistogram = false {manageable} {default} bool PrintCodeCache = false {product} {default} bool PrintCodeCacheOnCompilation = false {product} {default} bool PrintCommandLineFlags = false {product} {default} bool PrintCompilation = false {product} {default} bool PrintConcurrentLocks = false {manageable} {default} bool PrintExtendedThreadInfo = false {product} {default} bool PrintFlagsFinal = true {product} {command line} bool PrintFlagsInitial = false {product} {default} bool PrintFlagsRanges = false {product} {default} bool PrintGC = false {product} {default} bool PrintGCDetails = false {product} {default} bool PrintHeapAtSIGBREAK = true {product} {default} bool PrintSharedArchiveAndExit = false {product} {default} bool PrintStringTableStatistics = false {product} {default} bool PrintTieredEvents = false {product} {default} bool PrintVMOptions = false {product} {default} bool PrintWarnings = true {product} {default} bool ProfileExceptionHandlers = true {product} {default} bool ProfileInterpreter = true {pd product} {default} intx ProfileMaturityPercentage = 20 {product} {default} uintx ProfiledCodeHeapSize = 121139200 {pd product} {ergonomic} uint PromotedPadding = 3 {product} {default} uintx QueuedAllocationWarningCount = 0 {product} {default} bool RangeCheckElimination = true {product} {default} bool ReassociateInvariants = true {C2 product} {default} bool RecordDynamicDumpInfo = false {product} {default} bool ReduceBulkZeroing = true {C2 product} {default} bool ReduceFieldZeroing = true {C2 product} {default} bool ReduceInitialCardMarks = true {C2 product} {default} bool ReduceSignalUsage = false {product} {default} bool RelaxAccessControlCheck = false {product} {default} ccstr ReplayDataFile = {product} {default} uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic} bool ResizePLAB = true {product} {default} bool ResizeTLAB = true {product} {default} bool RestoreMXCSROnJNICalls = false {product} {default} bool RestrictContended = true {product} {default} bool RestrictReservedStack = true {product} {default} bool RewriteBytecodes = true {pd product} {default} bool RewriteFrequentPairs = true {pd product} {default} bool SafepointTimeout = false {product} {default} double SafepointTimeoutDelay = 10000.000000 {product} {default} bool SegmentedCodeCache = true {product} {ergonomic} double SelfDestructTimer = 0.000000 {product} {default} ccstr SharedArchiveConfigFile = {product} {default} ccstr SharedArchiveFile = {product} {default} size_t SharedBaseAddress = 1660944384 {product} {default} ccstr SharedClassListFile = {product} {default} uint SharedSymbolTableBucketSize = 4 {product} {default} ccstr ShenandoahGCHeuristics = adaptive {product} {default} ccstr ShenandoahGCMode = satb {product} {default} bool ShowCodeDetailsInExceptionMessages = true {manageable} {default} bool ShowMessageBoxOnError = false {product} {default} bool ShrinkHeapInSteps = true {product} {default} size_t SoftMaxHeapSize = 34359738368 {manageable} {ergonomic} intx SoftRefLRUPolicyMSPerMB = 1000 {product} {default} bool SplitIfBlocks = true {C2 product} {default} intx StackRedPages = 1 {pd product} {default} intx StackReservedPages = 1 {pd product} {default} intx StackShadowPages = 20 {pd product} {default} bool StackTraceInThrowable = true {product} {default} intx StackYellowPages = 2 {pd product} {default} uintx StartAggressiveSweepingAt = 10 {product} {default} bool StartAttachListener = false {product} {default} ccstr StartFlightRecording = {product} {default} uint StringDeduplicationAgeThreshold = 3 {product} {default} uintx StringTableSize = 65536 {product} {default} bool SuperWordLoopUnrollAnalysis = true {C2 pd product} {default} bool SuperWordReductions = true {C2 product} {default} bool SuppressFatalErrorMessage = false {product} {default} uint SurvivorPadding = 3 {product} {default} uintx SurvivorRatio = 8 {product} {default} double SweeperThreshold = 15.000000 {product} {default} uintx TLABAllocationWeight = 35 {product} {default} uintx TLABRefillWasteFraction = 64 {product} {default} size_t TLABSize = 0 {product} {default} uintx TLABWasteIncrement = 4 {product} {default} uintx TLABWasteTargetPercent = 1 {product} {default} uint TargetPLABWastePct = 10 {product} {default} uint TargetSurvivorRatio = 50 {product} {default} uint TenuredGenerationSizeIncrement = 20 {product} {default} uint TenuredGenerationSizeSupplement = 80 {product} {default} uintx TenuredGenerationSizeSupplementDecay = 2 {product} {default} int ThreadPriorityPolicy = 0 {product} {default} bool ThreadPriorityVerbose = false {product} {default} intx ThreadStackSize = 1024 {pd product} {default} uint ThresholdTolerance = 10 {product} {default} intx Tier0BackedgeNotifyFreqLog = 10 {product} {default} intx Tier0InvokeNotifyFreqLog = 7 {product} {default} intx Tier0ProfilingStartPercentage = 200 {product} {default} intx Tier23InlineeNotifyFreqLog = 20 {product} {default} intx Tier2BackEdgeThreshold = 0 {product} {default} intx Tier2BackedgeNotifyFreqLog = 14 {product} {default} intx Tier2CompileThreshold = 0 {product} {default} intx Tier2InvokeNotifyFreqLog = 11 {product} {default} intx Tier3BackEdgeThreshold = 60000 {product} {default} intx Tier3BackedgeNotifyFreqLog = 13 {product} {default} intx Tier3CompileThreshold = 2000 {product} {default} intx Tier3DelayOff = 2 {product} {default} intx Tier3DelayOn = 5 {product} {default} intx Tier3InvocationThreshold = 200 {product} {default} intx Tier3InvokeNotifyFreqLog = 10 {product} {default} intx Tier3LoadFeedback = 5 {product} {default} intx Tier3MinInvocationThreshold = 100 {product} {default} intx Tier4BackEdgeThreshold = 40000 {product} {default} intx Tier4CompileThreshold = 15000 {product} {default} intx Tier4InvocationThreshold = 5000 {product} {default} intx Tier4LoadFeedback = 3 {product} {default} intx Tier4MinInvocationThreshold = 600 {product} {default} bool TieredCompilation = true {pd product} {default} intx TieredCompileTaskTimeout = 50 {product} {default} intx TieredRateUpdateMaxTime = 25 {product} {default} intx TieredRateUpdateMinTime = 1 {product} {default} intx TieredStopAtLevel = 4 {product} {default} ccstr TraceJVMTI = {product} {default} intx TrackedInitializationLimit = 50 {C2 product} {default} bool TrapBasedNullChecks = false {pd product} {default} bool TrapBasedRangeChecks = false {C2 pd product} {default} uint TrimNativeHeapInterval = 0 {product} {default} int TypeProfileArgsLimit = 2 {product} {default} uint TypeProfileLevel = 111 {pd product} {default} intx TypeProfileMajorReceiverPercent = 90 {C2 product} {default} int TypeProfileParmsLimit = 2 {product} {default} intx TypeProfileSubTypeCheckCommonThreshold = 50 {C2 product} {default} intx TypeProfileWidth = 2 {product} {default} int UnguardOnExecutionViolation = 0 {product} {default} bool UseAES = true {product} {default} int UseAVX = 2 {ARCH product} {default} bool UseAdaptiveGenerationSizePolicyAtMajorCollection = true {product} {default} bool UseAdaptiveGenerationSizePolicyAtMinorCollection = true {product} {default} bool UseAdaptiveNUMAChunkSizing = true {product} {default} bool UseAdaptiveSizeDecayMajorGCCost = true {product} {default} bool UseAdaptiveSizePolicy = true {product} {default} bool UseAdaptiveSizePolicyFootprintGoal = true {product} {default} bool UseAdaptiveSizePolicyWithSystemGC = false {product} {default} bool UseAddressNop = true {ARCH product} {default} bool UseBASE64Intrinsics = true {product} {default} bool UseBMI1Instructions = true {ARCH product} {default} bool UseBMI2Instructions = true {ARCH product} {default} bool UseBimorphicInlining = true {C2 product} {default} bool UseCLMUL = true {ARCH product} {default} bool UseCMoveUnconditionally = false {C2 product} {default} bool UseCodeCacheFlushing = true {product} {default} bool UseCompactObjectHeaders = false {product lp64_product} {default} bool UseCompiler = true {product} {default} bool UseCompressedClassPointers = true {product lp64_product} {default} bool UseCompressedOops = false {product lp64_product} {default} bool UseCondCardMark = false {product} {default} bool UseContainerSupport = true {product} {default} bool UseCountLeadingZerosInstruction = true {ARCH product} {default} bool UseCountTrailingZerosInstruction = true {ARCH product} {default} bool UseCountedLoopSafepoints = false {C2 product} {default} bool UseDivMod = true {C2 product} {default} bool UseDynamicNumberOfCompilerThreads = true {product} {default} bool UseDynamicNumberOfGCThreads = true {product} {default} bool UseFMA = true {product} {default} bool UseFPUForSpilling = true {C2 product} {default} bool UseFastJNIAccessors = true {product} {default} bool UseFastStosb = false {ARCH product} {default} bool UseG1GC = false {product} {default} bool UseGCOverheadLimit = true {product} {default} bool UseInlineCaches = true {product} {default} bool UseInterpreter = true {product} {default} bool UseJumpTables = true {C2 product} {default} bool UseLargePages = false {pd product} {default} bool UseLargePagesIndividualAllocation = false {pd product} {default} bool UseLoopCounter = true {product} {default} bool UseLoopInvariantCodeMotion = true {C1 product} {default} bool UseLoopPredicate = true {C2 product} {default} bool UseMaximumCompactionOnSystemGC = true {product} {default} bool UseNUMA = false {product} {default} bool UseNUMAInterleaving = false {product} {default} bool UseNewLongLShift = true {ARCH product} {default} bool UseOnStackReplacement = true {pd product} {default} bool UseOnlyInlinedBimorphic = true {C2 product} {default} bool UseOprofile = false {product} {default} bool UsePSAdaptiveSurvivorSizePolicy = true {product} {default} bool UseParallelGC = true {product} {command line} bool UsePerfData = true {product} {default} bool UsePopCountInstruction = true {product} {default} bool UseProfiledLoopPredicate = true {C2 product} {default} bool UseSHA = true {product} {default} int UseSSE = 4 {ARCH product} {default} bool UseSSE42Intrinsics = true {ARCH product} {default} bool UseSerialGC = false {product} {default} bool UseShenandoahGC = false {product} {default} bool UseSignalChaining = true {product} {default} bool UseStoreImmI16 = true {ARCH product} {default} bool UseStringDeduplication = false {product} {default} bool UseSubwordForMaxVector = true {C2 product} {default} bool UseSuperWord = true {C2 product} {default} bool UseSystemMemoryBarrier = false {product} {default} bool UseTLAB = true {product} {default} bool UseThreadPriorities = true {pd product} {default} bool UseTransparentHugePages = false {product} {default} bool UseTypeProfile = true {product} {default} bool UseTypeSpeculation = true {C2 product} {default} bool UseUnalignedLoadStores = true {ARCH product} {default} bool UseVectorCmov = false {C2 product} {default} bool UseXMMForArrayCopy = true {product} {default} bool UseXMMForObjInit = true {ARCH product} {default} bool UseXmmI2D = true {ARCH product} {default} bool UseXmmI2F = true {ARCH product} {default} bool UseXmmLoadAndClearUpper = true {ARCH product} {default} bool UseXmmRegToRegMoveAll = true {ARCH product} {default} bool UseZGC = false {product} {default} intx UserThreadWaitAttemptsAtExit = 30 {product} {default} int VMThreadPriority = -1 {product} {default} intx VMThreadStackSize = 1024 {pd product} {default} intx ValueMapInitialSize = 11 {C1 product} {default} intx ValueMapMaxLoopSize = 8 {C1 product} {default} intx ValueSearchLimit = 1000 {C2 product} {default} bool VerifySharedSpaces = false {product} {default} uint YoungGenerationSizeIncrement = 20 {product} {default} uint YoungGenerationSizeSupplement = 80 {product} {default} uintx YoungGenerationSizeSupplementDecay = 8 {product} {default} size_t YoungPLABSize = 4096 {product} {default} double ZAllocationSpikeTolerance = 2.000000 {product} {default} double ZCollectionInterval = 0.000000 {product} {default} double ZCollectionIntervalMajor = -1.000000 {product} {default} double ZCollectionIntervalMinor = -1.000000 {product} {default} bool ZCollectionIntervalOnly = false {product} {default} double ZFragmentationLimit = 5.000000 {product} {default} bool ZProactive = true {product} {default} bool ZUncommit = true {product} {default} uintx ZUncommitDelay = 300 {product} {default} double ZYoungCompactionLimit = 25.000000 {product} {default} bool ZeroTLAB = false {product} {default} WARNING: Using incubator modules: jdk.incubator.vector openjdk version "25.0.2" 2026-01-20 OpenJDK Runtime Environment (build 25.0.2) OpenJDK 64-Bit Server VM (build 25.0.2, mixed mode, sharing) Linux kernel version (see also /l/logs.nightly/2026.05.15.14.49.32/uname.txt): cmd='uname -a 2>&1' Linux beast3.mikemccandless.com 6.18.9-arch1-2 #1 SMP PREEMPT_DYNAMIC Mon, 09 Feb 2026 17:16:33 +0000 x86_64 GNU/Linux CPU governor/scaling/frequency (see also /l/logs.nightly/2026.05.15.14.49.32/cpu_frequency_info.txt): cmd='cpupower frequency-info' analyzing CPU 3: driver: amd-pstate-epp CPUs which run at the same hardware frequency: 3 CPUs which need to have their frequency coordinated by software: 3 energy performance preference: performance hardware limits: 554 MHz - 4.38 GHz available cpufreq governors: performance powersave current policy: frequency should be within 1.74 GHz and 4.38 GHz. The governor "performance" may decide which speed to use within this range. current CPU frequency: 4.35 GHz (asserted by call to kernel) boost state support: Supported: yes Active: yes amd-pstate limits: Highest Performance: 166. Maximum Frequency: 4.38 GHz. Nominal Performance: 110. Nominal Frequency: 2.90 GHz. Lowest Non-linear Performance: 66. Lowest Non-linear Frequency: 1.74 GHz. Lowest Performance: 21. Lowest Frequency: 550 MHz. Preferred Core Support: 1. Preferred Core Ranking: 166. CPU specifics (see also /l/logs.nightly/2026.05.15.14.49.32/lscpu.txt): cmd='lscpu' Architecture: x86_64 CPU op-mode(s): 32-bit, 64-bit Address sizes: 43 bits physical, 48 bits virtual Byte Order: Little Endian CPU(s): 128 On-line CPU(s) list: 0-127 Vendor ID: AuthenticAMD Model name: AMD Ryzen Threadripper 3990X 64-Core Processor CPU family: 23 Model: 49 Thread(s) per core: 2 Core(s) per socket: 64 Socket(s): 1 Stepping: 0 Frequency boost: enabled CPU(s) scaling MHz: 48% CPU max MHz: 4377.8730 CPU min MHz: 553.8280 BogoMIPS: 5834.95 Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip rdpid overflow_recov succor smca sev sev_es Virtualization: AMD-V L1d cache: 2 MiB (64 instances) L1i cache: 2 MiB (64 instances) L2 cache: 32 MiB (64 instances) L3 cache: 256 MiB (16 instances) NUMA node(s): 16 NUMA node0 CPU(s): 0-3,64-67 NUMA node1 CPU(s): 4-7,68-71 NUMA node2 CPU(s): 8-11,72-75 NUMA node3 CPU(s): 12-15,76-79 NUMA node4 CPU(s): 16-19,80-83 NUMA node5 CPU(s): 20-23,84-87 NUMA node6 CPU(s): 24-27,88-91 NUMA node7 CPU(s): 28-31,92-95 NUMA node8 CPU(s): 32-35,96-99 NUMA node9 CPU(s): 36-39,100-103 NUMA node10 CPU(s): 40-43,104-107 NUMA node11 CPU(s): 44-47,108-111 NUMA node12 CPU(s): 48-51,112-115 NUMA node13 CPU(s): 52-55,116-119 NUMA node14 CPU(s): 56-59,120-123 NUMA node15 CPU(s): 60-63,124-127 Vulnerability Gather data sampling: Not affected Vulnerability Ghostwrite: Not affected Vulnerability Indirect target selection: Not affected Vulnerability Itlb multihit: Not affected Vulnerability L1tf: Not affected Vulnerability Mds: Not affected Vulnerability Meltdown: Not affected Vulnerability Mmio stale data: Not affected Vulnerability Old microcode: Not affected Vulnerability Reg file data sampling: Not affected Vulnerability Retbleed: Vulnerable Vulnerability Spec rstack overflow: Vulnerable Vulnerability Spec store bypass: Vulnerable Vulnerability Spectre v1: Vulnerable: __user pointer sanitization and usercopy barriers only; no swapgs barriers Vulnerability Spectre v2: Vulnerable; IBPB: disabled; STIBP: disabled; PBRSB-eIBRS: Not affected; BHI: Not affected Vulnerability Srbds: Not affected Vulnerability Tsa: Not affected Vulnerability Tsx async abort: Not affected Vulnerability Vmscape: Vulnerable Full Linux version (see also /l/logs.nightly/2026.05.15.14.49.32/proc_version.txt): cmd='cat /proc/version' Linux version 6.18.9-arch1-2 (linux@archlinux) (gcc (GCC) 15.2.1 20260209, GNU ld (GNU Binutils) 2.46) #1 SMP PREEMPT_DYNAMIC Mon, 09 Feb 2026 17:16:33 +0000 Kernel boot command-line (see also /l/logs.nightly/2026.05.15.14.49.32/proc_cmdline.txt): cmd='cat /proc/cmdline' BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=d43378d5-fd9f-488a-a69b-73d83768f2d1 rw nowatchdog mitigations=off random.trust_cpu=1 nokaslr norandmaps loglevel=3 acpi_enforce_resources=lax amd_pstate=active cpufreq.default_governor=performance Loaded kernel modules (see also /l/logs.nightly/2026.05.15.14.49.32/lsmod.txt): cmd='lsmod' Module Size Used by nfsv3 81920 1 rpcsec_gss_krb5 36864 0 nfsv4 1335296 0 dns_resolver 16384 1 nfsv4 nfs 704512 6 nfsv4,nfsv3 netfs 622592 1 nfs veth 40960 0 nf_conntrack_netlink 61440 0 xt_nat 12288 19 xt_tcpudp 16384 22 iptable_raw 12288 1 xt_conntrack 12288 2 xt_MASQUERADE 16384 2 bridge 462848 0 stp 12288 1 bridge llc 16384 2 bridge,stp xfrm_user 73728 1 xfrm_algo 16384 1 xfrm_user ip6table_nat 12288 1 ip6table_filter 12288 1 ip6_tables 36864 2 ip6table_filter,ip6table_nat xt_set 24576 0 ip_set 69632 1 xt_set iptable_nat 12288 5 nf_nat 61440 4 ip6table_nat,xt_nat,iptable_nat,xt_MASQUERADE nf_conntrack 196608 5 xt_conntrack,nf_nat,xt_nat,nf_conntrack_netlink,xt_MASQUERADE nf_defrag_ipv6 24576 1 nf_conntrack nf_defrag_ipv4 12288 1 nf_conntrack xt_addrtype 12288 4 iptable_filter 12288 1 ip_tables 36864 3 iptable_filter,iptable_raw,iptable_nat x_tables 65536 13 ip6table_filter,xt_conntrack,iptable_filter,ip6table_nat,xt_tcpudp,xt_addrtype,xt_nat,xt_set,ip6_tables,iptable_raw,ip_tables,iptable_nat,xt_MASQUERADE nf_tables 397312 0 rpcrdma 462848 2 rdma_cm 155648 1 rpcrdma iw_cm 65536 1 rdma_cm ib_cm 155648 1 rdma_cm ib_core 548864 4 rdma_cm,rpcrdma,iw_cm,ib_cm nct6775 40960 0 nct6775_core 81920 1 nct6775 hwmon_vid 12288 1 nct6775 overlay 245760 4 iwlmvm 708608 0 mac80211 1683456 1 iwlmvm btusb 81920 0 btmtk 32768 1 btusb libarc4 12288 1 mac80211 btrtl 32768 1 btusb btbcm 24576 1 btusb btintel 73728 1 btusb bluetooth 1118208 6 btrtl,btmtk,btintel,btbcm,btusb atlantic 319488 0 corsair_psu 24576 0 iwlwifi 610304 1 iwlmvm igb 348160 0 macsec 69632 1 atlantic amd_atl 57344 1 intel_rapl_common 53248 0 amd64_edac 73728 0 kvm_amd 241664 0 snd_hda_codec_nvhdmi 16384 1 kvm 1421312 1 kvm_amd ixgbe 565248 0 raid1 61440 1 snd_hda_codec_hdmi 61440 1 snd_hda_codec_nvhdmi libie_fwlog 28672 1 ixgbe irqbypass 16384 1 kvm mdio_devres 12288 1 ixgbe eeepc_wmi 12288 0 snd_hda_intel 69632 0 asus_wmi 110592 1 eeepc_wmi polyval_clmulni 12288 0 libphy 180224 2 mdio_devres,ixgbe jc42 12288 0 ghash_clmulni_intel 12288 0 platform_profile 20480 1 asus_wmi snd_hda_codec 217088 3 snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec_nvhdmi mdio_bus 65536 2 libphy,ixgbe aesni_intel 98304 0 ee1004 16384 0 asus_ec_sensors 36864 0 wmi_bmof 12288 0 sparse_keymap 12288 1 asus_wmi mdio 12288 1 ixgbe rapl 20480 0 snd_hda_core 147456 3 snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec md_mod 270336 2 raid1 ptp 53248 4 iwlmvm,atlantic,igb,ixgbe sp5100_tco 20480 0 pcspkr 12288 0 snd_intel_dspcfg 45056 1 snd_hda_intel pps_core 32768 1 ptp ccp 196608 1 kvm_amd dca 20480 2 igb,ixgbe snd_intel_sdw_acpi 16384 1 snd_intel_dspcfg i2c_piix4 36864 0 i2c_smbus 20480 1 i2c_piix4 snd_usb_audio 598016 0 snd_usbmidi_lib 49152 1 snd_usb_audio snd_hwdep 24576 2 snd_usb_audio,snd_hda_codec snd_ump 40960 1 snd_usb_audio snd_rawmidi 53248 2 snd_usbmidi_lib,snd_ump snd_seq_device 16384 2 snd_ump,snd_rawmidi cfg80211 1429504 3 iwlmvm,iwlwifi,mac80211 snd_pcm 212992 5 snd_hda_codec_hdmi,snd_hda_intel,snd_usb_audio,snd_hda_codec,snd_hda_core snd_timer 57344 1 snd_pcm rfkill 45056 5 iwlmvm,asus_wmi,bluetooth,cfg80211 snd 159744 11 snd_seq_device,snd_hda_codec_hdmi,snd_hwdep,snd_hda_intel,snd_usb_audio,snd_usbmidi_lib,snd_hda_codec,snd_timer,snd_ump,snd_pcm,snd_rawmidi joydev 24576 0 soundcore 16384 1 snd mac_hid 12288 0 mc 90112 1 snd_usb_audio nfsd 1077248 5 auth_rpcgss 192512 2 nfsd,rpcsec_gss_krb5 nfs_acl 12288 2 nfsd,nfsv3 lockd 192512 3 nfsd,nfsv3,nfs grace 12288 2 nfsd,lockd nfs_localio 40960 2 nfsd,nfs sunrpc 884736 36 nfs_localio,nfsd,rpcrdma,nfsv4,auth_rpcgss,lockd,nfsv3,rpcsec_gss_krb5,nfs_acl,nfs i2c_dev 28672 0 k10temp 12288 0 nfnetlink 20480 6 nf_conntrack_netlink,nf_tables,ip_set nouveau 3764224 0 drm_ttm_helper 16384 2 nouveau ttm 122880 2 drm_ttm_helper,nouveau video 81920 2 asus_wmi,nouveau gpu_sched 69632 1 nouveau i2c_algo_bit 24576 2 igb,nouveau drm_gpuvm 49152 1 nouveau drm_exec 12288 2 drm_gpuvm,nouveau nvme 73728 3 mxm_wmi 12288 1 nouveau nvme_core 270336 4 nvme drm_display_helper 278528 1 nouveau nvme_keyring 20480 1 nvme_core cec 94208 1 drm_display_helper nvme_auth 32768 1 nvme_core hkdf 12288 1 nvme_auth wmi 32768 5 video,asus_wmi,wmi_bmof,mxm_wmi,nouveau Preempt mode (see also /l/logs.nightly/2026.05.15.14.49.32/preempt.txt): cmd='sudo cat /sys/kernel/debug/sched/preempt' none voluntary (full) lazy Linux standard base version (see also /l/logs.nightly/2026.05.15.14.49.32/lsb.txt): cmd='lsb_release -a' LSB Version: n/a Distributor ID: Arch Description: Arch Linux Release: rolling Codename: n/a All installed packages&versions (see also /l/logs.nightly/2026.05.15.14.49.32/pacman.txt): cmd='pacman -Q' 7zip 26.00-1 abseil-cpp 20250814.1-1 acl 2.3.2-1 acpica 20250404-1 adobe-source-code-pro-fonts 2.042u+1.062i+1.026vf-2 adwaita-cursors 49.0-1 adwaita-fonts 49.0-2 adwaita-icon-theme 49.0-1 adwaita-icon-theme-legacy 46.2-3 alsa-lib 1.2.15.3-2 alsa-topology-conf 1.2.5.1-4 alsa-ucm-conf 1.2.15.3-1 amd-ucode 20260110-1 aom 3.13.1-2 apparmor 4.1.6-1 apr 1.7.6-1 apr-util 1.6.3-2 archlinux-keyring 20260206-1 argon2 20190702-6 at-spi2-core 2.58.3-1 atop 2.12.1-1 attr 2.5.2-1 audit 4.1.2-2 autoconf 2.72-1 automake 1.18.1-1 avahi 1:0.9rc3-1 base 3-3 bash 5.3.9-1 bash-completion 2.17.0-3 bcc 0.36.1-1 bcc-libbpf-tools 0.36.1-1 binutils 2.46-1 bison 3.8.2-8 boost-libs 1.89.0-4 bridge-utils 1.7.1-2 brotli 1.2.0-1 btop 1.4.6-1 bubblewrap 0.11.0-1 bzip2 1.0.8-6 ca-certificates 20240618-1 ca-certificates-mozilla 3.120.1-1 ca-certificates-utils 20240618-1 cairo 1.18.4-1 cantarell-fonts 1:0.311-1 celt 0.11.3-4 clang 21.1.8-1 cmake 4.2.3-1 colord 1.4.8-1 compiler-rt 21.1.8-1 containerd 2.2.1-1 coreutils 9.10-1 cppdap 1.58.0-2 cpupower 6.19-2 cracklib 2.10.3-1 cryptsetup 2.8.4-1 curl 8.18.0-3 cython 3.2.4-3 dav1d 1.5.3-1 db 6.2.32-4 db5.3 5.3.28-7 dbus 1.16.2-1 dbus-broker 37-3 dbus-broker-units 37-3 dconf 0.49.0-1 debugedit 5.2-1 default-cursors 3-1 desktop-file-utils 0.28-1 device-mapper 2.03.38-1 diffutils 3.12-2 ding-libs 0.6.2-2 dkms 3.3.0-1 dmidecode 3.7-1 dnssec-anchors 20250524-1 docker 1:29.2.1-1 docker-compose 5.0.2-1 double-conversion 3.4.0-1 downgrade 11.8.0-1 duktape 2.7.0-7 e2fsprogs 1.47.3-2 elfutils 0.194-1 emacs 30.2-1 emacs-python-mode 6.3.1-1 ethtool 1:6.19-1 exiv2 0.28.7-1 expat 2.7.4-1 fakeroot 1.37.2-1 ffmpeg 2:8.0.1-7 fftw 3.3.10-8 file 5.46-5 filesystem 2025.10.12-1 findutils 4.10.0-3 flac 1.5.0-1 flex 2.6.4-5 fontconfig 2:2.17.1-1 freeglut 3.8.0-1 freetype2 2.14.1-2 fribidi 1.0.16-2 fzf 0.68.0-1 gawk 5.3.2-1 gc 8.2.12-1 gcc 15.2.1+r604+g0b99615a8aef-1 gcc-libs 15.2.1+r604+g0b99615a8aef-1 gd 2.3.3-9 gdb 17.1-2 gdb-common 17.1-2 gdbm 1.26-2 gdk-pixbuf2 2.44.4-1 geoip 1.6.12-3 geoip-database 20260204-1 gettext 1.0-2 ghostscript 10.06.0-1 giflib 5.2.2-2 git 2.53.0-1 glib-networking 1:2.80.1-1 glib2 2.86.4-1 glibc 2.43+r5+g856c426a7534-1 glslang 1:1.4.341.0-1 glu 9.0.3-3 glycin 2.0.8-1 gmp 6.3.0-3 gnu-netcat 0.7.1-10 gnulib-l10n 20241231-1 gnupg 2.4.9-1 gnuplot 6.0.4-1 gnutls 3.8.12-2 gobject-introspection-runtime 1.86.0-2 google-chrome 113.0.5672.63-1 gpac 1:2.4.0-1 gperftools 2.17.2-1 gpgme 2.0.1-1 gpm 1.20.7.r38.ge82d1a6-6 gradle 9.3.1-1 graphene 1.10.8-2 graphite 1:1.3.14-6 graphviz 14.1.2-1 grep 3.12-2 groff 1.23.0-8 grub 2:2.14-1 gsettings-desktop-schemas 49.1-1 gsettings-system-schemas 49.1-1 gsfonts 20200910-6 gsm 1.0.23-1 gssdp 1.6.4-1 gssproxy 0.9.2-2 gst-plugins-bad-libs 1.28.0-2 gst-plugins-base-libs 1.28.0-2 gstreamer 1.28.0-2 gtest 1.17.0-2 gtk-update-icon-cache 1:4.20.3-1 gtk3 1:3.24.51-1 gts 0.7.6.121130-5 guile 3.0.11-1 gupnp 1:1.6.9-1 gupnp-igd 1.6.0-2 gzip 1.14-2 harfbuzz 12.3.2-1 hddtemp 0.3.beta15.54-5 hdf5 2.0.0-4 hicolor-icon-theme 0.18-1 hidapi 0.15.0-1 highway 1.3.0-2 htop 3.4.1-1 http-parser 2.9.4-2 hwdata 0.404-1 hwloc 2.13.0-1 i2c-tools 4.4-4 iana-etc 20260203-1 icu 78.2-2 ijs 0.35-6 imath 3.2.2-3 imlib2 1.12.6-1 inetutils 2.7-2 iotop 0.6-13 iproute2 6.19.0-2 iptables 1:1.8.11-2 iputils 20250605-1 iso-codes 4.20.1-1 jack2 1.9.22-2 jansson 2.15.0-1 java-environment-common 3-6 java-openjdk-bin 20.u36-1 java-runtime-common 3-6 jbig2dec 0.20-1 jbigkit 2.1-8 jc 1.25.6-2 jdk-openjdk 25.0.2.u10-1 jdk17-openjdk 17.0.18.u8-1 jdk21-openjdk 21.0.10.u7-1 jemalloc 1:5.3.0-5 jitterentropy 3.6.3-1 js60 60.9.0-2 js78 78.15.0-4 json-c 0.18-2 json-glib 1.10.8-1 jsoncpp 1.9.6-3 judy 1.0.5-9 kbd 2.9.0-1 keyutils 1.6.3-3 kmod 34.2-1 krb5 1.21.3-2 l-smash 2.14.5-4 lame 3.101.r6531-1 lcms2 2.18-1 ldns 1.9.0-1 leancrypto 1.6.0-1 less 1:692-1 libaec 1.1.5-1 libaio 0.3.113-3 libarchive 3.8.5-1 libasan 15.2.1+r604+g0b99615a8aef-1 libass 0.17.4-1 libassuan 3.0.0-1 libasyncns 1:0.8+r3+g68cd5af-3 libatasmart 0.19-7 libatomic 15.2.1+r604+g0b99615a8aef-1 libavc1394 0.5.4-7 libavif 1.3.0-5 libb2 0.98.1-3 libblockdev 3.4.0-2 libblockdev-crypto 3.4.0-2 libblockdev-fs 3.4.0-2 libblockdev-loop 3.4.0-2 libblockdev-mdraid 3.4.0-2 libblockdev-nvme 3.4.0-2 libblockdev-part 3.4.0-2 libblockdev-smart 3.4.0-2 libblockdev-swap 3.4.0-2 libbluray 1.4.0-2 libbpf 1.6.2-1 libbs2b 3.1.0-10 libbsd 0.12.2-2 libbytesize 2.12-3 libcaca 0.99.beta20-6 libcanberra 1:0.30+r2+gc0620e4-6 libcap 2.77-1 libcap-ng 0.9-1 libcerf 1:3.3-1 libcloudproviders 0.4.0-1 libcolord 1.4.8-1 libcroco 0.6.13-2 libcups 2:2.4.16-2 libdaemon 0.14-6 libdatrie 0.2.14-1 libde265 1.0.16-2 libdeflate 1.25-1 libdovi 3.3.2-1 libdrm 2.4.131-1 libdvdnav 7.0.0-1 libdvdread 7.0.1-1 libedit 20250104_3.1-1 libei 1.5.0-1 libelf 0.194-1 libepoxy 1.5.10-3 libevdev 1.13.6-1 libevent 2.1.12-5 libfabric 2.4.0-1 libffi 3.5.2-1 libgcc 15.2.1+r604+g0b99615a8aef-1 libgccjit 15.2.1+r604+g0b99615a8aef-1 libgcrypt 1.12.1-1 libgexiv2 0.14.6-2 libgfortran 15.2.1+r604+g0b99615a8aef-1 libgirepository 1.86.0-2 libgit2 1:1.9.2-3 libglvnd 1.7.0-3 libgomp 15.2.1+r604+g0b99615a8aef-1 libgpg-error 1.59-1 libgudev 238-3 libgusb 0.4.9-2 libheif 1.21.2-2 libibus 1.5.33-3 libice 1.1.2-1 libid3tag 0.16.3-2 libidn 1.43-1 libidn2 2.3.8-1 libiec61883 1.2.0-9 libimagequant 4.4.1-1 libinih 61-1 libinput 1.30.1-1 libisl 0.27-1 libjpeg-turbo 3.1.3-1 libjxl 0.11.2-2 libksba 1.6.7-2 libldap 2.6.12-1 liblqr 0.4.3-1 liblsan 15.2.1+r604+g0b99615a8aef-1 libmagick6 6.9.11.38-1 libmakepkg-dropins 20-1 libmd 1.1.0-2 libmfx 23.2.2-6 libmicrohttpd 1.0.2-1 libmnl 1.0.5-2 libmodplug 0.8.9.0-6 libmpc 1.3.1-2 libmspack 1:1.11-1 libnet 2:1.3-1 libnetfilter_conntrack 1.0.9-2 libnfnetlink 1.0.2-2 libnftnl 1.3.1-1 libnghttp2 1.68.0-1 libnghttp3 1.15.0-1 libngtcp2 1.20.0-1 libnice 0.1.23-1 libnl 3.12.0-1 libnotify 0.8.8-1 libnsl 2.0.1-1 libnvme 1.16.1-3 libobjc 15.2.1+r604+g0b99615a8aef-1 libogg 1.3.6-1 libomxil-bellagio 0.9.3-5 libopenmpt 0.8.4-1 libotf 0.9.16-6 libp11 0.4.16-1 libp11-kit 0.26.2-1 libpaper 2.2.7-1 libpcap 1.10.6-1 libpciaccess 0.18.1-2 libpfm 4.13.0+r83+g91970fe-1 libpgm 5.3.128-3 libpipeline 1.5.8-1 libplacebo 7.360.0-1 libpng 1.6.55-1 libproxy 0.5.12-1 libpsl 0.21.5-2 libpulse 17.0+r98+gb096704c0-1 libquadmath 15.2.1+r604+g0b99615a8aef-1 libraqm 0.10.4-1 libraw1394 2.1.2-4 librsvg 2:2.61.4-1 libsamplerate 0.2.2-3 libsasl 2.1.28-5 libseccomp 2.6.0-1 libsecret 0.21.7-1 libsm 1.2.6-1 libsndfile 1.2.2-4 libsodium 1.0.20-1 libsoup 2.74.3-4 libsoup3 3.6.6-1 libsoxr 0.1.3-4 libssh 0.12.0-1 libssh2 1.11.1-1 libstdc++ 15.2.1+r604+g0b99615a8aef-1 libstemmer 3.0.1-1 libsysprof-capture 49.0-2 libtasn1 4.21.0-1 libthai 0.1.30-1 libtheora 1.2.0-1 libtiff 4.7.1-1 libtirpc 1.3.7-1 libtool 2.6.0-4 libtraceevent 1:1.8.7-1 libtsan 15.2.1+r604+g0b99615a8aef-1 libubsan 15.2.1+r604+g0b99615a8aef-1 libunibreak 6.1-1 libunistring 1.4.1-1 libunwind 1.8.2-1 liburing 2.14-1 libusb 1.0.29-1 libutempter 1.2.3-1 libutf8proc 2.11.3-1 libuv 1.52.0-1 libva 2.22.0-1 libvdpau 1.5-4 libverto 0.3.2-5 libvorbis 1.3.7-4 libvpl 2.16.0-2 libvpx 1.15.2-3 libwacom 2.18.0-2 libwebp 1.6.0-2 libx11 1.8.13-1 libxau 1.0.12-1 libxaw 1.0.16-1 libxcb 1.17.0-1 libxcomposite 0.4.7-1 libxcrypt 4.5.2-1 libxcursor 1.2.3-1 libxdamage 1.1.7-1 libxdmcp 1.1.5-1 libxext 1.3.7-1 libxfixes 6.0.2-1 libxft 2.3.9-1 libxi 1.8.2-1 libxinerama 1.1.6-1 libxkbcommon 1.13.1-1 libxkbcommon-x11 1.13.1-1 libxml2 2.15.1-5 libxmu 1.3.1-1 libxpm 3.5.18-1 libxrandr 1.5.5-1 libxrender 0.9.12-1 libxshmfence 1.3.3-1 libxss 1.2.5-1 libxt 1.3.1-1 libxtst 1.2.5-1 libxv 1.0.13-1 libxxf86vm 1.1.7-1 libyaml 0.2.5-3 libyuv r2426+464c51a03-1 licenses 20240728-1 linux 6.18.9.arch1-2 linux-api-headers 6.19-1 linux-firmware 20260110-1 linux-firmware-amdgpu 20260110-1 linux-firmware-atheros 20260110-1 linux-firmware-broadcom 20260110-1 linux-firmware-cirrus 20260110-1 linux-firmware-intel 20260110-1 linux-firmware-mediatek 20260110-1 linux-firmware-nvidia 20260110-1 linux-firmware-other 20260110-1 linux-firmware-radeon 20260110-1 linux-firmware-realtek 20260110-1 linux-firmware-whence 20260110-1 linux-lts 6.12.74-1 lksctp-tools 1.0.21-1 llhttp 9.3.1-1 llvm 21.1.8-1 llvm-libs 21.1.8-1 lm_sensors 1:3.6.2-1 lmdb 0.9.33-1 lsb-release 2.0.r55.a25a4fc-1 lshw B.02.20-3 lsof 4.99.5-2 lua 5.4.8-2 luajit 2.1.1767980792+707c12b-2 lynis 3.1.6-1 lz4 1:1.10.0-2 lzo 2.10-5 m17n-db 1.8.10-1 m17n-lib 1.8.6-1 m4 1.4.21-1 mailcap 2.1.54-2 make 4.4.1-2 man-db 2.13.1-1 man-pages 6.17-1 mariadb 12.2.2-2 mariadb-clients 12.2.2-2 mariadb-libs 12.2.2-2 mbedtls2 2.28.10-1 md4c 0.5.2-1 mdadm 4.4-2 memtest86+ 7.20-2 memtest86+-efi 7.20-2 mesa 1:25.3.5-1 meson 1.10.1-1 mkinitcpio 40-4 mkinitcpio-busybox 1.36.1-1 mosh 1.4.0-28 mpdecimal 4.0.1-1 mpfr 4.2.2-1 mpg123 1.33.4-1 msr-tools 1.3-4 mtdev 1.1.7-1 ncurses 6.6-1 net-tools 2.10-3 netctl 1.29-2 netpbm 10.86.48-1 nettle 3.10.2-1 nfs-utils 2.8.5-2 nfsidmap 2.8.5-2 nftables 1:1.1.6-2 nginx 1.28.2-1 ninja 1.13.2-3 nload 0.7.4-9 npth 1.8-1 nspr 4.38.2-1 nss 3.120.1-1 ntp 4.2.8.p18-6 numactl 2.0.19-1 nvme-cli 2.16-2 ocl-icd 2.3.4-1 opencore-amr 0.1.6-2 openexr 3.4.5-1 openh264 2.6.0-2 openjpeg2 2.5.4-1 openmpi 5.0.9-4 openpmix 5.0.10-1 openresolv 3.17.4-1 openssh 10.2p1-2 openssl 3.6.1-1 openucx 1.20.0-3 opus 1.6.1-1 orc 0.4.42-1 p11-kit 0.26.2-1 pacman 7.1.0.r9.g54d9411-1 pacman-contrib 1.13.1-1 pacman-mirrorlist 20260213-1 pam 1.7.2-2 pambase 20250719-1 pango 1:1.57.0-2 parted 3.6-2 patch 2.8-1 pciutils 3.14.0-1 pcre 8.45-4 pcre2 10.47-1 perf 6.19-2 perl 5.42.0-1 perl-dbd-sqlite 1.78-1 perl-dbi 1.647-2 perl-error 0.17030-3 perl-io-tty 1.20-3 perl-mailtools 2.22-3 perl-timedate 2.33-9 pinentry 1.3.2-2 pixman 0.46.4-1 pkgconf 2.5.1-1 pkgfile 25-2 polkit 127-3 poppler-data 0.4.12-2 popt 1.19-2 portaudio 1:19.7.0-3 postgresql-libs 18.2-1 powertop 2.15-2 procps-ng 4.0.6-1 protobuf 33.1-4 prrte 3.0.13-1 psmisc 23.7-1 pv 1.10.3-1 python 3.14.3-1 python-absl 2.4.0-1 python-annotated-types 0.7.0-3 python-appdirs 1.4.4-12 python-asn1crypto 1.5.1-6 python-attrs 25.4.0-3 python-autocommand 2.2.2-9 python-bcc 0.36.1-1 python-bcrypt 5.0.0-2 python-cachecontrol 1:0.14.4-3 python-cached-property 1.5.2-7 python-cffi 2.0.0-2 python-chardet 5.2.0-7 python-charset-normalizer 3.4.4-2 python-click 8.3.1-1 python-colorama 0.4.6-6 python-contextlib2 21.6.0-2 python-cryptography 46.0.5-2 python-dateutil 2.9.0-8 python-deprecated 1.2.18-2 python-distlib 0.4.0-2 python-distro 1.9.0-4 python-dnslib 0.9.26-3 python-docker 7.1.0-4 python-docker-pycreds 0.4.0-10 python-dockerpty 0.4.1-11 python-docopt 0.6.2-15 python-dotenv 1.2.1-2 python-fastjsonschema 2.21.2-2 python-filelock 3.24.0-1 python-fluidity 0.2.1-8 python-github3py 4.0.1-5 python-gobject 3.54.5-2 python-html5lib 1.1-17 python-idna 3.11-2 python-importlib-metadata 8.7.1-3 python-inflect 7.5.0-2 python-invoke 2.2.1-2 python-jaraco.collections 5.1.0-3 python-jaraco.context 6.0.1-3 python-jaraco.functools 4.1.0-3 python-jaraco.text 4.0.0-4 python-jsonschema 4.26.0-1 python-jsonschema-specifications 2025.9.1-2 python-jwcrypto 1.5.6-6 python-legacy-cgi 2.6.4-2 python-lexicon 3.0.0-2 python-more-itertools 10.8.0-2 python-msgpack 1.1.2-2 python-mysqlclient 2.2.8-2 python-nspektr 0.5.0-3 python-ordered-set 4.1.0-8 python-packaging 26.0-1 python-paramiko 4.0.0-2 python-pep517 0.13.0-1 python-pillow 12.1.1-1 python-pip 26.0.1-1 python-pkg_resources 81.0.0-1 python-platformdirs 4.9.2-1 python-ply 3.11-16 python-progress 1.6-5 python-psutil 7.2.2-1 python-pycparser 2.23-2 python-pydantic 2.12.5-4 python-pydantic-core 3:2.41.5-3 python-pygments 2.19.2-3 python-pyjwt 2.11.0-1 python-pynacl 1.6.2-1 python-pyopenssl 25.3.0-2 python-pyparsing 3.3.2-1 python-pyrsistent 0.19.3-4 python-pytoml 0.1.21-8 python-referencing 0.37.0-3 python-requests 2.32.5-3 python-resolvelib 1.2.1-2 python-retrying 1.3.4-5 python-rpds-py 0.30.0-3 python-ruamel-yaml 0.18.10-2 python-ruamel.yaml.clib 0.2.15-2 python-setuptools 1:82.0.0-1 python-six 1.17.0-2 python-texttable 1.7.0-4 python-toml 0.10.2-13 python-tomli 2.4.0-1 python-tqdm 4.67.3-1 python-trove-classifiers 2026.1.14.14-1 python-typeguard 4.4.4-2 python-typing-inspection 0.4.2-2 python-typing_extensions 4.15.0-3 python-uritemplate 4.2.0-2 python-urllib3 2.6.3-1 python-urwid 3.0.5-1 python-validate-pyproject 0.25-1 python-wcwidth 0.6.0-1 python-webencodings 0.5.1-13 python-websocket-client 1.9.0-3 python-wheel 0.46.3-1 python-wrapt 1.17.3-2 python-xmltodict 1.0.4-1 python-yaml 6.0.3-2 python-zipp 3.21.0-4 python2 2.7.18-5 qt5-base 5.15.18+kde+r109-2 qt5-svg 5.15.18+kde+r5-1 qt5-translations 5.15.18-1 qt6-5compat 6.10.2-1 qt6-base 6.10.2-1 qt6-shadertools 6.10.2-1 qt6-svg 6.10.2-1 qt6-translations 6.10.2-1 rasdaemon 0.8.2-1 rasdaemon-debug 0.8.2-1 rav1e 0.8.1-2 readline 8.3.003-1 rhash 1.4.6-1 rng-tools 6.17-3 rpcbind 1.2.8-1 rsync 3.4.1-2 rtl-sdr 1:2.0.2-1 rubberband 4.0.0-1 run-parts 5.23.2-1 runc 1.4.0-1 s-tui 1.3.0-1 sdl2-compat 2.32.64-1 sdl3 3.4.2-1 sed 4.9-3 serf 1.3.10-2 shaderc 2026.1-1 shadow 4.18.0-1 shared-mime-info 2.4-3 slang 2.3.3-4 smartmontools 7.5-1 snappy 1.2.2-3 sndio 1.10.0-1 sound-theme-freedesktop 0.8-6 source-highlight 3.1.9-16 speex 1.2.1-2 speexdsp 1.2.1-2 spirv-tools 1:1.4.341.0-1 sqlite 3.51.2-1 squid 7.4-1 srt 1.5.4-1 strace 6.19-1 stress 1.0.7-3 stress-ng 0.20.01-1 subversion 1.14.5-5 sudo 1.9.17.p2-2 svt-av1 4.0.1-1 sysbench 1.0.20-2 sysfsutils 2.1.1-2 sysstat 12.7.9-1 systemd 259.1-1 systemd-libs 259.1-1 systemd-sysvcompat 259.1-1 tar 1.35-2 tdb 1.4.15-1 texinfo 7.2-1 tinysparql 3.10.1-2 tmux 3.6_a-1 tpm2-tss 4.1.3-1 traceroute 2.1.6-1 tree-sitter 0.25.10-3 tslib 1.24-1 ttf-liberation 2.1.5-2 turbostat 6.19-2 tzdata 2025c-1 udisks2 2.11.0-1 unzip 6.0-23 usbutils 019-1 util-linux 2.41.3-2 util-linux-libs 2.41.3-2 v4l-utils 1.32.0-1 vapoursynth 73-2 vid.stab 1.1.1-2 vim 9.2.0038-1 vim-runtime 9.2.0038-1 vmaf 3.0.0-2 volume_key 0.3.12-12 vsftpd 3.0.5-1 vulkan-headers 1:1.4.341.0-1 vulkan-icd-loader 1.4.341.0-1 wayland 1.24.0-1 wayland-protocols 1.47-1 wget 1.25.0-3 which 2.23-1 wxwidgets-common 3.2.9-4 wxwidgets-gtk3 3.2.9-4 x264 3:0.165.r3222.b35605a-2 x265 4.1-1 xcb-proto 1.17.0-4 xcb-util 0.4.1-2 xcb-util-cursor 0.1.6-1 xcb-util-image 0.4.1-3 xcb-util-keysyms 0.4.1-5 xcb-util-renderutil 0.3.10-2 xcb-util-wm 0.4.2-2 xdg-utils 1.2.1-2 xkeyboard-config 2.46-1 xorg-xprop 1.2.8-1 xorg-xset 1.2.5-2 xorgproto 2025.1-1 xvidcore 1.3.7-3 xxhash 0.8.3-1 xz 5.8.2-1 youtube-dl 2021.12.17-2 zeromq 4.3.5-3 zimg 3.0.6-1 zip 3.0-11 zita-alsa-pcmi 0.6.1-3 zita-resampler 1.11.2-2 zlib 1:1.3.2-2 zlib-ng 2.3.3-1 zstd 1.5.7-3 luceneutil rev is 63c1b2b252f377e272313c1ac0f182be79ad78b6 LUCENE rev is de92f115a3125624bf7c7141b8e700efa9a89427 last successful Lucene rev dbf0d1426f13292f58083911c65bbae431251e4f, luceneutil rev 63c1b2b252f377e272313c1ac0f182be79ad78b6 run ['git', 'log', 'dbf0d1426f13292f58083911c65bbae431251e4f^..de92f115a3125624bf7c7141b8e700efa9a89427'] No commit message asking for regold of results files [2026-05-15 14:49:32.693667] RUN: git clean -xfd Removing .gradle/ Removing build-tools/build-infra-shadow/build/ Removing build-tools/build-infra/.gradle/ Removing build-tools/build-infra/build/ Removing build-tools/build/ Removing build-tools/missing-doclet/build/ Removing build/ Removing gradle.properties Removing gradle/wrapper/gradle-wrapper.jar Removing lucene/analysis.tests/build/ Removing lucene/analysis/build/ Removing lucene/analysis/common/build/ Removing lucene/analysis/icu/build/ Removing lucene/analysis/kuromoji/build/ Removing lucene/analysis/morfologik.tests/build/ Removing lucene/analysis/morfologik/build/ Removing lucene/analysis/nori/build/ Removing lucene/analysis/opennlp/build/ Removing lucene/analysis/phonetic/build/ Removing lucene/analysis/smartcn/build/ Removing lucene/analysis/stempel/build/ Removing lucene/backward-codecs/build/ Removing lucene/benchmark-jmh/build/ Removing lucene/benchmark/build/ Removing lucene/build/ Removing lucene/classification/build/ Removing lucene/codecs/build/ Removing lucene/core.tests/build/ Removing lucene/core/build/ Removing lucene/demo/build/ Removing lucene/distribution.tests/build/ Removing lucene/distribution/build/ Removing lucene/documentation/build/ Removing lucene/expressions/build/ Removing lucene/facet/build/ Removing lucene/grouping/build/ Removing lucene/highlighter/build/ Removing lucene/join/build/ Removing lucene/luke/build/ Removing lucene/memory/build/ Removing lucene/misc/build/ Removing lucene/monitor/build/ Removing lucene/queries/build/ Removing lucene/queryparser/build/ Removing lucene/replicator/build/ Removing lucene/sandbox/build/ Removing lucene/spatial-extras/build/ Removing lucene/spatial-test-fixtures/build/ Removing lucene/spatial3d/build/ Removing lucene/suggest/build/ Removing lucene/test-framework/build/ [2026-05-15 14:49:32.927566] took 0.2 sec will NOT regold results files but rather compare to last good result files Java command-line: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED transparent_hugepages: [always] madvise never [2026-05-15 14:49:32.927654] RUN: /l/trunk.nightly/gradlew --stacktrace clean > /l/logs.nightly/2026.05.15.14.49.32/clean-lucene.log 2>&1 [2026-05-15 14:49:36.822699] took 3.9 sec [2026-05-15 14:49:36.822759] RUN: /l/trunk.nightly/gradlew jar > /l/logs.nightly/2026.05.15.14.49.32/jar-lucene.log 2>&1 [2026-05-15 14:49:50.987196] took 14.2 sec JAVA: WARNING: Using incubator modules: jdk.incubator.vector openjdk version "25.0.2" 2026-01-20 OpenJDK Runtime Environment (build 25.0.2) OpenJDK 64-Bit Server VM (build 25.0.2, mixed mode, sharing) OS: Linux beast3.mikemccandless.com 6.18.9-arch1-2 #1 SMP PREEMPT_DYNAMIC Mon, 09 Feb 2026 17:16:33 +0000 x86_64 GNU/Linux LOGS: /l/logs.nightly Using checkout:[/l/trunk.nightly] for competitor:[nightly] compile lucene:core... run: ['/l/trunk.nightly/gradlew', 'lucene:core:jar'], cwd=/l/trunk.nightly vmstatLogFile=None topLogFile=None /l/trunk.nightly/lucene/benchmark files ['/l/util.nightly/src/main/perf/TestContext.java', '/l/util.nightly/src/main/perf/IndexAndSearchOpenStreetMaps.java', '/l/util.nightly/src/main/perf/TypePolluter.java', '/l/util.nightly/src/main/perf/OpenDirectory.java', '/l/util.nightly/src/main/perf/StringFieldDocSelector.java', '/l/util.nightly/src/main/perf/SearchTaxis.java', '/l/util.nightly/src/main/perf/RemoteTaskSource.java', '/l/util.nightly/src/main/perf/SearchPerfTest.java', '/l/util.nightly/src/main/perf/KeepNoCommitsDeletionPolicy.java', '/l/util.nightly/src/main/perf/DiskUsage.java', '/l/util.nightly/src/main/perf/NRTPerfTest.java', '/l/util.nightly/src/main/perf/Indexer.java', '/l/util.nightly/src/main/perf/PKLookupWithTermStateTask.java', '/l/util.nightly/src/main/perf/IndexState.java', '/l/util.nightly/src/main/perf/VectorDictionary.java', '/l/util.nightly/src/main/perf/TaskParser.java', '/l/util.nightly/src/main/perf/IndexThreads.java', '/l/util.nightly/src/main/perf/SearchTask.java', '/l/util.nightly/src/main/perf/RespellTask.java', '/l/util.nightly/src/main/perf/TaskSource.java', '/l/util.nightly/src/main/perf/LineFileDocs.java', '/l/util.nightly/src/main/perf/CreateQueries.java', '/l/util.nightly/src/main/perf/RandomQuery.java', '/l/util.nightly/src/main/perf/PerfUtils.java', '/l/util.nightly/src/main/perf/Task.java', '/l/util.nightly/src/main/perf/LocalTaskSource.java', '/l/util.nightly/src/main/perf/IndexTaxis.java', '/l/util.nightly/src/main/perf/PointsPKLookupTask.java', '/l/util.nightly/src/main/perf/TaskThreads.java', '/l/util.nightly/src/main/perf/UnparsedTask.java', '/l/util.nightly/src/main/perf/Args.java', '/l/util.nightly/src/main/perf/TaskParserFactory.java', '/l/util.nightly/src/main/perf/StatisticsHelper.java', '/l/util.nightly/src/main/perf/BenchRearranger.java', '/l/util.nightly/src/main/perf/PKLookupTask.java', '/l/util.nightly/src/main/perf/OpenCloseIndexWriter.java'] compile: /usr/lib/jvm/java-25-openjdk/bin/javac -g -d /l/util.nightly/build -classpath /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build /l/util.nightly/src/main/perf/TestContext.java /l/util.nightly/src/main/perf/IndexAndSearchOpenStreetMaps.java /l/util.nightly/src/main/perf/TypePolluter.java /l/util.nightly/src/main/perf/OpenDirectory.java /l/util.nightly/src/main/perf/StringFieldDocSelector.java /l/util.nightly/src/main/perf/SearchTaxis.java /l/util.nightly/src/main/perf/RemoteTaskSource.java /l/util.nightly/src/main/perf/SearchPerfTest.java /l/util.nightly/src/main/perf/KeepNoCommitsDeletionPolicy.java /l/util.nightly/src/main/perf/DiskUsage.java /l/util.nightly/src/main/perf/NRTPerfTest.java /l/util.nightly/src/main/perf/Indexer.java /l/util.nightly/src/main/perf/PKLookupWithTermStateTask.java /l/util.nightly/src/main/perf/IndexState.java /l/util.nightly/src/main/perf/VectorDictionary.java /l/util.nightly/src/main/perf/TaskParser.java /l/util.nightly/src/main/perf/IndexThreads.java /l/util.nightly/src/main/perf/SearchTask.java /l/util.nightly/src/main/perf/RespellTask.java /l/util.nightly/src/main/perf/TaskSource.java /l/util.nightly/src/main/perf/LineFileDocs.java /l/util.nightly/src/main/perf/CreateQueries.java /l/util.nightly/src/main/perf/RandomQuery.java /l/util.nightly/src/main/perf/PerfUtils.java /l/util.nightly/src/main/perf/Task.java /l/util.nightly/src/main/perf/LocalTaskSource.java /l/util.nightly/src/main/perf/IndexTaxis.java /l/util.nightly/src/main/perf/PointsPKLookupTask.java /l/util.nightly/src/main/perf/TaskThreads.java /l/util.nightly/src/main/perf/UnparsedTask.java /l/util.nightly/src/main/perf/Args.java /l/util.nightly/src/main/perf/TaskParserFactory.java /l/util.nightly/src/main/perf/StatisticsHelper.java /l/util.nightly/src/main/perf/BenchRearranger.java /l/util.nightly/src/main/perf/PKLookupTask.java /l/util.nightly/src/main/perf/OpenCloseIndexWriter.java run: ['/usr/lib/jvm/java-25-openjdk/bin/javac', '-g', '-d', '/l/util.nightly/build', '-classpath', '/l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build', '/l/util.nightly/src/main/perf/TestContext.java', '/l/util.nightly/src/main/perf/IndexAndSearchOpenStreetMaps.java', '/l/util.nightly/src/main/perf/TypePolluter.java', '/l/util.nightly/src/main/perf/OpenDirectory.java', '/l/util.nightly/src/main/perf/StringFieldDocSelector.java', '/l/util.nightly/src/main/perf/SearchTaxis.java', '/l/util.nightly/src/main/perf/RemoteTaskSource.java', '/l/util.nightly/src/main/perf/SearchPerfTest.java', '/l/util.nightly/src/main/perf/KeepNoCommitsDeletionPolicy.java', '/l/util.nightly/src/main/perf/DiskUsage.java', '/l/util.nightly/src/main/perf/NRTPerfTest.java', '/l/util.nightly/src/main/perf/Indexer.java', '/l/util.nightly/src/main/perf/PKLookupWithTermStateTask.java', '/l/util.nightly/src/main/perf/IndexState.java', '/l/util.nightly/src/main/perf/VectorDictionary.java', '/l/util.nightly/src/main/perf/TaskParser.java', '/l/util.nightly/src/main/perf/IndexThreads.java', '/l/util.nightly/src/main/perf/SearchTask.java', '/l/util.nightly/src/main/perf/RespellTask.java', '/l/util.nightly/src/main/perf/TaskSource.java', '/l/util.nightly/src/main/perf/LineFileDocs.java', '/l/util.nightly/src/main/perf/CreateQueries.java', '/l/util.nightly/src/main/perf/RandomQuery.java', '/l/util.nightly/src/main/perf/PerfUtils.java', '/l/util.nightly/src/main/perf/Task.java', '/l/util.nightly/src/main/perf/LocalTaskSource.java', '/l/util.nightly/src/main/perf/IndexTaxis.java', '/l/util.nightly/src/main/perf/PointsPKLookupTask.java', '/l/util.nightly/src/main/perf/TaskThreads.java', '/l/util.nightly/src/main/perf/UnparsedTask.java', '/l/util.nightly/src/main/perf/Args.java', '/l/util.nightly/src/main/perf/TaskParserFactory.java', '/l/util.nightly/src/main/perf/StatisticsHelper.java', '/l/util.nightly/src/main/perf/BenchRearranger.java', '/l/util.nightly/src/main/perf/PKLookupTask.java', '/l/util.nightly/src/main/perf/OpenCloseIndexWriter.java'], cwd=/l/trunk.nightly/lucene/benchmark vmstatLogFile=None topLogFile=None [2026-05-15 14:49:53.658371] now run stored fields benchmark RUN: /usr/lib/jvm/java-25-openjdk/bin/javac -cp /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar -d build src/extra/perf/StoredFieldsBenchmark.java, cwd=/l/util.nightly Now run BEST_SPEED with doc_limit=-1: RUN: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:build perf.StoredFieldsBenchmark /lucenedata/geonames/geonames.20160818.csv /l/indices/geonames-stored-fields BEST_SPEED -1 Mode: BEST_SPEED indexing_time_msec: 145186.00 stored_field_size_mb: 624.38 retrieved_time_msec: 184.40 Now run BEST_COMPRESSION with doc_limit=-1: RUN: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:build perf.StoredFieldsBenchmark /lucenedata/geonames/geonames.20160818.csv /l/indices/geonames-stored-fields BEST_COMPRESSION -1 Mode: BEST_COMPRESSION indexing_time_msec: 351412.00 stored_field_size_mb: 385.76 retrieved_time_msec: 1335.40 Done: took 1026.50 seconds, saved to /l/logs.nightly/2026.05.15.14.49.32/geonames-stored-fields-benchmark-results.pk [2026-05-15 15:07:00.645806] done run stored fields benchmark [2026-05-15 15:07:00.645827] now run NAD facets benchmark RUN: /usr/lib/jvm/java-25-openjdk/bin/javac -cp /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/facet/build/libs/lucene-facet-11.0.0-SNAPSHOT.jar:build -d build src/main/perf/facets/IndexFacets.java, cwd=/l/util.nightly RUN: /usr/lib/jvm/java-25-openjdk/bin/javac -cp /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/facet/build/libs/lucene-facet-11.0.0-SNAPSHOT.jar:build -d build src/main/perf/facets/BenchmarkFacets.java, cwd=/l/util.nightly Note: src/main/perf/facets/BenchmarkFacets.java uses or overrides a deprecated API. Note: Recompile with -Xlint:deprecation for details. RUN: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/facet/build/libs/lucene-facet-11.0.0-SNAPSHOT.jar:build perf.facets.IndexFacets /l/data/NAD_taxonomy.txt.gz /l/indices/nad-facets-nightly -1, cwd=/l/util.nightly Indexing documents... WARNING: Using incubator modules: jdk.incubator.vector May 15, 2026 3:07:01 PM org.apache.lucene.internal.vectorization.PanamaVectorizationProvider logIncubatorSetup INFO: Java vector incubator API enabled; uses preferredBitSize=256; FMA enabled Indexed 0 documents Indexed 100000 documents Indexed 200000 documents Indexed 300000 documents Indexed 400000 documents Indexed 500000 documents Indexed 600000 documents Indexed 700000 documents Indexed 800000 documents Indexed 900000 documents Indexed 1000000 documents Indexed 1100000 documents Indexed 1200000 documents Indexed 1300000 documents Indexed 1400000 documents Indexed 1500000 documents Indexed 1600000 documents Indexed 1700000 documents Indexed 1800000 documents Indexed 1900000 documents Indexed 2000000 documents Indexed 2100000 documents Indexed 2200000 documents Indexed 2300000 documents Indexed 2400000 documents Indexed 2500000 documents Indexed 2600000 documents Indexed 2700000 documents Indexed 2800000 documents Indexed 2900000 documents Indexed 3000000 documents Indexed 3100000 documents Indexed 3200000 documents Indexed 3300000 documents Indexed 3400000 documents Indexed 3500000 documents Indexed 3600000 documents Indexed 3700000 documents Indexed 3800000 documents Indexed 3900000 documents Indexed 4000000 documents Indexed 4100000 documents Indexed 4200000 documents Indexed 4300000 documents Indexed 4400000 documents Indexed 4500000 documents Indexed 4600000 documents Indexed 4700000 documents Indexed 4800000 documents Indexed 4900000 documents Indexed 5000000 documents Indexed 5100000 documents Indexed 5200000 documents Indexed 5300000 documents Indexed 5400000 documents Indexed 5500000 documents Indexed 5600000 documents Indexed 5700000 documents Indexed 5800000 documents Indexed 5900000 documents Indexed 6000000 documents Indexed 6100000 documents Indexed 6200000 documents Indexed 6300000 documents Indexed 6400000 documents Indexed 6500000 documents Indexed 6600000 documents Indexed 6700000 documents Indexed 6800000 documents Indexed 6900000 documents Indexed 7000000 documents Indexed 7100000 documents Indexed 7200000 documents Indexed 7300000 documents Indexed 7400000 documents Indexed 7500000 documents Indexed 7600000 documents Indexed 7700000 documents Indexed 7800000 documents Indexed 7900000 documents Indexed 8000000 documents Indexed 8100000 documents Indexed 8200000 documents Indexed 8300000 documents Indexed 8400000 documents Indexed 8500000 documents Indexed 8600000 documents Indexed 8700000 documents Indexed 8800000 documents Indexed 8900000 documents Indexed 9000000 documents Indexed 9100000 documents Indexed 9200000 documents Indexed 9300000 documents Indexed 9400000 documents Indexed 9500000 documents Indexed 9600000 documents Indexed 9700000 documents Indexed 9800000 documents Indexed 9900000 documents Indexed 10000000 documents Indexed 10100000 documents Indexed 10200000 documents Indexed 10300000 documents Indexed 10400000 documents Indexed 10500000 documents Indexed 10600000 documents Indexed 10700000 documents Indexed 10800000 documents Indexed 10900000 documents Indexed 11000000 documents Indexed 11100000 documents Indexed 11200000 documents Indexed 11300000 documents Indexed 11400000 documents Indexed 11500000 documents Indexed 11600000 documents Indexed 11700000 documents Indexed 11800000 documents Indexed 11900000 documents Indexed 12000000 documents Indexed 12100000 documents Indexed 12200000 documents Indexed 12300000 documents Indexed 12400000 documents Indexed 12500000 documents Indexed 12600000 documents Indexed 12700000 documents Indexed 12800000 documents Indexed 12900000 documents Indexed 13000000 documents Indexed 13100000 documents Indexed 13200000 documents Indexed 13300000 documents Indexed 13400000 documents Indexed 13500000 documents Indexed 13600000 documents Indexed 13700000 documents Indexed 13800000 documents Indexed 13900000 documents Indexed 14000000 documents Indexed 14100000 documents Indexed 14200000 documents Indexed 14300000 documents Indexed 14400000 documents Indexed 14500000 documents Indexed 14600000 documents Indexed 14700000 documents Indexed 14800000 documents Indexed 14900000 documents Indexed 15000000 documents Indexed 15100000 documents Indexed 15200000 documents Indexed 15300000 documents Indexed 15400000 documents Indexed 15500000 documents Indexed 15600000 documents Indexed 15700000 documents Indexed 15800000 documents Indexed 15900000 documents Indexed 16000000 documents Indexed 16100000 documents Indexed 16200000 documents Indexed 16300000 documents Indexed 16400000 documents Indexed 16500000 documents Indexed 16600000 documents Indexed 16700000 documents Indexed 16800000 documents Indexed 16900000 documents Indexed 17000000 documents Indexed 17100000 documents Indexed 17200000 documents Indexed 17300000 documents Indexed 17400000 documents Indexed 17500000 documents Indexed 17600000 documents Indexed 17700000 documents Indexed 17800000 documents Indexed 17900000 documents Indexed 18000000 documents Indexed 18100000 documents Indexed 18200000 documents Indexed 18300000 documents Indexed 18400000 documents Indexed 18500000 documents Indexed 18600000 documents Indexed 18700000 documents Indexed 18800000 documents Indexed 18900000 documents Indexed 19000000 documents Indexed 19100000 documents Indexed 19200000 documents Indexed 19300000 documents Indexed 19400000 documents Indexed 19500000 documents Indexed 19600000 documents Indexed 19700000 documents Indexed 19800000 documents Indexed 19900000 documents Indexed 20000000 documents Indexed 20100000 documents Indexed 20200000 documents Indexed 20300000 documents Indexed 20400000 documents Indexed 20500000 documents Indexed 20600000 documents Indexed 20700000 documents Indexed 20800000 documents Indexed 20900000 documents Indexed 21000000 documents Indexed 21100000 documents Indexed 21200000 documents Indexed 21300000 documents Indexed 21400000 documents Indexed 21500000 documents Indexed 21600000 documents Indexed 21700000 documents Indexed 21800000 documents Indexed 21900000 documents Indexed 22000000 documents Indexed 22100000 documents Indexed 22200000 documents Indexed 22300000 documents Indexed 22400000 documents Indexed 22500000 documents Indexed 22600000 documents Indexed 22700000 documents Indexed 22800000 documents Indexed 22900000 documents Indexed 23000000 documents Indexed 23100000 documents Indexed 23200000 documents Indexed 23300000 documents Indexed 23400000 documents Indexed 23500000 documents Indexed 23600000 documents Indexed 23700000 documents Indexed 23800000 documents Indexed 23900000 documents Indexed 24000000 documents Indexed 24100000 documents Indexed 24200000 documents Indexed 24300000 documents Indexed 24400000 documents Indexed 24500000 documents Indexed 24600000 documents Indexed 24700000 documents Indexed 24800000 documents Indexed 24900000 documents Indexed 25000000 documents Indexed 25100000 documents Indexed 25200000 documents Indexed 25300000 documents Indexed 25400000 documents Indexed 25500000 documents Indexed 25600000 documents Indexed 25700000 documents Indexed 25800000 documents Indexed 25900000 documents Indexed 26000000 documents Indexed 26100000 documents Indexed 26200000 documents Indexed 26300000 documents Indexed 26400000 documents Indexed 26500000 documents Indexed 26600000 documents Indexed 26700000 documents Indexed 26800000 documents Indexed 26900000 documents Indexed 27000000 documents Indexed 27100000 documents Indexed 27200000 documents Indexed 27300000 documents Indexed 27400000 documents Indexed 27500000 documents Indexed 27600000 documents Indexed 27700000 documents Indexed 27800000 documents Indexed 27900000 documents Indexed 28000000 documents Indexed 28100000 documents Indexed 28200000 documents Indexed 28300000 documents Indexed 28400000 documents Indexed 28500000 documents Indexed 28600000 documents Indexed 28700000 documents Indexed 28800000 documents Indexed 28900000 documents Indexed 29000000 documents Indexed 29100000 documents Indexed 29200000 documents Indexed 29300000 documents Indexed 29400000 documents Indexed 29500000 documents Indexed 29600000 documents Indexed 29700000 documents Indexed 29800000 documents Indexed 29900000 documents Indexed 30000000 documents Indexed 30100000 documents Indexed 30200000 documents Indexed 30300000 documents Indexed 30400000 documents Indexed 30500000 documents Indexed 30600000 documents Indexed 30700000 documents Indexed 30800000 documents Indexed 30900000 documents Indexed 31000000 documents Indexed 31100000 documents Indexed 31200000 documents Indexed 31300000 documents Indexed 31400000 documents Indexed 31500000 documents Indexed 31600000 documents Indexed 31700000 documents Indexed 31800000 documents Indexed 31900000 documents Indexed 32000000 documents Indexed 32100000 documents Indexed 32200000 documents Indexed 32300000 documents Indexed 32400000 documents Indexed 32500000 documents Indexed 32600000 documents Indexed 32700000 documents Indexed 32800000 documents Indexed 32900000 documents Indexed 33000000 documents Indexed 33100000 documents Indexed 33200000 documents Indexed 33300000 documents Indexed 33400000 documents Indexed 33500000 documents Indexed 33600000 documents Indexed 33700000 documents Indexed 33800000 documents Indexed 33900000 documents Indexed 34000000 documents Indexed 34100000 documents Indexed 34200000 documents Indexed 34300000 documents Indexed 34400000 documents Indexed 34500000 documents Indexed 34600000 documents Indexed 34700000 documents Indexed 34800000 documents Indexed 34900000 documents Indexed 35000000 documents Indexed 35100000 documents Indexed 35200000 documents Indexed 35300000 documents Indexed 35400000 documents Indexed 35500000 documents Indexed 35600000 documents Indexed 35700000 documents Indexed 35800000 documents Indexed 35900000 documents Indexed 36000000 documents Indexed 36100000 documents Indexed 36200000 documents Indexed 36300000 documents Indexed 36400000 documents Indexed 36500000 documents Indexed 36600000 documents Indexed 36700000 documents Indexed 36800000 documents Indexed 36900000 documents Indexed 37000000 documents Indexed 37100000 documents Indexed 37200000 documents Indexed 37300000 documents Indexed 37400000 documents Indexed 37500000 documents Indexed 37600000 documents Indexed 37700000 documents Indexed 37800000 documents Indexed 37900000 documents Indexed 38000000 documents Indexed 38100000 documents Indexed 38200000 documents Indexed 38300000 documents Indexed 38400000 documents Indexed 38500000 documents Indexed 38600000 documents Indexed 38700000 documents Indexed 38800000 documents Indexed 38900000 documents Indexed 39000000 documents Indexed 39100000 documents Indexed 39200000 documents Indexed 39300000 documents Indexed 39400000 documents Indexed 39500000 documents Indexed 39600000 documents Indexed 39700000 documents Indexed 39800000 documents Indexed 39900000 documents Indexed 40000000 documents Indexed 40100000 documents Indexed 40200000 documents Indexed 40300000 documents Indexed 40400000 documents Indexed 40500000 documents Indexed 40600000 documents Indexed 40700000 documents Indexed 40800000 documents Indexed 40900000 documents Indexed 41000000 documents Indexed 41100000 documents Indexed 41200000 documents Indexed 41300000 documents Indexed 41400000 documents Indexed 41500000 documents Indexed 41600000 documents Indexed 41700000 documents Indexed 41800000 documents Indexed 41900000 documents Indexed 42000000 documents Indexed 42100000 documents Indexed 42200000 documents Indexed 42300000 documents Indexed 42400000 documents Indexed 42500000 documents Indexed 42600000 documents Indexed 42700000 documents Indexed 42800000 documents Indexed 42900000 documents Indexed 43000000 documents Indexed 43100000 documents Indexed 43200000 documents Indexed 43300000 documents Indexed 43400000 documents Indexed 43500000 documents Indexed 43600000 documents Indexed 43700000 documents Indexed 43800000 documents Indexed 43900000 documents Indexed 44000000 documents Indexed 44100000 documents Indexed 44200000 documents Indexed 44300000 documents Indexed 44400000 documents Indexed 44500000 documents Indexed 44600000 documents Indexed 44700000 documents Indexed 44800000 documents Indexed 44900000 documents Indexed 45000000 documents Indexed 45100000 documents Indexed 45200000 documents Indexed 45300000 documents Indexed 45400000 documents Indexed 45500000 documents Indexed 45600000 documents Indexed 45700000 documents Indexed 45800000 documents Indexed 45900000 documents Indexed 46000000 documents Indexed 46100000 documents Indexed 46200000 documents Indexed 46300000 documents Indexed 46400000 documents Indexed 46500000 documents Indexed 46600000 documents Indexed 46700000 documents Indexed 46800000 documents Indexed 46900000 documents Indexed 47000000 documents Indexed 47100000 documents Indexed 47200000 documents Indexed 47300000 documents Indexed 47400000 documents Indexed 47500000 documents Indexed 47600000 documents Indexed 47700000 documents Indexed 47800000 documents Indexed 47900000 documents Indexed 48000000 documents Indexed 48100000 documents Indexed 48200000 documents Indexed 48300000 documents Indexed 48400000 documents Indexed 48500000 documents Indexed 48600000 documents Indexed 48700000 documents Indexed 48800000 documents Indexed 48900000 documents Indexed 49000000 documents Indexed 49100000 documents Indexed 49200000 documents Indexed 49300000 documents Indexed 49400000 documents Indexed 49500000 documents Indexed 49600000 documents Indexed 49700000 documents Indexed 49800000 documents Indexed 49900000 documents Indexed 50000000 documents Indexed 50100000 documents Indexed 50200000 documents Indexed 50300000 documents Indexed 50400000 documents Indexed 50500000 documents Indexed 50600000 documents Indexed 50700000 documents Indexed 50800000 documents Indexed 50900000 documents Indexed 51000000 documents Indexed 51100000 documents Indexed 51200000 documents Indexed 51300000 documents Indexed 51400000 documents Indexed 51500000 documents Indexed 51600000 documents Indexed 51700000 documents Indexed 51800000 documents Indexed 51900000 documents Indexed 52000000 documents Indexed 52100000 documents Indexed 52200000 documents Indexed 52300000 documents Indexed 52400000 documents Indexed 52500000 documents Indexed 52600000 documents Indexed 52700000 documents Indexed 52800000 documents Indexed 52900000 documents Indexed 53000000 documents Indexed 53100000 documents Indexed 53200000 documents Indexed 53300000 documents Indexed 53400000 documents Indexed 53500000 documents Indexed 53600000 documents Indexed 53700000 documents Indexed 53800000 documents Indexed 53900000 documents Indexed 54000000 documents Indexed 54100000 documents Indexed 54200000 documents Indexed 54300000 documents Indexed 54400000 documents Indexed 54500000 documents Indexed 54600000 documents Indexed 54700000 documents Indexed 54800000 documents Indexed 54900000 documents Indexed 55000000 documents Indexed 55100000 documents Indexed 55200000 documents Indexed 55300000 documents Indexed 55400000 documents Indexed 55500000 documents Indexed 55600000 documents Indexed 55700000 documents Indexed 55800000 documents Indexed 55900000 documents Indexed 56000000 documents Indexed 56100000 documents Indexed 56200000 documents Indexed 56300000 documents Indexed 56400000 documents Indexed 56500000 documents Indexed 56600000 documents Indexed 56700000 documents Indexed 56800000 documents Indexed 56900000 documents Indexed 57000000 documents Indexed 57100000 documents Indexed 57200000 documents Indexed 57300000 documents Indexed 57400000 documents Indexed 57500000 documents Indexed 57600000 documents Indexed 57700000 documents Indexed 57800000 documents Indexed 57900000 documents Indexed 58000000 documents Indexed 58100000 documents Indexed 58200000 documents Indexed 58300000 documents Indexed 58400000 documents Indexed 58500000 documents Indexed 58600000 documents Indexed 58700000 documents Indexed 58800000 documents Indexed 58900000 documents Indexed 59000000 documents Indexed 59100000 documents Indexed 59200000 documents Indexed 59300000 documents Indexed 59400000 documents Indexed 59500000 documents Indexed 59600000 documents Indexed 59700000 documents Indexed 59800000 documents Indexed 59900000 documents RUN: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/facet/build/libs/lucene-facet-11.0.0-SNAPSHOT.jar:build perf.facets.BenchmarkFacets /l/indices/nad-facets-nightly 30, cwd=/l/util.nightly Total time creating FastTaxonomyCounts: 1481.3403024 ms Total time creating SSDVFacetCounts: 3029.1969361333336 ms Total time taken to get all dims for taxonomy: 0.1404833 ms Total time taken to get all dims for SSDV: 0.07776946666666668 ms Total time to get top dims for taxonomy: 0.040084933333333336 ms Total time to get top dims for SSDV: 0.0314989 ms Total time to get top "address.taxonomy/TX" children: 0.1243707 ms Total time to get top "address.sortedset/TX" children: 0.20940853333333329 ms Total time to get all "address.taxonomy/TX" children: 0.13977103333333332 ms Total time to get all "address.sortedset/TX" children: 0.5892044333333332 ms Done: took 3496.19 seconds, saved to /l/logs.nightly/2026.05.15.14.49.32/nad-facet-benchmark.pk [2026-05-15 16:05:16.833551] done run NAD facets benchmark [2026-05-15 16:05:17.428883] now run KNN benchmark Lucene HEAD git revision at /l/trunk.nightly: de92f115a3125624bf7c7141b8e700efa9a89427 dirty?=False luceneutil HEAD git revision at /l/util.nightly: 63c1b2b252f377e272313c1ac0f182be79ad78b6 dirty?=False compile Lucene jars at /l/trunk.nightly Starting a Gradle Daemon (subsequent builds will be faster) > Task :build-infra:compileJava UP-TO-DATE > Task :build-infra:pluginDescriptors UP-TO-DATE > Task :build-infra:processResources UP-TO-DATE > Task :build-infra:classes UP-TO-DATE > Task :build-infra:jar UP-TO-DATE The eclint tool location is not set ('lucene.tool.eclint' option), will not apply eclint checks. The eclint tool location is not set ('lucene.tool.eclint' option), will not apply eclint checks. > Task :errorProneSkipped SKIPPED > Task :build-tools:build-infra-shadow:pluginDescriptors UP-TO-DATE > Task :lucene:memory:processResources NO-SOURCE > Task :lucene:queries:processResources NO-SOURCE > Task :lucene:facet:processResources NO-SOURCE > Task :lucene:highlighter:processResources NO-SOURCE > Task :build-tools:missing-doclet:processResources NO-SOURCE > Task :lucene:analysis.tests:processResources NO-SOURCE > Task :lucene:spatial3d:processResources NO-SOURCE > Task :lucene:spatial-extras:processResources NO-SOURCE > Task :lucene:backward-codecs:processResources UP-TO-DATE > Task :lucene:sandbox:processResources UP-TO-DATE > Task :lucene:core:processResources UP-TO-DATE > Task :lucene:queryparser:processResources UP-TO-DATE > Task :lucene:benchmark:processResources NO-SOURCE > Task :lucene:analysis.tests:compileJava NO-SOURCE > Task :lucene:grouping:processResources NO-SOURCE > Task :lucene:benchmark-jmh:processResources NO-SOURCE > Task :lucene:analysis.tests:classes UP-TO-DATE > Task :lucene:analysis:phonetic:processResources UP-TO-DATE > Task :lucene:codecs:processResources UP-TO-DATE > Task :lucene:expressions:processResources UP-TO-DATE > Task :lucene:analysis:common:processResources UP-TO-DATE > Task :lucene:demo:processResources NO-SOURCE > Task :lucene:classification:processResources NO-SOURCE > Task :lucene:distribution.tests:compileJava NO-SOURCE > Task :lucene:join:processResources NO-SOURCE > Task :lucene:misc:processResources NO-SOURCE > Task :lucene:suggest:processResources UP-TO-DATE > Task :lucene:distribution.tests:processResources NO-SOURCE > Task :lucene:distribution.tests:classes UP-TO-DATE > Task :lucene:analysis:morfologik:processResources UP-TO-DATE > Task :lucene:analysis:icu:processResources UP-TO-DATE > Task :lucene:analysis:opennlp:processResources UP-TO-DATE > Task :lucene:monitor:processResources NO-SOURCE > Task :lucene:analysis:kuromoji:processResources UP-TO-DATE > Task :lucene:analysis:nori:processResources UP-TO-DATE > Task :lucene:analysis:smartcn:processResources UP-TO-DATE > Task :lucene:analysis:stempel:processResources UP-TO-DATE > Task :lucene:luke:processResources UP-TO-DATE > Task :lucene:replicator:processResources NO-SOURCE > Task :lucene:spatial-test-fixtures:processResources NO-SOURCE > Task :lucene:analysis.tests:jar UP-TO-DATE > Task :lucene:analysis:morfologik.tests:compileJava NO-SOURCE > Task :lucene:analysis:morfologik.tests:processResources NO-SOURCE > Task :lucene:analysis:morfologik.tests:classes UP-TO-DATE > Task :lucene:distribution.tests:jar UP-TO-DATE > Task :build-tools:missing-doclet:compileJava UP-TO-DATE > Task :lucene:core.tests:compileJava UP-TO-DATE > Task :build-tools:missing-doclet:classes UP-TO-DATE > Task :lucene:test-framework:processResources UP-TO-DATE > Task :lucene:core.tests:processResources NO-SOURCE > Task :lucene:core.tests:classes UP-TO-DATE > Task :lucene:analysis:morfologik.tests:jar UP-TO-DATE > Task :build-tools:missing-doclet:jar UP-TO-DATE > Task :build-tools:build-infra-shadow:compileJava UP-TO-DATE > Task :lucene:core.tests:jar UP-TO-DATE > Task :build-tools:build-infra-shadow:processResources NO-SOURCE > Task :build-tools:build-infra-shadow:classes UP-TO-DATE > Task :build-tools:build-infra-shadow:jar UP-TO-DATE > Task :lucene:core:compileJava UP-TO-DATE > Task :lucene:core:classes UP-TO-DATE > Task :lucene:core:compileMain25Java UP-TO-DATE > Task :lucene:core:processMain25Resources NO-SOURCE > Task :lucene:core:main25Classes UP-TO-DATE > Task :lucene:core:jar UP-TO-DATE > Task :lucene:memory:compileJava UP-TO-DATE > Task :lucene:memory:classes UP-TO-DATE > Task :lucene:memory:jar UP-TO-DATE > Task :lucene:replicator:compileJava UP-TO-DATE > Task :lucene:replicator:classes UP-TO-DATE > Task :lucene:misc:compileJava UP-TO-DATE > Task :lucene:misc:classes UP-TO-DATE > Task :lucene:replicator:jar UP-TO-DATE > Task :lucene:misc:jar UP-TO-DATE > Task :lucene:join:compileJava UP-TO-DATE > Task :lucene:join:classes UP-TO-DATE > Task :lucene:codecs:compileJava UP-TO-DATE > Task :lucene:codecs:classes UP-TO-DATE > Task :lucene:join:jar UP-TO-DATE > Task :lucene:codecs:jar UP-TO-DATE > Task :lucene:spatial3d:compileJava UP-TO-DATE > Task :lucene:spatial3d:classes UP-TO-DATE > Task :lucene:facet:compileJava UP-TO-DATE > Task :lucene:facet:classes UP-TO-DATE > Task :lucene:backward-codecs:compileJava UP-TO-DATE > Task :lucene:backward-codecs:classes UP-TO-DATE > Task :lucene:facet:jar UP-TO-DATE > Task :lucene:spatial3d:jar UP-TO-DATE > Task :lucene:backward-codecs:jar UP-TO-DATE > Task :lucene:queries:compileJava UP-TO-DATE > Task :lucene:expressions:compileJava UP-TO-DATE > Task :lucene:queries:classes UP-TO-DATE > Task :lucene:expressions:classes UP-TO-DATE > Task :lucene:queries:jar UP-TO-DATE > Task :lucene:expressions:jar UP-TO-DATE > Task :lucene:spatial-extras:compileJava UP-TO-DATE > Task :lucene:grouping:compileJava UP-TO-DATE > Task :lucene:spatial-extras:classes UP-TO-DATE > Task :lucene:grouping:classes UP-TO-DATE > Task :lucene:spatial-extras:jar UP-TO-DATE > Task :lucene:grouping:jar UP-TO-DATE > Task :lucene:highlighter:compileJava UP-TO-DATE > Task :lucene:highlighter:classes UP-TO-DATE > Task :lucene:classification:compileJava UP-TO-DATE > Task :lucene:classification:classes UP-TO-DATE > Task :lucene:sandbox:compileJava UP-TO-DATE > Task :lucene:sandbox:classes UP-TO-DATE > Task :lucene:highlighter:jar UP-TO-DATE > Task :lucene:classification:jar UP-TO-DATE > Task :lucene:sandbox:jar UP-TO-DATE > Task :lucene:analysis:common:compileJava UP-TO-DATE > Task :lucene:analysis:common:classes UP-TO-DATE > Task :lucene:analysis:common:jar UP-TO-DATE > Task :lucene:test-framework:compileJava UP-TO-DATE > Task :lucene:analysis:phonetic:compileJava UP-TO-DATE > Task :lucene:analysis:phonetic:classes UP-TO-DATE > Task :lucene:analysis:morfologik:compileJava UP-TO-DATE > Task :lucene:analysis:morfologik:classes UP-TO-DATE > Task :lucene:analysis:icu:compileJava UP-TO-DATE > Task :lucene:analysis:icu:classes UP-TO-DATE > Task :lucene:analysis:stempel:compileJava UP-TO-DATE > Task :lucene:analysis:stempel:classes UP-TO-DATE > Task :lucene:analysis:smartcn:compileJava UP-TO-DATE > Task :lucene:analysis:smartcn:classes UP-TO-DATE > Task :lucene:analysis:phonetic:jar UP-TO-DATE > Task :lucene:test-framework:classes UP-TO-DATE > Task :lucene:analysis:nori:compileJava UP-TO-DATE > Task :lucene:analysis:morfologik:jar UP-TO-DATE > Task :lucene:analysis:nori:classes UP-TO-DATE > Task :lucene:analysis:icu:jar UP-TO-DATE > Task :lucene:analysis:opennlp:compileJava UP-TO-DATE > Task :lucene:analysis:opennlp:classes UP-TO-DATE > Task :lucene:analysis:kuromoji:compileJava UP-TO-DATE > Task :lucene:analysis:kuromoji:classes UP-TO-DATE > Task :lucene:analysis:stempel:jar UP-TO-DATE > Task :lucene:analysis:smartcn:jar UP-TO-DATE > Task :lucene:analysis:nori:jar UP-TO-DATE > Task :lucene:monitor:compileJava UP-TO-DATE > Task :lucene:suggest:compileJava UP-TO-DATE > Task :lucene:monitor:classes UP-TO-DATE > Task :lucene:suggest:classes UP-TO-DATE > Task :lucene:queryparser:compileJava UP-TO-DATE > Task :lucene:queryparser:classes UP-TO-DATE > Task :lucene:test-framework:jar UP-TO-DATE > Task :lucene:analysis:opennlp:jar UP-TO-DATE > Task :lucene:analysis:kuromoji:jar UP-TO-DATE > Task :lucene:benchmark-jmh:compileJava UP-TO-DATE > Task :lucene:benchmark-jmh:classes UP-TO-DATE > Task :lucene:monitor:jar UP-TO-DATE > Task :lucene:suggest:jar UP-TO-DATE > Task :lucene:queryparser:jar UP-TO-DATE > Task :lucene:spatial-test-fixtures:compileJava UP-TO-DATE > Task :lucene:spatial-test-fixtures:classes UP-TO-DATE > Task :lucene:demo:compileJava UP-TO-DATE > Task :lucene:demo:classes UP-TO-DATE > Task :lucene:spatial-test-fixtures:jar UP-TO-DATE > Task :lucene:benchmark-jmh:jar UP-TO-DATE > Task :lucene:demo:jar UP-TO-DATE > Task :lucene:luke:compileJava UP-TO-DATE > Task :lucene:luke:classes UP-TO-DATE > Task :lucene:benchmark:compileJava UP-TO-DATE > Task :lucene:benchmark:classes UP-TO-DATE > Task :lucene:luke:jar UP-TO-DATE > Task :lucene:benchmark:jar UP-TO-DATE BUILD SUCCESSFUL in 6s 101 actionable tasks: 101 up-to-date Consider enabling configuration cache to speed up this build: https://docs.gradle.org/9.5.0/userguide/configuration_cache_enabling.html compile luceneutil KNN at /l/util.nightly WARNING: A restricted method in java.lang.System has been called WARNING: java.lang.System::load has been called by net.rubygrapefruit.platform.internal.NativeLibraryLoader in an unnamed module (file:/home/mike/.gradle/wrapper/dists/gradle-9.1.0-bin/9agqghryom9wkf8r80qlhnts3/gradle-9.1.0/lib/native-platform-0.22-milestone-28.jar) WARNING: Use --enable-native-access=ALL-UNNAMED to avoid a warning for callers in this module WARNING: Restricted methods will be blocked in a future release unless native access is enabled Starting a Gradle Daemon (subsequent builds will be faster) > Task :compileKnn Note: Some input files use or override a deprecated API. Note: Recompile with -Xlint:deprecation for details. Note: /l/util.nightly/src/main/perf/SearchTask.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. [Incubating] Problems report is available at: file:///l/util.nightly/build/reports/problems/problems-report.html Deprecated Gradle features were used in this build, making it incompatible with Gradle 10. You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. For more on this, please refer to https://docs.gradle.org/9.1.0/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation. BUILD SUCCESSFUL in 6s 1 actionable task: 1 executed Consider enabling configuration cache to speed up this build: https://docs.gradle.org/9.1.0/userguide/configuration_cache_enabling.html CPU Information: model: AMD Ryzen Threadripper 3990X 64-Core Processor logical cores: 128 physical cores per socket: 64 microcode: 0x830107d flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip rdpid overflow_recov succor smca sev sev_es vmx flags: none bugs: sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass retbleed smt_rsb srso ibpb_no_ret spectre_v2_user vmscape Memory Information: total RAM: 251.72 GB free RAM: 34.83 GB available RAM: 243.21 GB used RAM: 8.51 GB dirty RAM: 5.36 MB smell vectors from /big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec smell: sampling 2000 of 39709371 vectors for per-dim distribution... smell: 100/2000 ( 5%) 3.0s smell: 200/2000 ( 10%) 3.1s smell: 300/2000 ( 15%) 3.1s smell: 400/2000 ( 20%) 3.1s smell: 500/2000 ( 25%) 3.1s smell: 600/2000 ( 30%) 3.1s smell: 700/2000 ( 35%) 3.1s smell: 800/2000 ( 40%) 3.1s smell: 900/2000 ( 45%) 3.1s smell: 1000/2000 ( 50%) 3.1s smell: 1100/2000 ( 55%) 3.1s smell: 1200/2000 ( 60%) 3.1s smell: 1300/2000 ( 65%) 3.1s smell: 1400/2000 ( 70%) 3.1s smell: 1500/2000 ( 75%) 3.1s smell: 1600/2000 ( 80%) 3.1s smell: 1700/2000 ( 85%) 3.1s smell: 1800/2000 ( 90%) 3.1s smell: 1900/2000 ( 95%) 3.1s smell: 2000/2000 (100%) 3.1s smell: 3 degenerate dim(s) found in 3.2s: (OUTLIER_SPREAD: std of all dims: μ=0.027, σ=0.007, threshold=3.0σ) [ ▁▆▇█▇▃ ] dim 0585 μ= -0.032 σ= 0.050 zeros= 0% [ ▁▂▃▆██████▇▃▂▁ ] -> OUTLIER_SPREAD: this_std=0.0498, mean_std=0.0266, +3.3sigma vs threshold=3.0sigma [ ▃▇▇█▆▂ ] dim 0910 μ= -0.006 σ= 0.048 zeros= 0% [ ▁▂▅███████▄▂▁ ] -> OUTLIER_SPREAD: this_std=0.0484, mean_std=0.0266, +3.1sigma vs threshold=3.0sigma [ ▂▅▇█▃ ] dim 0971 μ= +0.015 σ= 0.049 zeros= 0% [ ▁▂▅▇██████▅▂▁ ] -> OUTLIER_SPREAD: this_std=0.0488, mean_std=0.0266, +3.1sigma vs threshold=3.0sigma smell: all 1024 dims: [ ▁█▇ ] dim 0000 μ= +0.002 σ= 0.023 zeros= 0% [ ▃████▂ ] [ ▃█▅ ] dim 0001 μ= +0.018 σ= 0.026 zeros= 0% [ ▁▅███▇▃ ] [ ▁▇█▅▁ ] dim 0002 μ= -0.007 σ= 0.034 zeros= 0% [ ▁▁▄█████▄▁ ] [ ▂██▁ ] dim 0003 μ= +0.022 σ= 0.027 zeros= 0% [ ▁▄████▄▁ ] [ ▂█▆▁ ] dim 0004 μ= -0.017 σ= 0.027 zeros= 0% [ ▁▄████▃▁ ] [ ▁▆█▅ ] dim 0005 μ= -0.007 σ= 0.034 zeros= 0% [ ▁▄█████▄▁ ] [ ▁█▅ ] dim 0006 μ= -0.000 σ= 0.019 zeros= 0% [ ▁███▅▁ ] [ ▆█▁ ] dim 0007 μ= -0.030 σ= 0.021 zeros= 0% [ ▁▅███▂ ] [ █▆ ] dim 0008 μ= -0.018 σ= 0.018 zeros= 0% [ ▁▇██▅ ] [ ▅█▃ ] dim 0009 μ= +0.008 σ= 0.029 zeros= 0% [ ▁▃████▄▂ ] [ ▅█▆ ] dim 0010 μ= +0.014 σ= 0.031 zeros= 0% [ ▁▃█████▃▁ ] [ ▂█▇▄ ] dim 0011 μ= -0.012 σ= 0.036 zeros= 0% [ ▁▃▆█████▃▁ ] [ ▃█▁ ] dim 0012 μ= +0.012 σ= 0.019 zeros= 0% [ ▂███▂ ] [ ▄█▁ ] dim 0013 μ= -0.010 σ= 0.021 zeros= 0% [ ▁▅███▂ ] [ ▂▇█▅ ] dim 0014 μ= +0.006 σ= 0.035 zeros= 0% [ ▁▂▆████▆▃▁ ] [ ▂█▆ ] dim 0015 μ= -0.001 σ= 0.021 zeros= 0% [ ▂███▅▁ ] [ ▂█▅▁ ] dim 0016 μ= +0.001 σ= 0.028 zeros= 0% [ ▁▅████▄▁ ] [ ▃█▅ ] dim 0017 μ= +0.015 σ= 0.032 zeros= 0% [ ▁▃▇████▃▁ ] [ ▃▇█▇▄ ] dim 0018 μ= +0.014 σ= 0.037 zeros= 0% [ ▁▂▆█████▆▃ ] [ ▂▅█▃ ] dim 0019 μ= +0.006 σ= 0.030 zeros= 0% [ ▁▄████▆▁ ] [ ▄█▃ ] dim 0020 μ= +0.012 σ= 0.023 zeros= 0% [ ▁▅███▅▁ ] [ ▆█▂ ] dim 0021 μ= +0.008 σ= 0.022 zeros= 0% [ ▁▆███▃ ] [ ▆█▆▂ ] dim 0022 μ= +0.002 σ= 0.035 zeros= 0% [ ▁▃█████▇▂▁ ] [ ▂▆██▇▃ ] dim 0023 μ= -0.009 σ= 0.046 zeros= 0% [ ▁▂▆███████▅▂ ] [ ▇█▅▂ ] dim 0024 μ= -0.005 σ= 0.033 zeros= 0% [ ▁▄█████▄▁ ] [ ▃█▆▁ ] dim 0025 μ= +0.018 σ= 0.028 zeros= 0% [ ▂▅████▂▁ ] [ ▇█▁ ] dim 0026 μ= +0.026 σ= 0.024 zeros= 0% [ ▂▇███▃▁ ] [ ▅█▄ ] dim 0027 μ= -0.007 σ= 0.028 zeros= 0% [ ▃▇███▇▁ ] [ ▂▇█▄ ] dim 0028 μ= +0.026 σ= 0.030 zeros= 0% [ ▁▄████▅▂ ] [ ▄█▆ ] dim 0029 μ= -0.002 σ= 0.029 zeros= 0% [ ▂▆████▃▁ ] [ ▆█▂ ] dim 0030 μ= -0.010 σ= 0.024 zeros= 0% [ ▂▆███▄▁ ] [ ▆█ ] dim 0031 μ= -0.013 σ= 0.019 zeros= 0% [ ▁▅██▇▁ ] [ ▃▆█▆▁ ] dim 0032 μ= +0.030 σ= 0.036 zeros= 0% [ ▁▂▅█████▄▂ ] [ ▄█▃ ] dim 0033 μ= +0.030 σ= 0.028 zeros= 0% [ ▂▆███▅▂ ] [ ▂█▄ ] dim 0034 μ= -0.004 σ= 0.023 zeros= 0% [ ▁▄███▄▁ ] [ ▂▇█▄ ] dim 0035 μ= +0.007 σ= 0.032 zeros= 0% [ ▁▆████▇▂▁ ] [ █▆ ] dim 0036 μ= +0.001 σ= 0.020 zeros= 0% [ ▁███▅▁ ] [ ▆█▄ ] dim 0037 μ= -0.028 σ= 0.025 zeros= 0% [ ▂▆███▄▁ ] [ ▁█▅ ] dim 0038 μ= -0.001 σ= 0.020 zeros= 0% [ ▂███▅▁ ] [ ▅█▆ ] dim 0039 μ= +0.034 σ= 0.028 zeros= 0% [ ▂▆███▇▃ ] [ ▂▅█▅▁ ] dim 0040 μ= +0.011 σ= 0.037 zeros= 0% [ ▁▂▆█████▅▂▁ ] [ ██ ] dim 0041 μ= +0.005 σ= 0.017 zeros= 0% [ ▁▅██▆▁ ] [ ▂██▁ ] dim 0042 μ= -0.017 σ= 0.027 zeros= 0% [ ▁▄████▃▁ ] [ ▅█▃ ] dim 0043 μ= +0.014 σ= 0.026 zeros= 0% [ ▂▆███▇▂ ] [ ▃█▅▁ ] dim 0044 μ= -0.023 σ= 0.032 zeros= 0% [ ▁▃▇████▃▁ ] [ ▂█▅ ] dim 0045 μ= +0.016 σ= 0.025 zeros= 0% [ ▁▅███▆▂ ] [ ▃█▂ ] dim 0046 μ= +0.012 σ= 0.020 zeros= 0% [ ▁▃███▃ ] [ ▁▇█▄ ] dim 0047 μ= +0.005 σ= 0.032 zeros= 0% [ ▂▅████▆▁ ] [ ▃█▇▆▁ ] dim 0048 μ= +0.009 σ= 0.040 zeros= 0% [ ▁▄██████▅▂▁ ] [ ▁██▂ ] dim 0049 μ= +0.023 σ= 0.028 zeros= 0% [ ▁▅████▅▁ ] [ ▅█▆ ] dim 0050 μ= +0.014 σ= 0.029 zeros= 0% [ ▁▂▇███▇▃ ] [ ▂█▆▁ ] dim 0051 μ= -0.000 σ= 0.029 zeros= 0% [ ▂▅████▃▁ ] [ ██ ] dim 0052 μ= +0.005 σ= 0.016 zeros= 0% [ ▄██▅ ] [ ▁█▅ ] dim 0053 μ= -0.002 σ= 0.020 zeros= 0% [ ▂███▄▁ ] [ ▄█▅ ] dim 0054 μ= +0.014 σ= 0.024 zeros= 0% [ ▁▅███▆▁ ] [ ▂█▆ ] dim 0055 μ= +0.017 σ= 0.023 zeros= 0% [ ▁▃███▆▁ ] [ ▄█▇▁ ] dim 0056 μ= +0.019 σ= 0.029 zeros= 0% [ ▂▅████▃▁ ] [ ▁▅█▇▁ ] dim 0057 μ= +0.013 σ= 0.032 zeros= 0% [ ▁▅█████▄▁ ] [ ▆█▇ ] dim 0058 μ= +0.012 σ= 0.033 zeros= 0% [ ▁▄█████▃▁ ] [ ▆█▄ ] dim 0059 μ= +0.009 σ= 0.028 zeros= 0% [ ▃████▅▂ ] [ ▁█ ] dim 0060 μ= +0.008 σ= 0.012 zeros= 0% [ ▁██▃ ] [ ▄██▂ ] dim 0061 μ= -0.017 σ= 0.028 zeros= 0% [ ▁▅████▄▁ ] [ ▃██▅ ] dim 0062 μ= -0.031 σ= 0.035 zeros= 0% [ ▁▂▅████▇▄▁ ] [ ▄█▅ ] dim 0063 μ= +0.016 σ= 0.024 zeros= 0% [ ▁▄███▆▂ ] [ ▁█▇▅ ] dim 0064 μ= -0.010 σ= 0.030 zeros= 0% [ ▁▄████▇▂▁ ] [ ▂██▂ ] dim 0065 μ= +0.004 σ= 0.028 zeros= 0% [ ▁▄████▄▁ ] [ ▆█▁ ] dim 0066 μ= +0.009 σ= 0.022 zeros= 0% [ ▁▄███▃ ] [ ▃▆█▆▂ ] dim 0067 μ= -0.004 σ= 0.037 zeros= 0% [ ▂▄█████▅▂▁ ] [ ▄█▃ ] dim 0068 μ= +0.010 σ= 0.023 zeros= 0% [ ▁▆███▄▁ ] [ ▁█▁ ] dim 0069 μ= +0.014 σ= 0.017 zeros= 0% [ ▁███▂ ] [ ▅█▃ ] dim 0070 μ= -0.009 σ= 0.025 zeros= 0% [ ▂▇███▄▁ ] [ ▂▇█▄ ] dim 0071 μ= +0.008 σ= 0.030 zeros= 0% [ ▁▄████▆▂▁ ] [ ▄█▃ ] dim 0072 μ= +0.013 σ= 0.021 zeros= 0% [ ▁▃███▃ ] [ ▅█ ] dim 0073 μ= +0.007 σ= 0.014 zeros= 0% [ ▂██▄ ] [ ▃▇█▃ ] dim 0074 μ= -0.013 σ= 0.032 zeros= 0% [ ▁▂▄████▆▂▁ ] [ ▃█▄ ] dim 0075 μ= -0.005 σ= 0.024 zeros= 0% [ ▁▄███▅▁ ] [ ▁█▄ ] dim 0076 μ= -0.002 σ= 0.020 zeros= 0% [ ▂███▅▁ ] [ ▂▇█▅▁ ] dim 0077 μ= -0.009 σ= 0.041 zeros= 0% [ ▂▄▆█████▅▂▁ ] [ ▂█▄ ] dim 0078 μ= +0.015 σ= 0.022 zeros= 0% [ ▁▃███▅▁ ] [ ▅█▄ ] dim 0079 μ= +0.010 σ= 0.027 zeros= 0% [ ▃▇███▅▂ ] [ ▃█ ] dim 0080 μ= -0.013 σ= 0.014 zeros= 0% [ ▂██▄ ] [ ▅█▃ ] dim 0081 μ= +0.010 σ= 0.025 zeros= 0% [ ▂▆███▄▁ ] [ ▁▇█▇▃ ] dim 0082 μ= +0.014 σ= 0.038 zeros= 0% [ ▁▂▅█████▅▂▁ ] [ ▄█▄ ] dim 0083 μ= +0.014 σ= 0.024 zeros= 0% [ ▁▅███▅▁ ] [ ▆█▇ ] dim 0084 μ= +0.012 σ= 0.033 zeros= 0% [ ▁▄████▇▃▁ ] [ ▃█▄ ] dim 0085 μ= -0.003 σ= 0.024 zeros= 0% [ ▁▄███▅▁ ] [ ▃██▂ ] dim 0086 μ= -0.018 σ= 0.031 zeros= 0% [ ▁▂▆████▅▂ ] [ ▅█▄ ] dim 0087 μ= +0.011 σ= 0.024 zeros= 0% [ ▁▆███▄▁ ] [ ▄█▂ ] dim 0088 μ= -0.009 σ= 0.027 zeros= 0% [ ▂▇███▅▁ ] [ ▃██▃ ] dim 0089 μ= +0.023 σ= 0.031 zeros= 0% [ ▂▆████▆▂ ] [ ▄▇█▃ ] dim 0090 μ= +0.003 σ= 0.035 zeros= 0% [ ▁▃▇█████▂▁ ] [ ▂█▂ ] dim 0091 μ= +0.032 σ= 0.020 zeros= 0% [ ▁▃███▃ ] [ ▅██▂ ] dim 0092 μ= +0.034 σ= 0.033 zeros= 0% [ ▁▄█████▄▁ ] [ ▂▆█▇▁ ] dim 0093 μ= -0.006 σ= 0.035 zeros= 0% [ ▁▁▄█████▄▂ ] [ ▄██▂ ] dim 0094 μ= +0.002 σ= 0.027 zeros= 0% [ ▁▅████▃▁ ] [ ▃█ ] dim 0095 μ= -0.011 σ= 0.013 zeros= 0% [ ▁██▄ ] [ ▂▅█▂ ] dim 0096 μ= +0.005 σ= 0.032 zeros= 0% [ ▂▅████▅▂▁ ] [ ▄█▅ ] dim 0097 μ= -0.004 σ= 0.025 zeros= 0% [ ▁▅███▆▂ ] [ ▁██▂ ] dim 0098 μ= +0.006 σ= 0.026 zeros= 0% [ ▁▃████▄▁ ] [ ▃█▂ ] dim 0099 μ= -0.007 σ= 0.021 zeros= 0% [ ▁▃███▃ ] [ ▁█▇ ] dim 0100 μ= +0.002 σ= 0.023 zeros= 0% [ ▂███▇▂ ] [ ▃█▄ ] dim 0101 μ= -0.023 σ= 0.022 zeros= 0% [ ▁▃███▄▁ ] [ ▆█▃ ] dim 0102 μ= -0.010 σ= 0.025 zeros= 0% [ ▂▇███▅▁ ] [ ▆█▂ ] dim 0103 μ= +0.007 σ= 0.024 zeros= 0% [ ▂▇███▃▁ ] [ ▅█▅ ] dim 0104 μ= +0.014 σ= 0.026 zeros= 0% [ ▂▆███▆▂ ] [ ▂██▃ ] dim 0105 μ= +0.006 σ= 0.028 zeros= 0% [ ▁▃████▅▁ ] [ ▁▇█▅ ] dim 0106 μ= +0.008 σ= 0.028 zeros= 0% [ ▁▃████▅▂ ] [ ▂█▃ ] dim 0107 μ= -0.003 σ= 0.019 zeros= 0% [ ▂███▄ ] [ ▃█▇▃ ] dim 0108 μ= -0.018 σ= 0.035 zeros= 0% [ ▁▃█████▆▃▁ ] [ ▄█▁ ] dim 0109 μ= +0.009 σ= 0.022 zeros= 0% [ ▁▅███▃ ] [ ▆█▂ ] dim 0110 μ= +0.008 σ= 0.022 zeros= 0% [ ▁▆███▃ ] [ ▇█ ] dim 0111 μ= +0.024 σ= 0.020 zeros= 0% [ ▁▆███▁ ] [ ▇█▁ ] dim 0112 μ= +0.005 σ= 0.024 zeros= 0% [ ▃████▃▁ ] [ ▇█ ] dim 0113 μ= -0.014 σ= 0.017 zeros= 0% [ ▄██▅▁ ] [ ▁▅█▆▂ ] dim 0114 μ= -0.006 σ= 0.037 zeros= 0% [ ▁▂▅█████▅▂▁ ] [ ▃▆█▃ ] dim 0115 μ= -0.014 σ= 0.034 zeros= 0% [ ▁▂▅████▆▃▁ ] [ ▅█ ] dim 0116 μ= +0.007 σ= 0.018 zeros= 0% [ ▄██▇▁ ] [ ▁█ ] dim 0117 μ= -0.006 σ= 0.017 zeros= 0% [ ▁███▂ ] [ ▃▇█▄ ] dim 0118 μ= -0.012 σ= 0.033 zeros= 0% [ ▁▆████▇▃▁ ] [ ▁▇█▄ ] dim 0119 μ= -0.011 σ= 0.028 zeros= 0% [ ▁▃████▅▁ ] [ ▅▇█▅ ] dim 0120 μ= -0.032 σ= 0.038 zeros= 0% [ ▁▃▇█████▃▂▁ ] [ ▄█▄ ] dim 0121 μ= +0.014 σ= 0.025 zeros= 0% [ ▂▅███▅▁ ] [ █▃ ] dim 0122 μ= -0.003 σ= 0.017 zeros= 0% [ ▁▇██▂ ] [ █▇ ] dim 0123 μ= +0.003 σ= 0.023 zeros= 0% [ ▂███▇▂ ] [ ▇█ ] dim 0124 μ= -0.015 σ= 0.021 zeros= 0% [ ▁▇██▇▁ ] [ ▂▇█▆▃ ] dim 0125 μ= -0.004 σ= 0.045 zeros= 0% [ ▁▁▃███████▃▂▁ ] [ █▇ ] dim 0126 μ= +0.022 σ= 0.017 zeros= 0% [ ▁▆██▅▁ ] [ ▂█▆ ] dim 0127 μ= -0.020 σ= 0.023 zeros= 0% [ ▁▃███▇▁ ] [ ▄▇█▂ ] dim 0128 μ= -0.018 σ= 0.029 zeros= 0% [ ▂▅████▄▁ ] [ ▂▆█▆▂ ] dim 0129 μ= -0.006 σ= 0.040 zeros= 0% [ ▁▂▅█████▆▂▁ ] [ ▆█▂ ] dim 0130 μ= -0.028 σ= 0.022 zeros= 0% [ ▁▅███▃ ] [ ▄█▆▁ ] dim 0131 μ= +0.000 σ= 0.029 zeros= 0% [ ▁▆████▃▁ ] [ ██▂ ] dim 0132 μ= +0.005 σ= 0.026 zeros= 0% [ ▁▃████▃▁ ] [ ▄█ ] dim 0133 μ= +0.008 σ= 0.015 zeros= 0% [ ▂██▅ ] [ ██▁ ] dim 0134 μ= +0.024 σ= 0.024 zeros= 0% [ ▃████▃▁ ] [ ▅█▇▃ ] dim 0135 μ= -0.002 σ= 0.031 zeros= 0% [ ▁▃▇████▄▁ ] [ ▂▇█▄▁ ] dim 0136 μ= +0.010 σ= 0.039 zeros= 0% [ ▁▃▆█████▅▃▁ ] [ ▅█▅▁ ] dim 0137 μ= -0.022 σ= 0.029 zeros= 0% [ ▁▂▆████▃▁ ] [ ▄█▄ ] dim 0138 μ= +0.035 σ= 0.027 zeros= 0% [ ▁▅███▇▂ ] [ ▁██▄ ] dim 0139 μ= +0.007 σ= 0.028 zeros= 0% [ ▁▄████▅▂ ] [ ▆█▁ ] dim 0140 μ= +0.007 σ= 0.022 zeros= 0% [ ▁▆███▂ ] [ ▆█▁ ] dim 0141 μ= +0.006 σ= 0.023 zeros= 0% [ ▂▇███▂▁ ] [ ▃█ ] dim 0142 μ= +0.009 σ= 0.014 zeros= 0% [ ▁██▅ ] [ ▃██▁ ] dim 0143 μ= +0.001 σ= 0.027 zeros= 0% [ ▁▄████▃▁ ] [ ▃██▅ ] dim 0144 μ= +0.005 σ= 0.035 zeros= 0% [ ▁▃▇█████▃▁ ] [ █▆ ] dim 0145 μ= -0.018 σ= 0.018 zeros= 0% [ ▁▇██▄ ] [ ▆█▇▂ ] dim 0146 μ= +0.016 σ= 0.032 zeros= 0% [ ▁▃█████▄▂ ] [ ▂▆█▄ ] dim 0147 μ= +0.024 σ= 0.029 zeros= 0% [ ▁▅████▅▁ ] [ ▁█▄ ] dim 0148 μ= -0.003 σ= 0.018 zeros= 0% [ ▂███▂ ] [ ██▂ ] dim 0149 μ= -0.014 σ= 0.024 zeros= 0% [ ▂████▃ ] [ ▄██▇▂ ] dim 0150 μ= -0.011 σ= 0.036 zeros= 0% [ ▁▃▆█████▄▁ ] [ ▂▆█▆▁ ] dim 0151 μ= +0.010 σ= 0.038 zeros= 0% [ ▁▃▆█████▅▁▁ ] [ ▇█ ] dim 0152 μ= +0.024 σ= 0.017 zeros= 0% [ ▄██▅▁ ] [ ▅█▄ ] dim 0153 μ= -0.028 σ= 0.029 zeros= 0% [ ▁▃████▆▂ ] [ ▁▆█▄ ] dim 0154 μ= -0.008 σ= 0.035 zeros= 0% [ ▁▁▅█████▄▂ ] [ ▂█ ] dim 0155 μ= +0.009 σ= 0.014 zeros= 0% [ ▁██▅ ] [ ▄██▁ ] dim 0156 μ= -0.001 σ= 0.032 zeros= 0% [ ▁▃▇████▄▁▁ ] [ ▅█▃ ] dim 0157 μ= -0.008 σ= 0.025 zeros= 0% [ ▂▆███▄▁ ] [ ▁█▃ ] dim 0158 μ= -0.004 σ= 0.021 zeros= 0% [ ▃███▄▁ ] [ ▅█▆▃ ] dim 0159 μ= -0.001 σ= 0.036 zeros= 0% [ ▁▄▇████▅▂ ] [ ▃█▆ ] dim 0160 μ= -0.003 σ= 0.026 zeros= 0% [ ▁▅███▇▂ ] [ ▃▆█▆ ] dim 0161 μ= -0.007 σ= 0.034 zeros= 0% [ ▁▄█████▅▁ ] [ ▄█▄ ] dim 0162 μ= -0.003 σ= 0.025 zeros= 0% [ ▁▄███▆▂ ] [ ▂█▅ ] dim 0163 μ= +0.001 σ= 0.027 zeros= 0% [ ▁▄████▃▁ ] [ ▄█▅ ] dim 0164 μ= +0.032 σ= 0.031 zeros= 0% [ ▁▃▇████▃▁ ] [ ▂██▃ ] dim 0165 μ= -0.013 σ= 0.027 zeros= 0% [ ▁▃████▅▁ ] [ ▁██▆ ] dim 0166 μ= +0.011 σ= 0.033 zeros= 0% [ ▁▄█████▃▁ ] [ ▁█ ] dim 0167 μ= -0.007 σ= 0.015 zeros= 0% [ ▁██▇▁ ] [ ██ ] dim 0168 μ= +0.004 σ= 0.015 zeros= 0% [ ▄██▄ ] [ ▂█▆ ] dim 0169 μ= +0.000 σ= 0.028 zeros= 0% [ ▁▅████▃▁ ] [ ▄▇█▂ ] dim 0170 μ= +0.022 σ= 0.031 zeros= 0% [ ▂▆████▆▂ ] [ ▁▅█▄ ] dim 0171 μ= -0.008 σ= 0.029 zeros= 0% [ ▁▂████▆▃ ] [ ▃█▃ ] dim 0172 μ= -0.007 σ= 0.023 zeros= 0% [ ▁▅███▄▁ ] [ █▁ ] dim 0173 μ= -0.005 σ= 0.016 zeros= 0% [ ▁███▂ ] [ ▄█▆▁ ] dim 0174 μ= -0.019 σ= 0.028 zeros= 0% [ ▁▅████▃▁ ] [ ▄█▇▃ ] dim 0175 μ= -0.015 σ= 0.031 zeros= 0% [ ▂▅████▅▂ ] [ █▇ ] dim 0176 μ= +0.001 σ= 0.020 zeros= 0% [ ▁███▅▁ ] [ ██▅ ] dim 0177 μ= +0.010 σ= 0.027 zeros= 0% [ ▂████▅▂ ] [ █▆ ] dim 0178 μ= +0.022 σ= 0.022 zeros= 0% [ ▂███▇▂ ] [ ▅█▆ ] dim 0179 μ= -0.020 σ= 0.032 zeros= 0% [ ▁▃▆████▄▁ ] [ ▇█▂ ] dim 0180 μ= +0.009 σ= 0.025 zeros= 0% [ ▂▇███▄▁ ] [ ▄█▆ ] dim 0181 μ= -0.001 σ= 0.027 zeros= 0% [ ▁▅████▃ ] [ ▁▇█▃ ] dim 0182 μ= -0.029 σ= 0.027 zeros= 0% [ ▃████▆▁ ] [ ▄█▆▆▂ ] dim 0183 μ= -0.004 σ= 0.044 zeros= 0% [ ▁▃▇█████▆▄▂▁ ] [ ▃██▅ ] dim 0184 μ= +0.005 σ= 0.033 zeros= 0% [ ▁▂▇████▇▂▁ ] [ ▄█▇▃ ] dim 0185 μ= -0.017 σ= 0.030 zeros= 0% [ ▂▆████▄▂ ] [ ▂█▄ ] dim 0186 μ= -0.005 σ= 0.019 zeros= 0% [ ▂███▂ ] [ ██▁ ] dim 0187 μ= +0.005 σ= 0.024 zeros= 0% [ ▂████▃▁ ] [ ▁█▃ ] dim 0188 μ= +0.035 σ= 0.019 zeros= 0% [ ▂███▃ ] [ ▂▇██▃ ] dim 0189 μ= +0.016 σ= 0.041 zeros= 0% [ ▁▂▆██████▄▁ ] [ ▂▅█▄ ] dim 0190 μ= -0.010 σ= 0.036 zeros= 0% [ ▁▂▅█████▃▁ ] [ ▆█▆▁ ] dim 0191 μ= -0.005 σ= 0.036 zeros= 0% [ ▁▁▅█████▅▂▁ ] [ ▃█▅ ] dim 0192 μ= -0.022 σ= 0.028 zeros= 0% [ ▂▆███▇▃▁ ] [ ▆█▅▁ ] dim 0193 μ= -0.000 σ= 0.032 zeros= 0% [ ▁▂▆████▄▂▁ ] [ ▆█▂ ] dim 0194 μ= -0.011 σ= 0.030 zeros= 0% [ ▁▃████▅▂ ] [ ██▃ ] dim 0195 μ= +0.027 σ= 0.026 zeros= 0% [ ▃████▄▁ ] [ ▆█▁ ] dim 0196 μ= +0.026 σ= 0.024 zeros= 0% [ ▂████▃▁ ] [ ▇█ ] dim 0197 μ= -0.013 σ= 0.016 zeros= 0% [ ▃██▅ ] [ ▁██ ] dim 0198 μ= +0.003 σ= 0.024 zeros= 0% [ ▁▂████▃ ] [ ▃█▇▁ ] dim 0199 μ= +0.019 σ= 0.031 zeros= 0% [ ▂▆████▄▁ ] [ ▂▇█▄ ] dim 0200 μ= +0.004 σ= 0.030 zeros= 0% [ ▂▅████▄▁ ] [ ▂█ ] dim 0201 μ= -0.009 σ= 0.016 zeros= 0% [ ▂██▆▁ ] [ ▁█▇ ] dim 0202 μ= +0.001 σ= 0.022 zeros= 0% [ ▃███▆▂ ] [ ▁▇█▅ ] dim 0203 μ= +0.028 σ= 0.028 zeros= 0% [ ▁▃████▆▂ ] [ ▅█▇▂ ] dim 0204 μ= -0.001 σ= 0.031 zeros= 0% [ ▁▃▆████▄▁ ] [ ▅█▄ ] dim 0205 μ= +0.013 σ= 0.024 zeros= 0% [ ▁▅███▅▁ ] [ ██▁ ] dim 0206 μ= +0.005 σ= 0.024 zeros= 0% [ ▃████▃▁ ] [ ▁▇█▇ ] dim 0207 μ= +0.011 σ= 0.033 zeros= 0% [ ▂▄█████▃▁ ] [ ▄█ ] dim 0208 μ= -0.028 σ= 0.018 zeros= 0% [ ▃███▂ ] [ ▂█▆ ] dim 0209 μ= +0.018 σ= 0.023 zeros= 0% [ ▁▃███▆▁ ] [ ▂█ ] dim 0210 μ= -0.009 σ= 0.014 zeros= 0% [ ▁██▇▁ ] [ ▃██▂ ] dim 0211 μ= +0.002 σ= 0.031 zeros= 0% [ ▂▆████▅▁ ] [ ▅█▅▂ ] dim 0212 μ= +0.017 σ= 0.033 zeros= 0% [ ▁▃▇████▄▂ ] [ ▄█▆ ] dim 0213 μ= -0.003 σ= 0.026 zeros= 0% [ ▁▅███▇▂ ] [ ▃█▆▁ ] dim 0214 μ= -0.002 σ= 0.031 zeros= 0% [ ▁▂▇████▄▁ ] [ ▄█▆ ] dim 0215 μ= -0.001 σ= 0.027 zeros= 0% [ ▁▄███▇▃▁ ] [ ██▆ ] dim 0216 μ= -0.007 σ= 0.027 zeros= 0% [ ▂▇███▆▂ ] [ ▄█▇▂ ] dim 0217 μ= +0.001 σ= 0.032 zeros= 0% [ ▁▂▇████▅▂ ] [ █▄ ] dim 0218 μ= -0.001 σ= 0.016 zeros= 0% [ ▁▆██▃ ] [ ▂█▇▄ ] dim 0219 μ= +0.007 σ= 0.031 zeros= 0% [ ▂▅████▇▂▁ ] [ ▃▇█▃ ] dim 0220 μ= +0.023 σ= 0.030 zeros= 0% [ ▂▅████▅▁ ] [ ▆█▄ ] dim 0221 μ= -0.008 σ= 0.023 zeros= 0% [ ▁▇███▄▁ ] [ ▃█▅ ] dim 0222 μ= -0.001 σ= 0.026 zeros= 0% [ ▁▄████▃ ] [ ▇█▃ ] dim 0223 μ= +0.008 σ= 0.024 zeros= 0% [ ▂▇███▄▁ ] [ ▅█▇▁ ] dim 0224 μ= +0.017 σ= 0.031 zeros= 0% [ ▃▇████▄▂ ] [ ▆█▅ ] dim 0225 μ= -0.008 σ= 0.028 zeros= 0% [ ▁▂████▆▂ ] [ ▃█▇▁ ] dim 0226 μ= +0.001 σ= 0.027 zeros= 0% [ ▁▄████▃▁ ] [ ▃█▇▄ ] dim 0227 μ= -0.033 σ= 0.030 zeros= 0% [ ▂▅████▆▂ ] [ ▁▇█▇▄ ] dim 0228 μ= +0.038 σ= 0.038 zeros= 0% [ ▂▅█████▇▃▁ ] [ ▇█ ] dim 0229 μ= +0.004 σ= 0.023 zeros= 0% [ ▂████▃ ] [ ▆█ ] dim 0230 μ= +0.006 σ= 0.019 zeros= 0% [ ▁▆██▇▁ ] [ ▂█▇ ] dim 0231 μ= -0.017 σ= 0.024 zeros= 0% [ ▃███▇▃ ] [ ▅█▃ ] dim 0232 μ= +0.029 σ= 0.025 zeros= 0% [ ▂▆███▄▁ ] [ ▇█▅ ] dim 0233 μ= -0.028 σ= 0.026 zeros= 0% [ ▂████▅▂ ] [ ▄██▂ ] dim 0234 μ= +0.039 σ= 0.030 zeros= 0% [ ▁▂▆████▄▁ ] [ ▁█▇ ] dim 0235 μ= +0.001 σ= 0.021 zeros= 0% [ ▂███▆▁ ] [ ▄▆█▃ ] dim 0236 μ= +0.020 σ= 0.041 zeros= 0% [ ▁▂▄▇█████▃▁▁ ] [ ▆█▃ ] dim 0237 μ= -0.009 σ= 0.023 zeros= 0% [ ▁▅███▄▁ ] [ ▅█▄ ] dim 0238 μ= -0.010 σ= 0.029 zeros= 0% [ ▁▃████▇▂ ] [ ▃█▇▁ ] dim 0239 μ= -0.018 σ= 0.027 zeros= 0% [ ▁▅████▄▁ ] [ ▂█▄ ] dim 0240 μ= +0.016 σ= 0.024 zeros= 0% [ ▁▄███▆▁ ] [ ▃██▆▁ ] dim 0241 μ= +0.027 σ= 0.040 zeros= 0% [ ▁▃██████▅▂ ] [ ▁█▇ ] dim 0242 μ= +0.002 σ= 0.025 zeros= 0% [ ▁▄████▃▁ ] [ ▃█▁ ] dim 0243 μ= -0.007 σ= 0.019 zeros= 0% [ ▂███▃ ] [ ▂▆█▄ ] dim 0244 μ= -0.008 σ= 0.034 zeros= 0% [ ▂▄█████▄▁ ] [ ▂█▇▂ ] dim 0245 μ= +0.003 σ= 0.033 zeros= 0% [ ▁▂▆████▅▂▁ ] [ ██ ] dim 0246 μ= -0.016 σ= 0.018 zeros= 0% [ ▁▆██▅▁ ] [ ▆██▃ ] dim 0247 μ= -0.037 σ= 0.035 zeros= 0% [ ▁▃▇████▆▂▁ ] [ ▂▆█▄ ] dim 0248 μ= +0.009 σ= 0.035 zeros= 0% [ ▁▂▅█████▄▁ ] [ ▄█▆▁ ] dim 0249 μ= -0.020 σ= 0.033 zeros= 0% [ ▁▃▇████▅▂ ] [ ▁█▆ ] dim 0250 μ= +0.002 σ= 0.023 zeros= 0% [ ▃████▂ ] [ ██ ] dim 0251 μ= +0.022 σ= 0.015 zeros= 0% [ ▄██▃ ] [ ▄█▃ ] dim 0252 μ= -0.005 σ= 0.022 zeros= 0% [ ▁▄███▄▁ ] [ ▁█▇ ] dim 0253 μ= -0.016 σ= 0.023 zeros= 0% [ ▂████▂ ] [ ▁██▂ ] dim 0254 μ= +0.022 σ= 0.027 zeros= 0% [ ▁▄████▄▁ ] [ ▃▇█▅ ] dim 0255 μ= -0.010 σ= 0.038 zeros= 0% [ ▁▃▆█████▅▂▁ ] [ ▁▆▇██▃ ] dim 0256 μ= -0.014 σ= 0.046 zeros= 0% [ ▁▁▃▅██████▆▃▁▁ ] [ ▃█▆▁ ] dim 0257 μ= +0.000 σ= 0.029 zeros= 0% [ ▂▆████▄▁ ] [ ▄▇█▂ ] dim 0258 μ= +0.002 σ= 0.028 zeros= 0% [ ▁▅████▄▁ ] [ ██ ] dim 0259 μ= +0.004 σ= 0.018 zeros= 0% [ ▁▆██▅▁ ] [ ▅█▇▂ ] dim 0260 μ= -0.002 σ= 0.034 zeros= 0% [ ▁▄█████▅▂ ] [ █▄ ] dim 0261 μ= -0.020 σ= 0.017 zeros= 0% [ ▁▆██▃ ] [ ▅█ ] dim 0262 μ= +0.027 σ= 0.018 zeros= 0% [ ▄██▇▁ ] [ ▄█ ] dim 0263 μ= -0.009 σ= 0.018 zeros= 0% [ ▃██▇▁ ] [ ▁▇█▃ ] dim 0264 μ= -0.014 σ= 0.029 zeros= 0% [ ▁▄████▄▂ ] [ ▆█▄ ] dim 0265 μ= -0.009 σ= 0.025 zeros= 0% [ ▂▇███▄▁ ] [ ██ ] dim 0266 μ= +0.003 σ= 0.021 zeros= 0% [ ▂███▇▂ ] [ ▃█▁ ] dim 0267 μ= +0.011 σ= 0.018 zeros= 0% [ ▃███▂ ] [ ▄██▄ ] dim 0268 μ= +0.024 σ= 0.038 zeros= 0% [ ▁▁▃▆████▇▄▂ ] [ ▂█▆▂ ] dim 0269 μ= +0.002 σ= 0.028 zeros= 0% [ ▁▅████▃▁ ] [ ▄█▇▃ ] dim 0270 μ= -0.000 σ= 0.032 zeros= 0% [ ▁▃▆████▄▂ ] [ ▆█▅ ] dim 0271 μ= -0.008 σ= 0.027 zeros= 0% [ ▂▇███▆▁ ] [ ▅█▁ ] dim 0272 μ= -0.009 σ= 0.020 zeros= 0% [ ▄███▃ ] [ ▂██▅▁ ] dim 0273 μ= +0.012 σ= 0.038 zeros= 0% [ ▁▂▅█████▆▂▁ ] [ ▂█▇▄ ] dim 0274 μ= +0.008 σ= 0.033 zeros= 0% [ ▁▅████▆▃▁ ] [ ▂█▇▂ ] dim 0275 μ= +0.022 σ= 0.026 zeros= 0% [ ▁▃████▃ ] [ ▄█▂ ] dim 0276 μ= -0.009 σ= 0.022 zeros= 0% [ ▁▄███▃ ] [ ▆█▂ ] dim 0277 μ= +0.007 σ= 0.027 zeros= 0% [ ▁▃████▄▁ ] [ ▄█▁ ] dim 0278 μ= -0.009 σ= 0.021 zeros= 0% [ ▁▅███▃ ] [ ▅█▆▃ ] dim 0279 μ= +0.018 σ= 0.034 zeros= 0% [ ▁▃▇████▅▂ ] [ ▆█▂ ] dim 0280 μ= +0.025 σ= 0.024 zeros= 0% [ ▂▇███▃ ] [ █▇▁ ] dim 0281 μ= +0.004 σ= 0.024 zeros= 0% [ ▁▃████▃ ] [ ▇█ ] dim 0282 μ= +0.005 σ= 0.018 zeros= 0% [ ▁▄██▆▁ ] [ ▆█▅ ] dim 0283 μ= -0.007 σ= 0.029 zeros= 0% [ ▁▃▆███▆▂▁ ] [ ▃██▃ ] dim 0284 μ= -0.051 σ= 0.033 zeros= 0% [ ▂▆████▆▂▁ ] [ ▁██▄ ] dim 0285 μ= +0.008 σ= 0.032 zeros= 0% [ ▁▄████▇▃▁ ] [ ▁▇█▅ ] dim 0286 μ= -0.008 σ= 0.034 zeros= 0% [ ▂▄█████▄▁ ] [ ▆█ ] dim 0287 μ= +0.006 σ= 0.021 zeros= 0% [ ▁▆██▇▂ ] [ ▆▇█▇▁ ] dim 0288 μ= -0.012 σ= 0.043 zeros= 0% [ ▁▂▄██████▅▂▁▁ ] [ ▅█▃ ] dim 0289 μ= +0.010 σ= 0.024 zeros= 0% [ ▂▇███▄▁ ] [ ▁▆█▅▁ ] dim 0290 μ= +0.012 σ= 0.035 zeros= 0% [ ▂▄█████▅▁▁ ] [ █▇ ] dim 0291 μ= -0.016 σ= 0.014 zeros= 0% [ ▄██▃ ] [ ▄██▃ ] dim 0292 μ= +0.003 σ= 0.034 zeros= 0% [ ▃▆████▆▃▁ ] [ █▇ ] dim 0293 μ= +0.020 σ= 0.019 zeros= 0% [ ▂▇██▅▁ ] [ ▄█▅ ] dim 0294 μ= -0.005 σ= 0.027 zeros= 0% [ ▂▆███▆▂ ] [ █▃ ] dim 0295 μ= -0.001 σ= 0.013 zeros= 0% [ ▄██▁ ] [ ▂██▁ ] dim 0296 μ= +0.002 σ= 0.025 zeros= 0% [ ▁▃████▂ ] [ ▁█▂ ] dim 0297 μ= -0.004 σ= 0.018 zeros= 0% [ ▂███▂ ] [ ▆█▂ ] dim 0298 μ= -0.011 σ= 0.024 zeros= 0% [ ▂▆███▃▁ ] [ ▄██▂ ] dim 0299 μ= +0.001 σ= 0.027 zeros= 0% [ ▁▅████▃▁ ] [ ▇█▇▁ ] dim 0300 μ= -0.022 σ= 0.031 zeros= 0% [ ▁▃▇████▅▁ ] [ ▆█▂ ] dim 0301 μ= +0.007 σ= 0.025 zeros= 0% [ ▁▂▇███▄▁ ] [ ▃██▅ ] dim 0302 μ= +0.006 σ= 0.036 zeros= 0% [ ▁▂▇█████▃▁ ] [ █▆ ] dim 0303 μ= -0.018 σ= 0.017 zeros= 0% [ ▆██▄ ] [ ▅██▂ ] dim 0304 μ= -0.001 σ= 0.031 zeros= 0% [ ▁▂▇████▄▁ ] [ ▃▇█▃ ] dim 0305 μ= +0.024 σ= 0.034 zeros= 0% [ ▁▂▆████▇▂▁ ] [ ▅█▅ ] dim 0306 μ= +0.012 σ= 0.035 zeros= 0% [ ▂▅█████▄▂ ] [ ▃█ ] dim 0307 μ= +0.009 σ= 0.016 zeros= 0% [ ▂██▇▁ ] [ ▃▆█▆▁ ] dim 0308 μ= +0.029 σ= 0.036 zeros= 0% [ ▁▂▅█████▄▁ ] [ ▃▇█▃ ] dim 0309 μ= +0.004 σ= 0.030 zeros= 0% [ ▁▁▅████▅▂ ] [ █ ] dim 0310 μ= -0.002 σ= 0.010 zeros= 0% [ ▂█▇ ] [ ▃█ ] dim 0311 μ= +0.006 σ= 0.013 zeros= 0% [ ▂██▄ ] [ ▅█▇▂ ] dim 0312 μ= +0.017 σ= 0.035 zeros= 0% [ ▁▃█████▅▂ ] [ █▇ ] dim 0313 μ= +0.004 σ= 0.020 zeros= 0% [ ▁▆██▆▁ ] [ ▂▅█▆▆ ] dim 0314 μ= +0.002 σ= 0.045 zeros= 0% [ ▁▁▂▆██████▅▂▁▁ ] [ ▁█▇ ] dim 0315 μ= -0.000 σ= 0.022 zeros= 0% [ ▃███▆▁ ] [ ▅█▃ ] dim 0316 μ= -0.027 σ= 0.025 zeros= 0% [ ▁▆███▅▁ ] [ ▂█▇▂ ] dim 0317 μ= -0.015 σ= 0.029 zeros= 0% [ ▁▄████▅▁ ] [ ▃█ ] dim 0318 μ= -0.010 σ= 0.015 zeros= 0% [ ▂██▆▁ ] [ ▁▆█▄ ] dim 0319 μ= +0.009 σ= 0.031 zeros= 0% [ ▁▄████▇▂▁ ] [ ▁▇█▁ ] dim 0320 μ= -0.014 σ= 0.025 zeros= 0% [ ▁▂████▃▁ ] [ ▂█ ] dim 0321 μ= -0.026 σ= 0.016 zeros= 0% [ ▁███▁ ] [ ▂▇█▆▁ ] dim 0322 μ= -0.008 σ= 0.037 zeros= 0% [ ▁▂▅█████▄▂ ] [ ▄█▆ ] dim 0323 μ= +0.016 σ= 0.034 zeros= 0% [ ▁▄█████▅▁ ] [ ▁█▃ ] dim 0324 μ= -0.024 σ= 0.019 zeros= 0% [ ▂███▂ ] [ ▂▇█▅ ] dim 0325 μ= +0.010 σ= 0.034 zeros= 0% [ ▂▅█████▃▁ ] [ ▄█▄ ] dim 0326 μ= -0.005 σ= 0.023 zeros= 0% [ ▁▄███▅▁ ] [ ▁█▂ ] dim 0327 μ= -0.024 σ= 0.018 zeros= 0% [ ▂███▃ ] [ ██ ] dim 0328 μ= +0.003 σ= 0.010 zeros= 0% [ ▁██▁ ] [ ▃██▃ ] dim 0329 μ= +0.003 σ= 0.030 zeros= 0% [ ▂▅████▆▂ ] [ ▂▅█▇▃ ] dim 0330 μ= +0.017 σ= 0.041 zeros= 0% [ ▁▃▅█████▇▄▁▁ ] [ ▁▅▇█▃ ] dim 0331 μ= -0.001 σ= 0.038 zeros= 0% [ ▁▂▅█████▇▃▁ ] [ ██ ] dim 0332 μ= +0.022 σ= 0.020 zeros= 0% [ ▁▇██▇▁ ] [ ▅█▆ ] dim 0333 μ= -0.003 σ= 0.028 zeros= 0% [ ▂▅███▇▂▁ ] [ █▃ ] dim 0334 μ= +0.018 σ= 0.015 zeros= 0% [ ▅██▂ ] [ █▇ ] dim 0335 μ= +0.004 σ= 0.024 zeros= 0% [ ▂████▃ ] [ ▅█▇▂ ] dim 0336 μ= +0.000 σ= 0.033 zeros= 0% [ ▁▃▇████▆▂ ] [ ▁▆█▂ ] dim 0337 μ= -0.014 σ= 0.026 zeros= 0% [ ▁▃████▄▁ ] [ ▆█▄ ] dim 0338 μ= +0.010 σ= 0.028 zeros= 0% [ ▁▃████▆▁ ] [ ▃██▄ ] dim 0339 μ= +0.005 σ= 0.029 zeros= 0% [ ▂▄████▅▂ ] [ ▄██▂ ] dim 0340 μ= -0.000 σ= 0.032 zeros= 0% [ ▁▃▆████▄▁ ] [ ▂█▆ ] dim 0341 μ= +0.017 σ= 0.022 zeros= 0% [ ▁▃███▅▁ ] [ ▃█▇▁ ] dim 0342 μ= -0.018 σ= 0.026 zeros= 0% [ ▁▄████▃▁ ] [ █▄ ] dim 0343 μ= +0.000 σ= 0.014 zeros= 0% [ ▅██▂ ] [ ▂█▃ ] dim 0344 μ= +0.014 σ= 0.024 zeros= 0% [ ▁▄███▅▁ ] [ ▆█▅ ] dim 0345 μ= +0.014 σ= 0.026 zeros= 0% [ ▁▅███▆▂ ] [ █▂ ] dim 0346 μ= -0.003 σ= 0.015 zeros= 0% [ ▁▇██▂ ] [ ▄█▄ ] dim 0347 μ= -0.025 σ= 0.032 zeros= 0% [ ▁▃█████▃▁ ] [ ▂██▅ ] dim 0348 μ= -0.009 σ= 0.034 zeros= 0% [ ▂▅█████▃▁ ] [ ▇█▅ ] dim 0349 μ= -0.027 σ= 0.030 zeros= 0% [ ▁▃████▇▃▁ ] [ █▂ ] dim 0350 μ= +0.015 σ= 0.018 zeros= 0% [ ▂███▂ ] [ ▄█▇▁ ] dim 0351 μ= +0.019 σ= 0.028 zeros= 0% [ ▁▅████▃▁ ] [ ▁██▄ ] dim 0352 μ= +0.006 σ= 0.031 zeros= 0% [ ▂▅████▅▂▁ ] [ ▁█▇▁ ] dim 0353 μ= -0.016 σ= 0.026 zeros= 0% [ ▁▃████▃▁ ] [ ▄█▆▁ ] dim 0354 μ= +0.013 σ= 0.035 zeros= 0% [ ▂▄█████▄▁ ] [ ▆█▁ ] dim 0355 μ= -0.011 σ= 0.021 zeros= 0% [ ▁▅███▂ ] [ ▁▅█▆ ] dim 0356 μ= +0.032 σ= 0.033 zeros= 0% [ ▁▃█████▄▁ ] [ ▅█▆ ] dim 0357 μ= +0.018 σ= 0.026 zeros= 0% [ ▁▄████▂ ] [ █▂ ] dim 0358 μ= -0.002 σ= 0.013 zeros= 0% [ ▅██▁ ] [ ▇█▃ ] dim 0359 μ= -0.011 σ= 0.026 zeros= 0% [ ▂████▄▁ ] [ ▇█▄ ] dim 0360 μ= +0.011 σ= 0.028 zeros= 0% [ ▁▂▇███▇▂ ] [ ▃██▄ ] dim 0361 μ= -0.014 σ= 0.036 zeros= 0% [ ▁▃▆████▇▃▁ ] [ ▁█ ] dim 0362 μ= -0.026 σ= 0.017 zeros= 0% [ ▂███▂ ] [ ▃█▇▂ ] dim 0363 μ= +0.020 σ= 0.031 zeros= 0% [ ▁▂▆████▅▁ ] [ ▆█▅ ] dim 0364 μ= +0.011 σ= 0.029 zeros= 0% [ ▁▃▇███▆▂▁ ] [ ▂██▇ ] dim 0365 μ= +0.031 σ= 0.032 zeros= 0% [ ▁▄█████▄▁ ] [ ▂█▅ ] dim 0366 μ= -0.022 σ= 0.022 zeros= 0% [ ▃███▅▁ ] [ ██ ] dim 0367 μ= +0.004 σ= 0.014 zeros= 0% [ ▃██▃ ] [ ▅█▃ ] dim 0368 μ= -0.008 σ= 0.022 zeros= 0% [ ▁▅███▃▁ ] [ ▂█▃ ] dim 0369 μ= +0.032 σ= 0.020 zeros= 0% [ ▁▃███▃ ] [ ▁█▄ ] dim 0370 μ= -0.001 σ= 0.021 zeros= 0% [ ▂███▅▁ ] [ ▃▇█▅ ] dim 0371 μ= +0.007 σ= 0.038 zeros= 0% [ ▁▃▇█████▄▂ ] [ ▅█▇▅ ] dim 0372 μ= +0.022 σ= 0.036 zeros= 0% [ ▁▃▇████▇▃▁ ] [ ▃█▇▂ ] dim 0373 μ= +0.001 σ= 0.033 zeros= 0% [ ▁▂▆████▅▂▁ ] [ ▂█▅ ] dim 0374 μ= -0.020 σ= 0.021 zeros= 0% [ ▂███▅▁ ] [ ▆█▄ ] dim 0375 μ= +0.012 σ= 0.029 zeros= 0% [ ▁▂▇███▇▂ ] [ ▅█ ] dim 0376 μ= -0.011 σ= 0.018 zeros= 0% [ ▄██▇▁ ] [ ▄█▅ ] dim 0377 μ= -0.005 σ= 0.029 zeros= 0% [ ▁▂▆███▆▃▁ ] [ ▃█▆ ] dim 0378 μ= -0.001 σ= 0.027 zeros= 0% [ ▁▅████▃▁ ] [ ▂▆█▁ ] dim 0379 μ= +0.004 σ= 0.026 zeros= 0% [ ▁▃████▃▁ ] [ ▃█▅ ] dim 0380 μ= -0.003 σ= 0.024 zeros= 0% [ ▁▄███▅▁ ] [ █▅ ] dim 0381 μ= +0.002 σ= 0.017 zeros= 0% [ ▆██▄▁ ] [ ▇█▄ ] dim 0382 μ= -0.009 σ= 0.031 zeros= 0% [ ▁▄████▇▂▁ ] [ ▄██▅ ] dim 0383 μ= +0.024 σ= 0.034 zeros= 0% [ ▁▂▆████▇▂▁ ] [ ▅█▃ ] dim 0384 μ= +0.010 σ= 0.026 zeros= 0% [ ▂▇███▅▁ ] [ ▂█▇▁ ] dim 0385 μ= +0.020 σ= 0.026 zeros= 0% [ ▁▄████▃▁ ] [ ▅█▃ ] dim 0386 μ= +0.010 σ= 0.024 zeros= 0% [ ▁▆███▄▁ ] [ █ ] dim 0387 μ= -0.010 σ= 0.011 zeros= 0% [ ██▃ ] [ ▄▇█▇▂ ] dim 0388 μ= +0.011 σ= 0.043 zeros= 0% [ ▂▃██████▆▃▁ ] [ ▆█▃ ] dim 0389 μ= +0.008 σ= 0.028 zeros= 0% [ ▁▃████▅▁ ] [ ▇█▃ ] dim 0390 μ= +0.026 σ= 0.026 zeros= 0% [ ▃████▄▁ ] [ ▃█▆▂ ] dim 0391 μ= +0.001 σ= 0.030 zeros= 0% [ ▂▅████▄▁ ] [ ▃█▇▁ ] dim 0392 μ= +0.020 σ= 0.026 zeros= 0% [ ▁▄████▃▁ ] [ ▄▇█▅ ] dim 0393 μ= -0.013 σ= 0.040 zeros= 0% [ ▁▂▄██████▅▂▁ ] [ █▅ ] dim 0394 μ= +0.018 σ= 0.018 zeros= 0% [ ▁███▃ ] [ ▁▅█▆▂ ] dim 0395 μ= -0.002 σ= 0.034 zeros= 0% [ ▁▃█████▆▂ ] [ ▆█▁ ] dim 0396 μ= -0.014 σ= 0.025 zeros= 0% [ ▁▂████▃▁ ] [ █▇ ] dim 0397 μ= +0.002 σ= 0.018 zeros= 0% [ ▁▆██▅▁ ] [ ▁▄██▄ ] dim 0398 μ= +0.003 σ= 0.039 zeros= 0% [ ▂▄█████▇▄▂ ] [ ▆█ ] dim 0399 μ= -0.013 σ= 0.016 zeros= 0% [ ▄██▆▁ ] [ ▁▅█▇▃ ] dim 0400 μ= -0.003 σ= 0.037 zeros= 0% [ ▁▂▅█████▆▂ ] [ ▄█▇▂ ] dim 0401 μ= -0.016 σ= 0.030 zeros= 0% [ ▁▆████▅▁ ] [ ▁██ ] dim 0402 μ= +0.002 σ= 0.025 zeros= 0% [ ▁▃████▃ ] [ ▆█▇ ] dim 0403 μ= -0.004 σ= 0.026 zeros= 0% [ ▁▆███▇▂ ] [ ▁██ ] dim 0404 μ= +0.003 σ= 0.024 zeros= 0% [ ▁▃████▃ ] [ ▄█▄▁ ] dim 0405 μ= +0.017 σ= 0.031 zeros= 0% [ ▂▆████▄▁ ] [ █▃ ] dim 0406 μ= +0.016 σ= 0.018 zeros= 0% [ ▂███▂ ] [ ▂█ ] dim 0407 μ= +0.012 σ= 0.018 zeros= 0% [ ▂███▂ ] [ ▁▇█ ] dim 0408 μ= +0.003 σ= 0.025 zeros= 0% [ ▃████▃ ] [ ▆█▂ ] dim 0409 μ= -0.011 σ= 0.026 zeros= 0% [ ▂▇███▄▁ ] [ ▃█▆ ] dim 0410 μ= -0.018 σ= 0.026 zeros= 0% [ ▁▄███▇▃▁ ] [ ▂█▆▁ ] dim 0411 μ= +0.001 σ= 0.029 zeros= 0% [ ▁▅████▄▁ ] [ ▅██▃ ] dim 0412 μ= +0.001 σ= 0.039 zeros= 0% [ ▁▂▄▇█████▃▁ ] [ ▄█▃ ] dim 0413 μ= -0.010 σ= 0.025 zeros= 0% [ ▂▆███▄▁ ] [ ▆█▂ ] dim 0414 μ= -0.009 σ= 0.025 zeros= 0% [ ▂▆███▅▁ ] [ ▃█▂ ] dim 0415 μ= -0.008 σ= 0.022 zeros= 0% [ ▁▄███▃ ] [ ▂▅█▆▃ ] dim 0416 μ= -0.004 σ= 0.039 zeros= 0% [ ▂▆█████▆▂▁ ] [ ▁▇█▄ ] dim 0417 μ= +0.009 σ= 0.028 zeros= 0% [ ▁▃████▆▂ ] [ █▇ ] dim 0418 μ= -0.015 σ= 0.021 zeros= 0% [ ▁▇██▇▂ ] [ █ ] dim 0419 μ= -0.005 σ= 0.014 zeros= 0% [ ▇██▁ ] [ ▃▇█▅ ] dim 0420 μ= +0.003 σ= 0.034 zeros= 0% [ ▁▃▇████▆▂▁ ] [ ▁█▇▁ ] dim 0421 μ= -0.018 σ= 0.026 zeros= 0% [ ▁▄████▃▁ ] [ ▆█▄ ] dim 0422 μ= +0.012 σ= 0.028 zeros= 0% [ ▁▂▆███▇▂ ] [ ▂█▃ ] dim 0423 μ= +0.015 σ= 0.023 zeros= 0% [ ▁▄███▄▁ ] [ ▁█▅ ] dim 0424 μ= +0.016 σ= 0.021 zeros= 0% [ ▃███▅▁ ] [ ▅██▄ ] dim 0425 μ= -0.011 σ= 0.039 zeros= 0% [ ▁▃▇█████▅▂▁ ] [ █▃ ] dim 0426 μ= +0.018 σ= 0.012 zeros= 0% [ ▄██▁ ] [ ▅█▇▄ ] dim 0427 μ= +0.003 σ= 0.036 zeros= 0% [ ▁▃▆████▆▃▁ ] [ ▅▆█▃ ] dim 0428 μ= +0.022 σ= 0.036 zeros= 0% [ ▁▃▇████▆▃▁ ] [ ▂█ ] dim 0429 μ= +0.011 σ= 0.016 zeros= 0% [ ▂███▁ ] [ ▅█▁ ] dim 0430 μ= +0.008 σ= 0.025 zeros= 0% [ ▂▆███▄▁ ] [ ▃█▃ ] dim 0431 μ= +0.014 σ= 0.028 zeros= 0% [ ▂▅███▇▂ ] [ ▅█▂ ] dim 0432 μ= +0.011 σ= 0.022 zeros= 0% [ ▁▄███▃▁ ] [ ▂▇█▄ ] dim 0433 μ= -0.012 σ= 0.031 zeros= 0% [ ▁▄████▆▂▁ ] [ ▂█▇ ] dim 0434 μ= +0.002 σ= 0.026 zeros= 0% [ ▁▃████▃▁ ] [ ▆█ ] dim 0435 μ= +0.006 σ= 0.017 zeros= 0% [ ▄██▆▁ ] [ ▁▇█▆▁ ] dim 0436 μ= -0.008 σ= 0.035 zeros= 0% [ ▂▆█████▄▁ ] [ ▁▆█▆ ] dim 0437 μ= +0.010 σ= 0.031 zeros= 0% [ ▁▄████▇▃ ] [ ▃█▅ ] dim 0438 μ= -0.001 σ= 0.024 zeros= 0% [ ▁▃███▇▂ ] [ ▅█▇▃ ] dim 0439 μ= -0.017 σ= 0.030 zeros= 0% [ ▂▅████▅▁ ] [ ▂▇█▂ ] dim 0440 μ= +0.004 σ= 0.028 zeros= 0% [ ▁▄████▄▁ ] [ ▄█▅▂ ] dim 0441 μ= +0.019 σ= 0.035 zeros= 0% [ ▁▁▃▇████▆▂▁ ] [ ▃█▁ ] dim 0442 μ= +0.012 σ= 0.019 zeros= 0% [ ▃███▂ ] [ ▄█ ] dim 0443 μ= -0.010 σ= 0.017 zeros= 0% [ ▃██▇▁ ] [ ▂▅█▆▃ ] dim 0444 μ= +0.017 σ= 0.044 zeros= 0% [ ▁▃▇█████▇▄▂▁ ] [ ▇█ ] dim 0445 μ= +0.006 σ= 0.021 zeros= 0% [ ▁▆███▂ ] [ ▄█▇▁ ] dim 0446 μ= +0.018 σ= 0.029 zeros= 0% [ ▂▆████▃▁ ] [ ▂██▁ ] dim 0447 μ= +0.021 σ= 0.024 zeros= 0% [ ▃████▂ ] [ ▃██▄ ] dim 0448 μ= -0.015 σ= 0.032 zeros= 0% [ ▂▆████▆▂ ] [ ▃█▂ ] dim 0449 μ= +0.013 σ= 0.021 zeros= 0% [ ▁▃███▃ ] [ ██ ] dim 0450 μ= -0.018 σ= 0.020 zeros= 0% [ ▂███▆▁ ] [ ▅█▁ ] dim 0451 μ= +0.008 σ= 0.022 zeros= 0% [ ▁▆███▃ ] [ ▃██▄ ] dim 0452 μ= -0.014 σ= 0.030 zeros= 0% [ ▁▅████▆▂ ] [ ▄█▁ ] dim 0453 μ= -0.007 σ= 0.019 zeros= 0% [ ▂███▂ ] [ █▄ ] dim 0454 μ= +0.000 σ= 0.014 zeros= 0% [ ▄██▂ ] [ ▄▅█▇▄ ] dim 0455 μ= +0.011 σ= 0.043 zeros= 0% [ ▁▂▅▆█████▇▃▁ ] [ ▃█▆▃ ] dim 0456 μ= -0.017 σ= 0.033 zeros= 0% [ ▁▂▇████▅▂▁ ] [ ▅█▄ ] dim 0457 μ= +0.012 σ= 0.028 zeros= 0% [ ▁▂▆███▆▂▁ ] [ ▄█▅ ] dim 0458 μ= +0.015 σ= 0.031 zeros= 0% [ ▁▃▇████▃▁ ] [ ▆█▃ ] dim 0459 μ= -0.010 σ= 0.023 zeros= 0% [ ▁▆███▄▁ ] [ ▄█▃ ] dim 0460 μ= -0.008 σ= 0.025 zeros= 0% [ ▂▆███▄▁ ] [ █ ] dim 0461 μ= -0.006 σ= 0.012 zeros= 0% [ ▆█▆ ] [ ▇█▁ ] dim 0462 μ= -0.014 σ= 0.023 zeros= 0% [ ▂▇███▂ ] [ ▃█▇▃ ] dim 0463 μ= -0.016 σ= 0.035 zeros= 0% [ ▁▂▇████▆▃▁ ] [ ▂▆█▇▄▁ ] dim 0464 μ= -0.017 σ= 0.042 zeros= 0% [ ▁▂▆██████▅▂▁ ] [ ▅█▃ ] dim 0465 μ= -0.008 σ= 0.026 zeros= 0% [ ▂▆███▅▁ ] [ ▂▆█▇▃ ] dim 0466 μ= -0.006 σ= 0.039 zeros= 0% [ ▁▁▃▆█████▅▃▁ ] [ ██ ] dim 0467 μ= +0.003 σ= 0.021 zeros= 0% [ ▂████▂ ] [ ▇█ ] dim 0468 μ= +0.005 σ= 0.021 zeros= 0% [ ▁▇███▂ ] [ ▃█▆ ] dim 0469 μ= -0.003 σ= 0.028 zeros= 0% [ ▂▆████▂▁ ] [ █▆ ] dim 0470 μ= -0.017 σ= 0.017 zeros= 0% [ ▆██▄ ] [ █▅ ] dim 0471 μ= +0.040 σ= 0.016 zeros= 0% [ ▅██▃ ] [ ▅█▇ ] dim 0472 μ= -0.005 σ= 0.028 zeros= 0% [ ▂▇███▇▃ ] [ █▇ ] dim 0473 μ= -0.016 σ= 0.016 zeros= 0% [ ▅██▃ ] [ ▄█▃ ] dim 0474 μ= +0.013 σ= 0.022 zeros= 0% [ ▁▄███▅▁ ] [ ▆█▇▄ ] dim 0475 μ= +0.000 σ= 0.040 zeros= 0% [ ▁▂▄█████▇▃▁ ] [ ▆█▁ ] dim 0476 μ= -0.010 σ= 0.021 zeros= 0% [ ▁▅███▂ ] [ ▁█▃ ] dim 0477 μ= -0.005 σ= 0.019 zeros= 0% [ ▂███▃ ] [ ▃█▄ ] dim 0478 μ= -0.023 σ= 0.024 zeros= 0% [ ▁▅███▅▁ ] [ ▃██▃ ] dim 0479 μ= +0.005 σ= 0.032 zeros= 0% [ ▂▅████▇▂ ] [ ▇█▄ ] dim 0480 μ= -0.007 σ= 0.029 zeros= 0% [ ▁▂▇████▃▁ ] [ █▇ ] dim 0481 μ= +0.021 σ= 0.019 zeros= 0% [ ▁▇██▅▁ ] [ ▆█▄ ] dim 0482 μ= +0.009 σ= 0.030 zeros= 0% [ ▁▄████▆▂ ] [ ▅█▄ ] dim 0483 μ= -0.010 σ= 0.031 zeros= 0% [ ▁▄████▆▂ ] [ ▃▅█▃ ] dim 0484 μ= +0.004 σ= 0.036 zeros= 0% [ ▁▃▇████▇▃▁ ] [ █▂ ] dim 0485 μ= +0.016 σ= 0.014 zeros= 0% [ ▆██▁ ] [ ▂█▇▃ ] dim 0486 μ= +0.024 σ= 0.029 zeros= 0% [ ▁▄████▅▁ ] [ ▃█▆ ] dim 0487 μ= +0.017 σ= 0.024 zeros= 0% [ ▁▄███▇▁ ] [ ▂▄█▇▅▁ ] dim 0488 μ= +0.026 σ= 0.045 zeros= 0% [ ▁▂▅██████▅▄▂ ] [ ▄█▆ ] dim 0489 μ= -0.024 σ= 0.024 zeros= 0% [ ▁▆███▅▁ ] [ ▁▆█▄ ] dim 0490 μ= -0.010 σ= 0.031 zeros= 0% [ ▁▄████▆▃▁ ] [ █▄ ] dim 0491 μ= +0.019 σ= 0.016 zeros= 0% [ ▁▆██▃ ] [ ▆█▄ ] dim 0492 μ= -0.010 σ= 0.029 zeros= 0% [ ▁▄████▆▂ ] [ ▁█▂ ] dim 0493 μ= +0.014 σ= 0.019 zeros= 0% [ ▂███▂ ] [ ▇█ ] dim 0494 μ= +0.022 σ= 0.020 zeros= 0% [ ▁▇██▆▁ ] [ ▂█▇▂ ] dim 0495 μ= -0.015 σ= 0.028 zeros= 0% [ ▁▃████▄▁ ] [ ▅█ ] dim 0496 μ= +0.025 σ= 0.015 zeros= 0% [ ▃██▅ ] [ ██ ] dim 0497 μ= -0.015 σ= 0.019 zeros= 0% [ ▁▅██▆▁ ] [ ▁▅█▇▃ ] dim 0498 μ= +0.016 σ= 0.039 zeros= 0% [ ▁▂▅█████▆▃▁ ] [ ▁▅█▂ ] dim 0499 μ= -0.012 σ= 0.029 zeros= 0% [ ▁▃████▅▁ ] [ ▃▇█▄ ] dim 0500 μ= +0.022 σ= 0.040 zeros= 0% [ ▁▂▄▇█████▃▂ ] [ █ ] dim 0501 μ= -0.006 σ= 0.013 zeros= 0% [ ▁▇█▇▁ ] [ █▇ ] dim 0502 μ= +0.020 σ= 0.022 zeros= 0% [ ▂███▇▁ ] [ ▃█▇▂ ] dim 0503 μ= +0.003 σ= 0.031 zeros= 0% [ ▁▂▅████▅▁ ] [ █ ] dim 0504 μ= -0.003 σ= 0.012 zeros= 0% [ ▄█▇ ] [ ▄█▄ ] dim 0505 μ= -0.003 σ= 0.024 zeros= 0% [ ▁▄███▆▁ ] [ ▆█▂ ] dim 0506 μ= +0.008 σ= 0.027 zeros= 0% [ ▂████▄▁ ] [ ▇█▂ ] dim 0507 μ= -0.010 σ= 0.023 zeros= 0% [ ▁▇███▄▁ ] [ ▁▆██▁ ] dim 0508 μ= -0.005 σ= 0.034 zeros= 0% [ ▁▄█████▅▁ ] [ ▃██ ] dim 0509 μ= -0.000 σ= 0.025 zeros= 0% [ ▁▄████▂ ] [ ▆█▅ ] dim 0510 μ= -0.007 σ= 0.028 zeros= 0% [ ▁▂▇███▆▂▁ ] [ ▃█▇▅ ] dim 0511 μ= +0.008 σ= 0.036 zeros= 0% [ ▁▂▆████▇▄▂▁ ] [ ▁▇█▂ ] dim 0512 μ= -0.015 σ= 0.027 zeros= 0% [ ▁▄████▃▁ ] [ ▅█ ] dim 0513 μ= +0.024 σ= 0.012 zeros= 0% [ ▂██▂ ] [ ▂▆█▆▁ ] dim 0514 μ= +0.012 σ= 0.034 zeros= 0% [ ▂▅█████▄▁ ] [ ▆█▃ ] dim 0515 μ= -0.029 σ= 0.025 zeros= 0% [ ▂▇███▄▁ ] [ ▅█ ] dim 0516 μ= +0.026 σ= 0.020 zeros= 0% [ ▁▆███▂ ] [ ▁▆█▆▂ ] dim 0517 μ= -0.006 σ= 0.038 zeros= 0% [ ▁▂▅█████▅▂▁ ] [ ██▂ ] dim 0518 μ= +0.025 σ= 0.023 zeros= 0% [ ▂████▃ ] [ ▄█▇ ] dim 0519 μ= -0.039 σ= 0.027 zeros= 0% [ ▁▅████▃▁ ] [ ▇█▅ ] dim 0520 μ= +0.012 σ= 0.031 zeros= 0% [ ▁▃████▇▃▁ ] [ ▃█▇▃ ] dim 0521 μ= +0.022 σ= 0.033 zeros= 0% [ ▁▃▆████▆▂▁ ] [ ▆█▅ ] dim 0522 μ= +0.013 σ= 0.025 zeros= 0% [ ▂▆███▅▂ ] [ █▄ ] dim 0523 μ= +0.019 σ= 0.016 zeros= 0% [ ▁▆██▂ ] [ ▄█▄ ] dim 0524 μ= +0.013 σ= 0.028 zeros= 0% [ ▂▆███▆▂ ] [ █ ] dim 0525 μ= -0.006 σ= 0.011 zeros= 0% [ ▆█▅ ] [ ▃██▁ ] dim 0526 μ= -0.017 σ= 0.025 zeros= 0% [ ▁▃████▃ ] [ ▄█▃ ] dim 0527 μ= +0.013 σ= 0.026 zeros= 0% [ ▁▆███▆▁ ] [ ▄██▁ ] dim 0528 μ= -0.039 σ= 0.028 zeros= 0% [ ▁▆████▃▁ ] [ ▅█▆ ] dim 0529 μ= +0.012 σ= 0.030 zeros= 0% [ ▁▃████▇▃ ] [ ▂██▂ ] dim 0530 μ= -0.014 σ= 0.026 zeros= 0% [ ▁▃████▄▁ ] [ ██ ] dim 0531 μ= -0.015 σ= 0.024 zeros= 0% [ ▃████▃▁ ] [ ▆█▆▁ ] dim 0532 μ= -0.003 σ= 0.033 zeros= 0% [ ▁▃█████▅▁ ] [ ▁█▅ ] dim 0533 μ= -0.002 σ= 0.020 zeros= 0% [ ▂███▄▁ ] [ ▅█▇▂ ] dim 0534 μ= -0.001 σ= 0.033 zeros= 0% [ ▁▃▇████▅▁ ] [ ▅█▇▆▁ ] dim 0535 μ= -0.015 σ= 0.041 zeros= 0% [ ▁▂▅▇█████▄▂▁ ] [ ▁█▄ ] dim 0536 μ= +0.016 σ= 0.020 zeros= 0% [ ▂███▄▁ ] [ ▃▇█▄ ] dim 0537 μ= +0.005 σ= 0.032 zeros= 0% [ ▂▆████▆▂ ] [ ▆█▄ ] dim 0538 μ= +0.029 σ= 0.028 zeros= 0% [ ▄████▆▂ ] [ ▁▄██▅ ] dim 0539 μ= +0.003 σ= 0.037 zeros= 0% [ ▁▄█████▇▄▁ ] [ ▁▆█▅▁ ] dim 0540 μ= -0.006 σ= 0.036 zeros= 0% [ ▂▄█████▅▁▁ ] [ ▃██ ] dim 0541 μ= -0.002 σ= 0.027 zeros= 0% [ ▂▆████▃ ] [ ▅█▅▁ ] dim 0542 μ= -0.003 σ= 0.033 zeros= 0% [ ▁▃▇████▄▁ ] [ ▁▅█▇▂ ] dim 0543 μ= +0.016 σ= 0.037 zeros= 0% [ ▁▂▅█████▅▂▁ ] [ ▆█ ] dim 0544 μ= +0.006 σ= 0.022 zeros= 0% [ ▂▆███▂ ] [ █▅ ] dim 0545 μ= -0.019 σ= 0.016 zeros= 0% [ ▁▆██▃ ] [ ▄▅█▁ ] dim 0546 μ= -0.017 σ= 0.034 zeros= 0% [ ▁▃▅████▆▂ ] [ ▁▇█▃ ] dim 0547 μ= -0.012 σ= 0.026 zeros= 0% [ ▁▂████▄▁ ] [ █▇ ] dim 0548 μ= -0.034 σ= 0.024 zeros= 0% [ ▂████▃ ] [ ▅█▅ ] dim 0549 μ= +0.013 σ= 0.029 zeros= 0% [ ▁▃████▇▃ ] [ ▁▇██▃ ] dim 0550 μ= -0.006 σ= 0.040 zeros= 0% [ ▁▃▇█████▅▃▁ ] [ ▄█ ] dim 0551 μ= +0.008 σ= 0.016 zeros= 0% [ ▃██▆▁ ] [ ▄█▃ ] dim 0552 μ= -0.006 σ= 0.028 zeros= 0% [ ▂▇███▇▂ ] [ ▄█▅ ] dim 0553 μ= -0.005 σ= 0.027 zeros= 0% [ ▂▆███▇▂ ] [ █▄ ] dim 0554 μ= +0.018 σ= 0.018 zeros= 0% [ ▁███▄ ] [ ▅█▅ ] dim 0555 μ= +0.014 σ= 0.031 zeros= 0% [ ▁▃▆████▃▁ ] [ ▄██▃ ] dim 0556 μ= -0.015 σ= 0.033 zeros= 0% [ ▂▆████▇▂▁ ] [ ▂█▆ ] dim 0557 μ= -0.003 σ= 0.021 zeros= 0% [ ▃███▄▁ ] [ ▅█▃ ] dim 0558 μ= +0.009 σ= 0.025 zeros= 0% [ ▂▇███▄▁ ] [ ▄▇█▄▂ ] dim 0559 μ= -0.010 σ= 0.042 zeros= 0% [ ▁▄▇█████▆▃▁ ] [ ▁▃█▇▃ ] dim 0560 μ= -0.001 σ= 0.038 zeros= 0% [ ▂▅█████▆▃▁ ] [ ▁▆██▂ ] dim 0561 μ= -0.023 σ= 0.036 zeros= 0% [ ▂▄█████▅▂▁ ] [ ▁█▇ ] dim 0562 μ= +0.000 σ= 0.021 zeros= 0% [ ▂███▆▁ ] [ ▅█▅ ] dim 0563 μ= +0.031 σ= 0.026 zeros= 0% [ ▂▆███▅▂ ] [ ▅█ ] dim 0564 μ= +0.006 σ= 0.021 zeros= 0% [ ▁▆███▂ ] [ ▁█▅ ] dim 0565 μ= -0.021 σ= 0.022 zeros= 0% [ ▃███▅▁ ] [ ▁▇█▂ ] dim 0566 μ= +0.007 σ= 0.028 zeros= 0% [ ▁▄████▅▂ ] [ █▆ ] dim 0567 μ= +0.002 σ= 0.016 zeros= 0% [ ▅██▄ ] [ ▅█▆ ] dim 0568 μ= +0.015 σ= 0.025 zeros= 0% [ ▁▅███▇▂ ] [ ▄██▁ ] dim 0569 μ= -0.017 σ= 0.028 zeros= 0% [ ▁▅████▄▁ ] [ ▄█▅ ] dim 0570 μ= +0.014 σ= 0.026 zeros= 0% [ ▁▅███▆▂ ] [ ▂██▂ ] dim 0571 μ= +0.002 σ= 0.031 zeros= 0% [ ▁▂▆████▄▂ ] [ ▄█ ] dim 0572 μ= +0.007 σ= 0.015 zeros= 0% [ ▂██▅ ] [ ▄█▅ ] dim 0573 μ= -0.004 σ= 0.022 zeros= 0% [ ▁▃███▅▁ ] [ ▄█ ] dim 0574 μ= -0.011 σ= 0.015 zeros= 0% [ ▂██▆▁ ] [ ▂▅▇█▄▁ ] dim 0575 μ= +0.004 σ= 0.042 zeros= 0% [ ▁▂▄██████▄▃▁ ] [ ▅█▆ ] dim 0576 μ= +0.016 σ= 0.025 zeros= 0% [ ▁▄███▇▂ ] [ ▃█▇ ] dim 0577 μ= -0.001 σ= 0.026 zeros= 0% [ ▁▄████▃ ] [ ▁▇█▃ ] dim 0578 μ= -0.010 σ= 0.034 zeros= 0% [ ▂▄████▇▃▁ ] [ ▆█▃ ] dim 0579 μ= -0.009 σ= 0.026 zeros= 0% [ ▂▇███▅▁ ] [ ▄█▇ ] dim 0580 μ= -0.003 σ= 0.030 zeros= 0% [ ▁▂▇████▃▁ ] [ ▁█▆ ] dim 0581 μ= +0.001 σ= 0.024 zeros= 0% [ ▁▃███▇▂ ] [ ▇█ ] dim 0582 μ= +0.024 σ= 0.020 zeros= 0% [ ▁▆██▇▁ ] [ █ ] dim 0583 μ= -0.006 σ= 0.014 zeros= 0% [ ▁▇█▆▁ ] [ ▃█▆▂ ] dim 0584 μ= +0.003 σ= 0.031 zeros= 0% [ ▂▅████▅▁ ] [ ▁▆▇█▇▃ ] dim 0585 μ= -0.032 σ= 0.050 zeros= 0% [ ▁▂▃▆██████▇▃▂▁ ] -> OUTLIER_SPREAD: this_std=0.0498, mean_std=0.0266, +3.3sigma vs threshold=3.0sigma [ █▇ ] dim 0586 μ= +0.002 σ= 0.021 zeros= 0% [ ▂▇██▆▁ ] [ ▂█ ] dim 0587 μ= -0.007 σ= 0.015 zeros= 0% [ ▁███▁ ] [ ▂▇█▄ ] dim 0588 μ= -0.011 σ= 0.033 zeros= 0% [ ▂▅████▇▃▁ ] [ █▃ ] dim 0589 μ= -0.001 σ= 0.015 zeros= 0% [ ▁▅██▂ ] [ ▄██▄ ] dim 0590 μ= +0.007 σ= 0.034 zeros= 0% [ ▂▆████▇▃▁ ] [ █▄ ] dim 0591 μ= -0.020 σ= 0.018 zeros= 0% [ ▁███▄ ] [ ▂█▃ ] dim 0592 μ= -0.005 σ= 0.022 zeros= 0% [ ▁▄███▅▁ ] [ ▁▅▇█▁ ] dim 0593 μ= +0.017 σ= 0.034 zeros= 0% [ ▁▃█████▆▂ ] [ ▆██▃ ] dim 0594 μ= +0.000 σ= 0.035 zeros= 0% [ ▁▃▇████▆▃▁ ] [ ▆█▄ ] dim 0595 μ= +0.009 σ= 0.026 zeros= 0% [ ▂████▄▁ ] [ █▇ ] dim 0596 μ= +0.004 σ= 0.023 zeros= 0% [ ▂████▂ ] [ ▃█▅ ] dim 0597 μ= +0.015 σ= 0.028 zeros= 0% [ ▁▂▆███▇▃▁ ] [ ▂██▄ ] dim 0598 μ= +0.005 σ= 0.029 zeros= 0% [ ▁▄████▅▁ ] [ ▆█ ] dim 0599 μ= +0.024 σ= 0.014 zeros= 0% [ ▃██▃ ] [ ▃▇█▃ ] dim 0600 μ= -0.018 σ= 0.036 zeros= 0% [ ▁▃▇████▆▂▁ ] [ ▂█▃ ] dim 0601 μ= +0.013 σ= 0.021 zeros= 0% [ ▁▃███▃▁ ] [ ▆█ ] dim 0602 μ= -0.013 σ= 0.020 zeros= 0% [ ▁▆██▇▁ ] [ ▄█▇ ] dim 0603 μ= -0.022 σ= 0.026 zeros= 0% [ ▁▅███▇▂ ] [ ▂█▆▁ ] dim 0604 μ= +0.002 σ= 0.029 zeros= 0% [ ▁▅████▄▁ ] [ ▆█▇ ] dim 0605 μ= +0.015 σ= 0.030 zeros= 0% [ ▁▂█████▃▁ ] [ ▃█▁ ] dim 0606 μ= +0.030 σ= 0.019 zeros= 0% [ ▃███▂ ] [ ▅█▇▂ ] dim 0607 μ= +0.001 σ= 0.033 zeros= 0% [ ▁▂▆████▅▂ ] [ ▄█▆▁ ] dim 0608 μ= -0.002 σ= 0.038 zeros= 0% [ ▁▂▄█████▆▃▁ ] [ ▂▆█▄ ] dim 0609 μ= +0.007 σ= 0.031 zeros= 0% [ ▁▄████▆▂ ] [ ▁█▅ ] dim 0610 μ= +0.018 σ= 0.021 zeros= 0% [ ▂███▅▁ ] [ ▂█▇ ] dim 0611 μ= -0.001 σ= 0.024 zeros= 0% [ ▁▄███▇▂ ] [ ▃▅█▅▂ ] dim 0612 μ= +0.011 σ= 0.039 zeros= 0% [ ▁▃▆█████▅▂▁ ] [ █▄ ] dim 0613 μ= +0.020 σ= 0.013 zeros= 0% [ ▃██▁ ] [ ▅█▂ ] dim 0614 μ= +0.010 σ= 0.024 zeros= 0% [ ▂▅███▄▁ ] [ ▂█ ] dim 0615 μ= -0.008 σ= 0.017 zeros= 0% [ ▂██▇▁ ] [ ▃█▅ ] dim 0616 μ= -0.004 σ= 0.026 zeros= 0% [ ▁▅███▇▁ ] [ ▂▇█▃ ] dim 0617 μ= +0.006 σ= 0.031 zeros= 0% [ ▂▄████▅▂▁ ] [ ▂██▂ ] dim 0618 μ= +0.002 σ= 0.026 zeros= 0% [ ▁▄████▃ ] [ ▃█ ] dim 0619 μ= -0.010 σ= 0.017 zeros= 0% [ ▃██▇▁ ] [ ▄█▅ ] dim 0620 μ= -0.002 σ= 0.027 zeros= 0% [ ▁▅████▂▁ ] [ ▁█▅ ] dim 0621 μ= -0.040 σ= 0.021 zeros= 0% [ ▃███▅▁ ] [ ▁▇█▆ ] dim 0622 μ= -0.008 σ= 0.034 zeros= 0% [ ▁▅████▇▃▁ ] [ ▆█▂ ] dim 0623 μ= +0.008 σ= 0.023 zeros= 0% [ ▂▇███▃▁ ] [ ▃█▃ ] dim 0624 μ= -0.006 σ= 0.020 zeros= 0% [ ▃███▃ ] [ ▁█▆ ] dim 0625 μ= -0.019 σ= 0.024 zeros= 0% [ ▁▄███▇▂ ] [ ▁▅█▇▄ ] dim 0626 μ= -0.013 σ= 0.039 zeros= 0% [ ▁▃██████▅▂▁ ] [ ▃█▆ ] dim 0627 μ= +0.016 σ= 0.026 zeros= 0% [ ▁▅███▆▂ ] [ ▂▇█▇▃ ] dim 0628 μ= -0.022 σ= 0.035 zeros= 0% [ ▂▄█████▆▂▁ ] [ ▃▇█▄ ] dim 0629 μ= -0.015 σ= 0.031 zeros= 0% [ ▁▁▅████▆▂ ] [ ▂█▅ ] dim 0630 μ= -0.021 σ= 0.026 zeros= 0% [ ▁▅███▇▂ ] [ ▅▇█▁ ] dim 0631 μ= -0.001 σ= 0.029 zeros= 0% [ ▂▅████▃▁ ] [ ██▁ ] dim 0632 μ= -0.014 σ= 0.021 zeros= 0% [ ▂▇███▂ ] [ ▇█ ] dim 0633 μ= -0.016 σ= 0.022 zeros= 0% [ ▂███▇▂ ] [ ▃█▁ ] dim 0634 μ= -0.008 σ= 0.019 zeros= 0% [ ▃███▂ ] [ ▂▇█▇▃ ] dim 0635 μ= -0.021 σ= 0.039 zeros= 0% [ ▁▂▅█████▇▃▁ ] [ ▁█▃ ] dim 0636 μ= -0.003 σ= 0.020 zeros= 0% [ ▂███▄ ] [ ▄█▅ ] dim 0637 μ= -0.025 σ= 0.030 zeros= 0% [ ▁▃▇███▇▃▁ ] [ ▁█▅ ] dim 0638 μ= -0.021 σ= 0.022 zeros= 0% [ ▃███▅▁ ] [ ▅█▆▂ ] dim 0639 μ= +0.016 σ= 0.033 zeros= 0% [ ▁▃█████▅▁ ] [ █▅ ] dim 0640 μ= +0.003 σ= 0.020 zeros= 0% [ ▁▇██▇▁ ] [ ▃██▅▃ ] dim 0641 μ= -0.009 σ= 0.042 zeros= 0% [ ▁▂▄▇█████▆▃▁ ] [ ▁█▆ ] dim 0642 μ= +0.020 σ= 0.024 zeros= 0% [ ▃███▆▂ ] [ ▄█▁ ] dim 0643 μ= -0.008 σ= 0.021 zeros= 0% [ ▁▄███▃ ] [ ▃▇█▂ ] dim 0644 μ= -0.015 σ= 0.029 zeros= 0% [ ▁▅████▅▁ ] [ ▄█▅ ] dim 0645 μ= -0.005 σ= 0.031 zeros= 0% [ ▁▃▇███▇▃▁ ] [ ▆█▃ ] dim 0646 μ= +0.009 σ= 0.030 zeros= 0% [ ▁▄▇███▅▂▁ ] [ ▄█▄ ] dim 0647 μ= -0.005 σ= 0.024 zeros= 0% [ ▁▅███▅▁ ] [ ▁▇█▄ ] dim 0648 μ= +0.005 σ= 0.029 zeros= 0% [ ▁▅████▅▁ ] [ ▃█▇▆▁ ] dim 0649 μ= -0.011 σ= 0.036 zeros= 0% [ ▁▃▆█████▄▁ ] [ ▆█▅ ] dim 0650 μ= -0.008 σ= 0.031 zeros= 0% [ ▁▄████▆▃▁ ] [ ▁▆█▄ ] dim 0651 μ= +0.009 σ= 0.031 zeros= 0% [ ▁▄████▆▂▁ ] [ ▇█▆ ] dim 0652 μ= +0.030 σ= 0.030 zeros= 0% [ ▁▃████▇▃ ] [ ▄██▄ ] dim 0653 μ= -0.013 σ= 0.031 zeros= 0% [ ▁▅████▆▂▁ ] [ ▁█▃ ] dim 0654 μ= -0.005 σ= 0.021 zeros= 0% [ ▁▃███▃ ] [ █▆ ] dim 0655 μ= +0.002 σ= 0.023 zeros= 0% [ ▂███▇▂ ] [ ██ ] dim 0656 μ= +0.004 σ= 0.022 zeros= 0% [ ▂████▂ ] [ ▁▇█▆▁ ] dim 0657 μ= +0.012 σ= 0.033 zeros= 0% [ ▁▄█████▄▁ ] [ █▄ ] dim 0658 μ= -0.000 σ= 0.018 zeros= 0% [ ▁▇██▄ ] [ ▃█▅ ] dim 0659 μ= +0.017 σ= 0.029 zeros= 0% [ ▂▆████▃▁ ] [ ▄▇█▄ ] dim 0660 μ= +0.004 σ= 0.037 zeros= 0% [ ▁▄█████▇▄▁ ] [ ▂█▅ ] dim 0661 μ= -0.001 σ= 0.024 zeros= 0% [ ▁▃███▆▂ ] [ █▅ ] dim 0662 μ= +0.001 σ= 0.013 zeros= 0% [ ▃██▁ ] [ ▃█▇▅ ] dim 0663 μ= -0.009 σ= 0.039 zeros= 0% [ ▁▃▅█████▅▂▁ ] [ ▃█▇▂ ] dim 0664 μ= +0.002 σ= 0.029 zeros= 0% [ ▁▅████▄▁ ] [ ▃▇█▄ ] dim 0665 μ= -0.010 σ= 0.037 zeros= 0% [ ▁▂▆█████▄▂▁ ] [ ██ ] dim 0666 μ= +0.003 σ= 0.022 zeros= 0% [ ▂████▂ ] [ ▄██▇▁ ] dim 0667 μ= +0.008 σ= 0.039 zeros= 0% [ ▁▄▇█████▅▂ ] [ ▆█ ] dim 0668 μ= +0.006 σ= 0.018 zeros= 0% [ ▁▄██▇▁ ] [ ▂█▆▁ ] dim 0669 μ= -0.020 σ= 0.027 zeros= 0% [ ▁▅████▃ ] [ ▅█▃ ] dim 0670 μ= +0.010 σ= 0.024 zeros= 0% [ ▁▆███▄▁ ] [ ▅█▂ ] dim 0671 μ= +0.030 σ= 0.023 zeros= 0% [ ▁▅███▄ ] [ ▇█▂ ] dim 0672 μ= +0.008 σ= 0.024 zeros= 0% [ ▂▆███▄▁ ] [ ▇█▃ ] dim 0673 μ= +0.008 σ= 0.023 zeros= 0% [ ▁▆███▃▁ ] [ ▃██ ] dim 0674 μ= +0.019 σ= 0.027 zeros= 0% [ ▁▅████▂▁ ] [ ▃█▇▁ ] dim 0675 μ= +0.019 σ= 0.029 zeros= 0% [ ▁▁▅████▄▁ ] [ ▃██▂ ] dim 0676 μ= -0.018 σ= 0.027 zeros= 0% [ ▁▅████▃▁ ] [ ▅█▆▂ ] dim 0677 μ= +0.017 σ= 0.036 zeros= 0% [ ▁▄█████▆▂▁ ] [ ▄█▁ ] dim 0678 μ= -0.028 σ= 0.023 zeros= 0% [ ▁▅███▃▁ ] [ ▄█▅ ] dim 0679 μ= -0.004 σ= 0.028 zeros= 0% [ ▂▆███▇▂▁ ] [ ▅█ ] dim 0680 μ= +0.007 σ= 0.019 zeros= 0% [ ▁▅██▇▂ ] [ ▁█▆ ] dim 0681 μ= +0.039 σ= 0.024 zeros= 0% [ ▁▃████▂ ] [ ██ ] dim 0682 μ= -0.013 σ= 0.021 zeros= 0% [ ▁▆███▂ ] [ ▃██▂ ] dim 0683 μ= +0.002 σ= 0.030 zeros= 0% [ ▁▂▅████▄▁ ] [ █▅ ] dim 0684 μ= +0.019 σ= 0.017 zeros= 0% [ ▁▆██▃ ] [ ▄█▄ ] dim 0685 μ= +0.012 σ= 0.026 zeros= 0% [ ▂▆███▅▁ ] [ ▂▅█▄▁ ] dim 0686 μ= -0.024 σ= 0.041 zeros= 0% [ ▁▃▅█████▆▃▁ ] [ ▆█▇ ] dim 0687 μ= -0.003 σ= 0.028 zeros= 0% [ ▂▆████▃▁ ] [ ▃██▄ ] dim 0688 μ= -0.015 σ= 0.036 zeros= 0% [ ▁▃▇████▇▄▁ ] [ ▅█▁ ] dim 0689 μ= -0.012 σ= 0.023 zeros= 0% [ ▂▇███▃ ] [ ▃█ ] dim 0690 μ= +0.010 σ= 0.017 zeros= 0% [ ▃██▇▁ ] [ ▄██▁ ] dim 0691 μ= +0.018 σ= 0.031 zeros= 0% [ ▁▃▇████▄▁ ] [ ▃█▇▁ ] dim 0692 μ= -0.001 σ= 0.031 zeros= 0% [ ▁▂▇████▄▁ ] [ ▄█▆▄ ] dim 0693 μ= -0.014 σ= 0.033 zeros= 0% [ ▁▂▅████▇▂▁ ] [ ▃█▂ ] dim 0694 μ= +0.010 σ= 0.022 zeros= 0% [ ▁▄███▃ ] [ ▁██▃ ] dim 0695 μ= -0.015 σ= 0.028 zeros= 0% [ ▁▅████▄▁ ] [ ▅█▁ ] dim 0696 μ= +0.010 σ= 0.023 zeros= 0% [ ▁▅███▄▁ ] [ ▄█▇▂ ] dim 0697 μ= -0.020 σ= 0.033 zeros= 0% [ ▁▃▇████▅▁ ] [ █▂ ] dim 0698 μ= -0.021 σ= 0.016 zeros= 0% [ ▁▇██▂ ] [ ▃█▅ ] dim 0699 μ= -0.003 σ= 0.025 zeros= 0% [ ▁▄███▆▂ ] [ ▄█▅ ] dim 0700 μ= -0.005 σ= 0.028 zeros= 0% [ ▂▇███▇▂▁ ] [ ▁▆█▅ ] dim 0701 μ= +0.011 σ= 0.033 zeros= 0% [ ▂▄█████▃▁ ] [ ▃█▆ ] dim 0702 μ= -0.003 σ= 0.026 zeros= 0% [ ▁▅███▆▂▁ ] [ ▁█▇▁ ] dim 0703 μ= +0.002 σ= 0.025 zeros= 0% [ ▁▃████▂ ] [ █▁ ] dim 0704 μ= -0.003 σ= 0.014 zeros= 0% [ ▆██▁ ] [ ▇█▅ ] dim 0705 μ= -0.009 σ= 0.030 zeros= 0% [ ▁▃████▆▂ ] [ ▇█ ] dim 0706 μ= +0.025 σ= 0.014 zeros= 0% [ ▂██▄ ] [ █▆ ] dim 0707 μ= -0.018 σ= 0.018 zeros= 0% [ ▁▇██▄▁ ] [ ▁▆█▅ ] dim 0708 μ= +0.010 σ= 0.030 zeros= 0% [ ▁▄████▆▂ ] [ ▃█▇ ] dim 0709 μ= +0.019 σ= 0.023 zeros= 0% [ ▁▃███▇▁ ] [ ▄██▂ ] dim 0710 μ= -0.002 σ= 0.038 zeros= 0% [ ▁▂▄█████▆▂▁ ] [ ▃██▅▁ ] dim 0711 μ= -0.008 σ= 0.038 zeros= 0% [ ▂▆█████▅▂▁ ] [ ▁██▂ ] dim 0712 μ= -0.014 σ= 0.026 zeros= 0% [ ▁▃████▄▁ ] [ ▄█▅ ] dim 0713 μ= -0.006 σ= 0.027 zeros= 0% [ ▂▆███▆▂ ] [ ▆█▄ ] dim 0714 μ= -0.007 σ= 0.034 zeros= 0% [ ▁▄████▇▄▁ ] [ ▁█▇ ] dim 0715 μ= +0.019 σ= 0.020 zeros= 0% [ ▂███▅▁ ] [ ▂█▄ ] dim 0716 μ= +0.014 σ= 0.019 zeros= 0% [ ▃███▃ ] [ ▆█▄ ] dim 0717 μ= +0.009 σ= 0.028 zeros= 0% [ ▁▃████▆▂ ] [ ▁█▁ ] dim 0718 μ= -0.025 σ= 0.017 zeros= 0% [ ▂███▂ ] [ ▄▇█▄ ] dim 0719 μ= +0.041 σ= 0.037 zeros= 0% [ ▂▃▆█████▃▁ ] [ ▅█▆▂ ] dim 0720 μ= -0.002 σ= 0.032 zeros= 0% [ ▁▃▇████▅▁ ] [ ▂█▇▂ ] dim 0721 μ= -0.015 σ= 0.025 zeros= 0% [ ▁▃████▃▁ ] [ ▁█▄ ] dim 0722 μ= -0.003 σ= 0.017 zeros= 0% [ ▁███▂ ] [ ▃█▆▁ ] dim 0723 μ= -0.018 σ= 0.034 zeros= 0% [ ▁▃▆████▅▂▁ ] [ ▁▇█▇ ] dim 0724 μ= +0.012 σ= 0.034 zeros= 0% [ ▁▅█████▄▁ ] [ ██ ] dim 0725 μ= +0.004 σ= 0.022 zeros= 0% [ ▂▇███▂ ] [ ▂▄█▄ ] dim 0726 μ= -0.009 σ= 0.039 zeros= 0% [ ▁▂▆█████▄▂▁ ] [ ▆█▃ ] dim 0727 μ= -0.010 σ= 0.025 zeros= 0% [ ▂▆███▄▁ ] [ ▁█▅ ] dim 0728 μ= -0.019 σ= 0.022 zeros= 0% [ ▂███▆▁ ] [ ▄█▂ ] dim 0729 μ= +0.009 σ= 0.026 zeros= 0% [ ▂▇███▄▁ ] [ ▁██▁ ] dim 0730 μ= -0.015 σ= 0.026 zeros= 0% [ ▃████▃▁ ] [ ▂▇█▂ ] dim 0731 μ= +0.004 σ= 0.030 zeros= 0% [ ▁▅████▅▁ ] [ ▁▆█▃ ] dim 0732 μ= +0.007 σ= 0.028 zeros= 0% [ ▁▃████▅▁ ] [ ▆█▁ ] dim 0733 μ= +0.007 σ= 0.023 zeros= 0% [ ▁▆███▃ ] [ ▅█▁ ] dim 0734 μ= -0.011 σ= 0.022 zeros= 0% [ ▁▆███▂ ] [ ▇█ ] dim 0735 μ= -0.015 σ= 0.022 zeros= 0% [ ▂▇██▇▂ ] [ ▃█▃ ] dim 0736 μ= -0.026 σ= 0.020 zeros= 0% [ ▃███▃ ] [ ▅█▆▂ ] dim 0737 μ= -0.021 σ= 0.031 zeros= 0% [ ▁▂▇████▄▁ ] [ ▂▄██▃▁ ] dim 0738 μ= +0.022 σ= 0.043 zeros= 0% [ ▁▂▅██████▄▃▁ ] [ █▇ ] dim 0739 μ= -0.017 σ= 0.020 zeros= 0% [ ▁███▆▁ ] [ ▆█▆▁ ] dim 0740 μ= +0.015 σ= 0.038 zeros= 0% [ ▁▃▅█████▆▃ ] [ ▅█▃ ] dim 0741 μ= +0.029 σ= 0.025 zeros= 0% [ ▂▅███▄▁ ] [ ▂▆█▃ ] dim 0742 μ= -0.014 σ= 0.032 zeros= 0% [ ▂▆████▆▂ ] [ █▄ ] dim 0743 μ= -0.039 σ= 0.019 zeros= 0% [ ▂▇██▄ ] [ ▃▇█▄ ] dim 0744 μ= +0.004 σ= 0.030 zeros= 0% [ ▂▅████▅▂ ] [ ▂█▄ ] dim 0745 μ= +0.018 σ= 0.025 zeros= 0% [ ▁▄███▇▂ ] [ ▂█▁ ] dim 0746 μ= -0.006 σ= 0.017 zeros= 0% [ ▂███▁ ] [ ▄█▄ ] dim 0747 μ= -0.005 σ= 0.030 zeros= 0% [ ▁▃▇███▇▂▁ ] [ ▄█▇▁ ] dim 0748 μ= -0.021 σ= 0.030 zeros= 0% [ ▂▇████▄▁ ] [ ▆█▂ ] dim 0749 μ= -0.012 σ= 0.022 zeros= 0% [ ▁▇███▂ ] [ ▂▇██▃ ] dim 0750 μ= -0.003 σ= 0.038 zeros= 0% [ ▁▂▅█████▅▃▁ ] [ ▃█▅▁ ] dim 0751 μ= +0.002 σ= 0.031 zeros= 0% [ ▂▆████▅▂ ] [ ▁█▇▁ ] dim 0752 μ= +0.002 σ= 0.027 zeros= 0% [ ▁▄████▃▁ ] [ ▅█▃ ] dim 0753 μ= -0.007 σ= 0.024 zeros= 0% [ ▁▅███▅▁ ] [ ▄█ ] dim 0754 μ= -0.013 σ= 0.011 zeros= 0% [ ▁██▂ ] [ ▁█▂ ] dim 0755 μ= -0.006 σ= 0.018 zeros= 0% [ ▂███▂ ] [ ▅█▄ ] dim 0756 μ= +0.014 σ= 0.027 zeros= 0% [ ▂▇███▆▂ ] [ ▃█▆ ] dim 0757 μ= +0.001 σ= 0.026 zeros= 0% [ ▁▄████▃▁ ] [ ▂▇█▅▁ ] dim 0758 μ= -0.008 σ= 0.035 zeros= 0% [ ▂▆█████▅▁▁ ] [ ▃█▆▂ ] dim 0759 μ= +0.020 σ= 0.039 zeros= 0% [ ▁▁▃█████▇▃▁ ] [ █ ] dim 0760 μ= -0.009 σ= 0.010 zeros= 0% [ ▇█▃ ] [ ▄█▅▂ ] dim 0761 μ= +0.015 σ= 0.037 zeros= 0% [ ▂▅▇████▄▂▁ ] [ ▇█▅ ] dim 0762 μ= -0.008 σ= 0.030 zeros= 0% [ ▁▄████▇▃▁ ] [ ▄█▅ ] dim 0763 μ= -0.005 σ= 0.029 zeros= 0% [ ▂▆███▇▂▁ ] [ ▅█▃ ] dim 0764 μ= +0.009 σ= 0.025 zeros= 0% [ ▂▇███▄▁ ] [ ▂█ ] dim 0765 μ= +0.012 σ= 0.016 zeros= 0% [ ▂███▁ ] [ ▁▅█▄ ] dim 0766 μ= -0.010 σ= 0.032 zeros= 0% [ ▂▄████▇▂▁ ] [ ▄█▇ ] dim 0767 μ= +0.014 σ= 0.031 zeros= 0% [ ▁▃█████▃▁ ] [ ▃█▂ ] dim 0768 μ= -0.009 σ= 0.020 zeros= 0% [ ▁▄███▂ ] [ ▃█▄ ] dim 0769 μ= -0.002 σ= 0.027 zeros= 0% [ ▁▅████▂ ] [ ▄█▅ ] dim 0770 μ= -0.003 σ= 0.030 zeros= 0% [ ▁▂▅████▃▁ ] [ ▅█ ] dim 0771 μ= -0.011 σ= 0.022 zeros= 0% [ ▁▆███▃ ] [ █ ] dim 0772 μ= +0.014 σ= 0.017 zeros= 0% [ ▁███▂ ] [ ▆█▃ ] dim 0773 μ= -0.011 σ= 0.029 zeros= 0% [ ▁▃████▅▂ ] [ ▂▇█▅ ] dim 0774 μ= -0.009 σ= 0.037 zeros= 0% [ ▁▂▅█████▄▂▁ ] [ ▄█▄ ] dim 0775 μ= -0.004 σ= 0.022 zeros= 0% [ ▁▃███▅▁ ] [ ▃▇█▄ ] dim 0776 μ= +0.006 σ= 0.034 zeros= 0% [ ▁▂▅████▇▂▁ ] [ ▃█▇▂ ] dim 0777 μ= -0.017 σ= 0.032 zeros= 0% [ ▂▆████▅▂▁ ] [ ▃█▃ ] dim 0778 μ= +0.013 σ= 0.021 zeros= 0% [ ▁▄███▄ ] [ ▃█▄ ] dim 0779 μ= -0.004 σ= 0.025 zeros= 0% [ ▁▄███▆▁ ] [ ▄█▆ ] dim 0780 μ= -0.024 σ= 0.025 zeros= 0% [ ▁▆███▆▂ ] [ ▆█▂ ] dim 0781 μ= -0.011 σ= 0.021 zeros= 0% [ ▁▆███▂ ] [ ▃█ ] dim 0782 μ= +0.029 σ= 0.017 zeros= 0% [ ▂██▇▁ ] [ ▃█▆ ] dim 0783 μ= +0.000 σ= 0.025 zeros= 0% [ ▁▃███▇▂ ] [ ▂█▄ ] dim 0784 μ= -0.004 σ= 0.025 zeros= 0% [ ▁▅███▆▂ ] [ ▂█▅ ] dim 0785 μ= -0.003 σ= 0.023 zeros= 0% [ ▁▄███▅▁ ] [ ▄██▃ ] dim 0786 μ= +0.022 σ= 0.030 zeros= 0% [ ▂▅████▅▂ ] [ █▆ ] dim 0787 μ= +0.001 σ= 0.020 zeros= 0% [ ▂███▆▁ ] [ ▆█▂ ] dim 0788 μ= +0.026 σ= 0.025 zeros= 0% [ ▃▇███▄▁ ] [ ▃█▅ ] dim 0789 μ= +0.018 σ= 0.027 zeros= 0% [ ▁▅████▃ ] [ ▂▇█▅▂ ] dim 0790 μ= -0.025 σ= 0.035 zeros= 0% [ ▁▂▅█████▅▂ ] [ ▄█ ] dim 0791 μ= -0.009 σ= 0.016 zeros= 0% [ ▂██▇▁ ] [ ▆█▆▁ ] dim 0792 μ= +0.017 σ= 0.032 zeros= 0% [ ▁▃▇████▄▂ ] [ ▃█▃ ] dim 0793 μ= -0.006 σ= 0.024 zeros= 0% [ ▁▅███▅▁ ] [ ▂█▅ ] dim 0794 μ= -0.000 σ= 0.026 zeros= 0% [ ▁▄███▇▂▁ ] [ ▅█▅ ] dim 0795 μ= -0.005 σ= 0.026 zeros= 0% [ ▂▆███▇▁ ] [ ▄█▅ ] dim 0796 μ= +0.014 σ= 0.024 zeros= 0% [ ▁▅███▅▁ ] [ ▆█▃ ] dim 0797 μ= -0.029 σ= 0.027 zeros= 0% [ ▃████▅▁ ] [ ▄██▂ ] dim 0798 μ= +0.002 σ= 0.027 zeros= 0% [ ▁▄████▄▁ ] [ ▃█▅ ] dim 0799 μ= -0.042 σ= 0.024 zeros= 0% [ ▁▄███▆▁ ] [ ▂██▅▁ ] dim 0800 μ= +0.028 σ= 0.037 zeros= 0% [ ▁▃▆█████▄▂ ] [ █ ] dim 0801 μ= -0.028 σ= 0.013 zeros= 0% [ ▁██▅ ] [ ▄█▂ ] dim 0802 μ= -0.025 σ= 0.022 zeros= 0% [ ▁▄███▄▁ ] [ ▂█ ] dim 0803 μ= +0.009 σ= 0.015 zeros= 0% [ ▂██▅▁ ] [ ▅█▇▂ ] dim 0804 μ= +0.016 σ= 0.034 zeros= 0% [ ▂▃█████▅▂ ] [ █ ] dim 0805 μ= -0.022 σ= 0.008 zeros= 0% [ ▁█▄ ] [ ▃█▃ ] dim 0806 μ= -0.024 σ= 0.024 zeros= 0% [ ▁▅███▅▁ ] [ ▂▇█▇▄ ] dim 0807 μ= +0.016 σ= 0.039 zeros= 0% [ ▁▂▆█████▆▃▁ ] [ ▃██▃ ] dim 0808 μ= +0.005 σ= 0.029 zeros= 0% [ ▁▄████▅▁ ] [ ▂█ ] dim 0809 μ= +0.012 σ= 0.017 zeros= 0% [ ▂███▂ ] [ ▁█▇▄ ] dim 0810 μ= +0.007 σ= 0.029 zeros= 0% [ ▁▄████▅▂ ] [ ▅█▄ ] dim 0811 μ= +0.012 σ= 0.032 zeros= 0% [ ▁▄████▇▃▁ ] [ ▃▇█▃ ] dim 0812 μ= +0.003 σ= 0.032 zeros= 0% [ ▁▂▅████▅▂ ] [ ▅█▂ ] dim 0813 μ= +0.028 σ= 0.023 zeros= 0% [ ▂▆███▃▁ ] [ ▃█▃ ] dim 0814 μ= +0.013 σ= 0.021 zeros= 0% [ ▄███▃▁ ] [ ▃█▆ ] dim 0815 μ= -0.002 σ= 0.024 zeros= 0% [ ▁▄███▆▂ ] [ ██ ] dim 0816 μ= +0.040 σ= 0.022 zeros= 0% [ ▂███▇▁ ] [ █▁ ] dim 0817 μ= +0.034 σ= 0.016 zeros= 0% [ ▁▇██▂ ] [ ▃▇█▄ ] dim 0818 μ= -0.014 σ= 0.031 zeros= 0% [ ▂▅████▆▂ ] [ ▁▆█▇▂ ] dim 0819 μ= +0.034 σ= 0.034 zeros= 0% [ ▁▄█████▅▂ ] [ ▄█▇▆ ] dim 0820 μ= +0.004 σ= 0.034 zeros= 0% [ ▁▃▅████▆▂▁ ] [ ██ ] dim 0821 μ= +0.003 σ= 0.021 zeros= 0% [ ▂███▇▂ ] [ ▃█▁ ] dim 0822 μ= -0.007 σ= 0.021 zeros= 0% [ ▁▃███▃ ] [ ▁▆█▄ ] dim 0823 μ= -0.011 σ= 0.033 zeros= 0% [ ▂▄████▇▂▁ ] [ ▄█▄ ] dim 0824 μ= -0.007 σ= 0.026 zeros= 0% [ ▂▆███▅▁ ] [ ▁█▆ ] dim 0825 μ= +0.000 σ= 0.024 zeros= 0% [ ▁▄████▁ ] [ ▅█▆ ] dim 0826 μ= +0.017 σ= 0.030 zeros= 0% [ ▁▂▆███▇▃▁ ] [ ▆█ ] dim 0827 μ= -0.013 σ= 0.019 zeros= 0% [ ▁▅██▇▁ ] [ ▆█▇ ] dim 0828 μ= -0.024 σ= 0.029 zeros= 0% [ ▂▇████▃▁ ] [ ▂▆██▂ ] dim 0829 μ= -0.006 σ= 0.036 zeros= 0% [ ▁▂▅█████▅▂▁ ] [ ▅█▆▂ ] dim 0830 μ= -0.000 σ= 0.038 zeros= 0% [ ▂▄█████▆▃▁ ] [ █▃ ] dim 0831 μ= -0.001 σ= 0.013 zeros= 0% [ ▄██▂ ] [ ▁▆█▂ ] dim 0832 μ= -0.015 σ= 0.025 zeros= 0% [ ▁▃████▃▁ ] [ ▆█▆▁ ] dim 0833 μ= +0.000 σ= 0.031 zeros= 0% [ ▂▅████▅▁▁ ] [ ▅██▂ ] dim 0834 μ= -0.002 σ= 0.034 zeros= 0% [ ▁▄█████▄▂ ] [ ▅█▅ ] dim 0835 μ= -0.004 σ= 0.028 zeros= 0% [ ▂▆████▂ ] [ █▆ ] dim 0836 μ= +0.001 σ= 0.021 zeros= 0% [ ▂███▆▁ ] [ ▁█▆▂ ] dim 0837 μ= +0.026 σ= 0.028 zeros= 0% [ ▁▂████▅▁ ] [ ▃█▃ ] dim 0838 μ= +0.013 σ= 0.021 zeros= 0% [ ▄███▄ ] [ ██▄ ] dim 0839 μ= -0.011 σ= 0.027 zeros= 0% [ ▁▃████▅▁ ] [ ▅█▆ ] dim 0840 μ= -0.003 σ= 0.030 zeros= 0% [ ▂▇████▃▁ ] [ ▆█▄ ] dim 0841 μ= +0.011 σ= 0.027 zeros= 0% [ ▁▂▇███▆▂ ] [ ▃█▄▁ ] dim 0842 μ= -0.019 σ= 0.032 zeros= 0% [ ▁▂▇████▄▁ ] [ ▁█ ] dim 0843 μ= +0.011 σ= 0.013 zeros= 0% [ ▁██▅ ] [ ▁██▂ ] dim 0844 μ= +0.006 σ= 0.025 zeros= 0% [ ▂████▃▁ ] [ ▁▆█▄ ] dim 0845 μ= -0.012 σ= 0.029 zeros= 0% [ ▁▄████▅▂ ] [ ▃█▄ ] dim 0846 μ= -0.023 σ= 0.025 zeros= 0% [ ▁▄███▆▂ ] [ ▃██▄ ] dim 0847 μ= +0.024 σ= 0.033 zeros= 0% [ ▁▂▆████▆▂▁ ] [ ▄▇█▂ ] dim 0848 μ= -0.000 σ= 0.032 zeros= 0% [ ▁▃▇████▅▁ ] [ ▄█▆▁ ] dim 0849 μ= +0.036 σ= 0.030 zeros= 0% [ ▁▂▆████▄▁ ] [ ▁█▄ ] dim 0850 μ= +0.018 σ= 0.022 zeros= 0% [ ▃███▅▁ ] [ ▁▅█▂ ] dim 0851 μ= +0.006 σ= 0.026 zeros= 0% [ ▁▂████▄ ] [ ▁▅█▅▁ ] dim 0852 μ= +0.013 σ= 0.037 zeros= 0% [ ▁▂▅█████▄▂▁ ] [ ▁█▄ ] dim 0853 μ= -0.001 σ= 0.020 zeros= 0% [ ▂███▄▁ ] [ ▅█▃ ] dim 0854 μ= +0.011 σ= 0.024 zeros= 0% [ ▂▅███▄▁ ] [ █▇ ] dim 0855 μ= +0.002 σ= 0.016 zeros= 0% [ ▅██▄ ] [ ▅█▄ ] dim 0856 μ= +0.010 σ= 0.027 zeros= 0% [ ▁▂▇███▅▁ ] [ ▁▆█▃ ] dim 0857 μ= +0.006 σ= 0.029 zeros= 0% [ ▁▄████▅▂ ] [ ▆█▆ ] dim 0858 μ= -0.005 σ= 0.029 zeros= 0% [ ▂▇███▇▃▁ ] [ ▂█▇ ] dim 0859 μ= -0.000 σ= 0.022 zeros= 0% [ ▂███▆▁ ] [ ▃██▃ ] dim 0860 μ= -0.018 σ= 0.032 zeros= 0% [ ▁▂▇████▅▂ ] [ █▆ ] dim 0861 μ= +0.003 σ= 0.019 zeros= 0% [ ▁▆██▆▁ ] [ ▅█▄▂ ] dim 0862 μ= -0.024 σ= 0.037 zeros= 0% [ ▁▂▅█████▅▂▁ ] [ ▃█▃ ] dim 0863 μ= +0.014 σ= 0.023 zeros= 0% [ ▁▄███▅▁ ] [ ▆█▂ ] dim 0864 μ= +0.008 σ= 0.025 zeros= 0% [ ▂▇███▄▁ ] [ ▁█▅ ] dim 0865 μ= +0.001 σ= 0.022 zeros= 0% [ ▂███▆▁ ] [ ▃█▇ ] dim 0866 μ= -0.020 σ= 0.025 zeros= 0% [ ▁▅████▂ ] [ ▆█▂ ] dim 0867 μ= +0.009 σ= 0.022 zeros= 0% [ ▁▅███▃ ] [ ▁██ ] dim 0868 μ= +0.002 σ= 0.025 zeros= 0% [ ▁▃████▂ ] [ █▅ ] dim 0869 μ= -0.038 σ= 0.017 zeros= 0% [ ▁▆██▃ ] [ ▆█▆▁ ] dim 0870 μ= -0.002 σ= 0.031 zeros= 0% [ ▁▂▆████▄▁ ] [ ▄██▃ ] dim 0871 μ= +0.004 σ= 0.036 zeros= 0% [ ▁▃▆█████▃▁ ] [ ▃██▃ ] dim 0872 μ= -0.013 σ= 0.036 zeros= 0% [ ▁▂▆█████▄▁ ] [ ▄█▄ ] dim 0873 μ= -0.007 σ= 0.029 zeros= 0% [ ▃▇███▆▂▁ ] [ ▂▆█▇▄ ] dim 0874 μ= +0.016 σ= 0.037 zeros= 0% [ ▁▂▅█████▆▂▁ ] [ █ ] dim 0875 μ= -0.006 σ= 0.014 zeros= 0% [ ▁██▇▁ ] [ ▂█ ] dim 0876 μ= +0.012 σ= 0.017 zeros= 0% [ ▂███▁ ] [ █▄ ] dim 0877 μ= -0.002 σ= 0.020 zeros= 0% [ ▂███▄▁ ] [ ▁█ ] dim 0878 μ= -0.008 σ= 0.015 zeros= 0% [ ▁██▇▁ ] [ ▁▅█▆▁ ] dim 0879 μ= -0.008 σ= 0.038 zeros= 0% [ ▁▂▅█████▃▂▁ ] [ ▁▆█▅ ] dim 0880 μ= +0.031 σ= 0.033 zeros= 0% [ ▁▄█████▃▁ ] [ █▅ ] dim 0881 μ= -0.038 σ= 0.019 zeros= 0% [ ▁▇██▅▁ ] [ ▃▇█▂ ] dim 0882 μ= +0.003 σ= 0.034 zeros= 0% [ ▁▂▆████▅▂▁ ] [ ▁▇█▁ ] dim 0883 μ= -0.015 σ= 0.027 zeros= 0% [ ▁▃████▄▁ ] [ ▄█▇ ] dim 0884 μ= -0.003 σ= 0.028 zeros= 0% [ ▂▆████▃▁ ] [ ▆█ ] dim 0885 μ= -0.014 σ= 0.020 zeros= 0% [ ▁▆██▇▁ ] [ ▁▇█▂ ] dim 0886 μ= -0.014 σ= 0.027 zeros= 0% [ ▁▄████▅▁ ] [ ▆█ ] dim 0887 μ= +0.043 σ= 0.019 zeros= 0% [ ▁▆██▇▁ ] [ ▆█ ] dim 0888 μ= -0.013 σ= 0.020 zeros= 0% [ ▁▆███▁ ] [ ▄▇█▃ ] dim 0889 μ= -0.014 σ= 0.031 zeros= 0% [ ▁▅████▆▂ ] [ ▂█▅ ] dim 0890 μ= +0.017 σ= 0.022 zeros= 0% [ ▃███▅▁ ] [ ▃█▆▁ ] dim 0891 μ= +0.001 σ= 0.029 zeros= 0% [ ▂▄████▄▁ ] [ ▅█▁ ] dim 0892 μ= +0.011 σ= 0.020 zeros= 0% [ ▄███▃ ] [ ▁▆█▅▁ ] dim 0893 μ= -0.006 σ= 0.035 zeros= 0% [ ▂▄█████▄▂ ] [ ▅█▅ ] dim 0894 μ= -0.024 σ= 0.028 zeros= 0% [ ▂▆███▇▂▁ ] [ ▂▇██▅ ] dim 0895 μ= -0.001 σ= 0.043 zeros= 0% [ ▁▃▆██████▅▂▁ ] [ ▄█▇▂ ] dim 0896 μ= +0.036 σ= 0.032 zeros= 0% [ ▁▃▇████▄▁ ] [ ▄█▄ ] dim 0897 μ= -0.006 σ= 0.021 zeros= 0% [ ▁▄███▃ ] [ ▂██▂ ] dim 0898 μ= -0.033 σ= 0.027 zeros= 0% [ ▁▃████▄▁ ] [ █▄ ] dim 0899 μ= -0.021 σ= 0.016 zeros= 0% [ ▁▇██▂ ] [ ▁▇█▂ ] dim 0900 μ= -0.011 σ= 0.027 zeros= 0% [ ▁▂████▅▂ ] [ ▇█▅ ] dim 0901 μ= +0.012 σ= 0.032 zeros= 0% [ ▁▄████▇▄▁ ] [ ▂▇█▃ ] dim 0902 μ= +0.020 σ= 0.029 zeros= 0% [ ▁▁▅████▄▁ ] [ ▅█▅▁ ] dim 0903 μ= -0.022 σ= 0.033 zeros= 0% [ ▁▃▇████▄▂ ] [ ▇█▂ ] dim 0904 μ= -0.014 σ= 0.024 zeros= 0% [ ▃████▃ ] [ ▃▇█▄ ] dim 0905 μ= +0.022 σ= 0.038 zeros= 0% [ ▁▂▃▇████▇▄▁ ] [ ▃█▇▂ ] dim 0906 μ= +0.020 σ= 0.027 zeros= 0% [ ▁▅████▃ ] [ ▄█ ] dim 0907 μ= +0.007 σ= 0.018 zeros= 0% [ ▄███▁ ] [ ▆█▄ ] dim 0908 μ= -0.007 σ= 0.024 zeros= 0% [ ▁▅███▅▁ ] [ ▁██▃ ] dim 0909 μ= +0.004 σ= 0.028 zeros= 0% [ ▁▅████▅▁ ] [ ▃▇▇█▆▂ ] dim 0910 μ= -0.006 σ= 0.048 zeros= 0% [ ▁▂▅███████▄▂▁ ] -> OUTLIER_SPREAD: this_std=0.0484, mean_std=0.0266, +3.1sigma vs threshold=3.0sigma [ ▂█▆ ] dim 0911 μ= +0.000 σ= 0.026 zeros= 0% [ ▁▄███▇▂▁ ] [ █▇ ] dim 0912 μ= -0.016 σ= 0.021 zeros= 0% [ ▂███▇▁ ] [ ▃█▃ ] dim 0913 μ= +0.014 σ= 0.022 zeros= 0% [ ▁▃███▄▁ ] [ ▄█▃ ] dim 0914 μ= +0.012 σ= 0.024 zeros= 0% [ ▁▆███▄▁ ] [ ▁▆█▃ ] dim 0915 μ= +0.006 σ= 0.027 zeros= 0% [ ▁▃████▄▁ ] [ ▆█▅ ] dim 0916 μ= -0.006 σ= 0.032 zeros= 0% [ ▁▃█████▃▁ ] [ ▅█▂ ] dim 0917 μ= -0.008 σ= 0.023 zeros= 0% [ ▁▅███▄▁ ] [ ▅█▅ ] dim 0918 μ= -0.004 σ= 0.034 zeros= 0% [ ▁▃█████▄▁ ] [ ▂█▆▃ ] dim 0919 μ= +0.003 σ= 0.031 zeros= 0% [ ▂▆████▆▂ ] [ ▄█ ] dim 0920 μ= -0.029 σ= 0.020 zeros= 0% [ ▁▄███▂ ] [ ▁▆█▆ ] dim 0921 μ= +0.032 σ= 0.034 zeros= 0% [ ▁▄█████▄▁▁ ] [ ▆█▅ ] dim 0922 μ= -0.007 σ= 0.027 zeros= 0% [ ▃████▆▂ ] [ ▃█▁ ] dim 0923 μ= -0.008 σ= 0.020 zeros= 0% [ ▁▃███▂ ] [ █▇ ] dim 0924 μ= -0.015 σ= 0.023 zeros= 0% [ ▂████▂ ] [ ▂█▇▅ ] dim 0925 μ= -0.031 σ= 0.033 zeros= 0% [ ▂▅████▇▃▁ ] [ ▄█▅ ] dim 0926 μ= +0.033 σ= 0.028 zeros= 0% [ ▁▂▆███▇▂ ] [ ▄█▃ ] dim 0927 μ= +0.010 σ= 0.024 zeros= 0% [ ▂▆███▄▁ ] [ ▁▅██▃ ] dim 0928 μ= -0.020 σ= 0.036 zeros= 0% [ ▂▄█████▇▃▁ ] [ ▄█▇ ] dim 0929 μ= -0.001 σ= 0.024 zeros= 0% [ ▁▄███▇▂ ] [ ▄█▁ ] dim 0930 μ= -0.007 σ= 0.020 zeros= 0% [ ▃███▃▁ ] [ ▂▇█▄ ] dim 0931 μ= -0.010 σ= 0.035 zeros= 0% [ ▁▂▆█████▃▂ ] [ ▇█ ] dim 0932 μ= +0.006 σ= 0.014 zeros= 0% [ ▃██▅ ] [ ▄█ ] dim 0933 μ= -0.012 σ= 0.013 zeros= 0% [ ▂██▃ ] [ ▁▇██▂ ] dim 0934 μ= -0.022 σ= 0.036 zeros= 0% [ ▂▄█████▅▂▁ ] [ ▄█▆ ] dim 0935 μ= -0.026 σ= 0.025 zeros= 0% [ ▂▅███▅▁ ] [ ▇█ ] dim 0936 μ= +0.005 σ= 0.017 zeros= 0% [ ▅██▆ ] [ ▂█▅ ] dim 0937 μ= -0.002 σ= 0.022 zeros= 0% [ ▃███▅▁ ] [ ▃██▅ ] dim 0938 μ= +0.009 σ= 0.031 zeros= 0% [ ▁▄████▆▂▁ ] [ ▁▇█▂ ] dim 0939 μ= -0.014 σ= 0.027 zeros= 0% [ ▁▃████▅▁ ] [ ▅█▅ ] dim 0940 μ= +0.014 σ= 0.029 zeros= 0% [ ▁▂▇███▇▃ ] [ ▃█▆ ] dim 0941 μ= -0.000 σ= 0.027 zeros= 0% [ ▁▄███▇▃▁ ] [ ▂▅█▇▄ ] dim 0942 μ= +0.016 σ= 0.042 zeros= 0% [ ▁▁▃▆█████▇▄▁ ] [ ▄█ ] dim 0943 μ= -0.010 σ= 0.021 zeros= 0% [ ▁▅███▃ ] [ ▄█▇ ] dim 0944 μ= +0.016 σ= 0.031 zeros= 0% [ ▁▂▇████▄▁ ] [ █▃ ] dim 0945 μ= +0.017 σ= 0.018 zeros= 0% [ ▁███▃ ] [ ▆█▆ ] dim 0946 μ= -0.006 σ= 0.029 zeros= 0% [ ▁▃▇███▇▃▁ ] [ █▇▂ ] dim 0947 μ= -0.013 σ= 0.025 zeros= 0% [ ▂████▄▁ ] [ ▄█▃ ] dim 0948 μ= +0.013 σ= 0.023 zeros= 0% [ ▁▄███▄▁ ] [ ▂██▃ ] dim 0949 μ= +0.006 σ= 0.032 zeros= 0% [ ▂▅████▇▂▁ ] [ ▇█ ] dim 0950 μ= +0.023 σ= 0.022 zeros= 0% [ ▂███▇▂ ] [ ▆█▁ ] dim 0951 μ= +0.008 σ= 0.023 zeros= 0% [ ▂▆███▃ ] [ ▅█▆▁ ] dim 0952 μ= +0.018 σ= 0.032 zeros= 0% [ ▁▃▇████▄▂ ] [ ▄█▄ ] dim 0953 μ= -0.005 σ= 0.026 zeros= 0% [ ▂▅███▇▂ ] [ ▅█▅ ] dim 0954 μ= -0.024 σ= 0.029 zeros= 0% [ ▁▃▇███▇▃▁ ] [ ▅█▄ ] dim 0955 μ= +0.015 σ= 0.031 zeros= 0% [ ▁▃▇███▇▃▁ ] [ ▁█ ] dim 0956 μ= -0.007 σ= 0.017 zeros= 0% [ ▂██▇▁ ] [ █▄ ] dim 0957 μ= -0.000 σ= 0.016 zeros= 0% [ ▁▆██▂ ] [ ▆█▁ ] dim 0958 μ= +0.007 σ= 0.023 zeros= 0% [ ▂▇███▃▁ ] [ ▃█▇▂ ] dim 0959 μ= +0.003 σ= 0.028 zeros= 0% [ ▁▅████▄▁ ] [ ▂█▅ ] dim 0960 μ= -0.001 σ= 0.024 zeros= 0% [ ▄███▇▁ ] [ ▂█▃ ] dim 0961 μ= -0.004 σ= 0.021 zeros= 0% [ ▃███▄▁ ] [ ▁█▂ ] dim 0962 μ= -0.005 σ= 0.020 zeros= 0% [ ▃███▃ ] [ ▆█▁ ] dim 0963 μ= -0.013 σ= 0.023 zeros= 0% [ ▂▇███▃ ] [ ▂█▇▂ ] dim 0964 μ= -0.014 σ= 0.033 zeros= 0% [ ▂▅████▆▂▁ ] [ ▅██▄ ] dim 0965 μ= -0.016 σ= 0.037 zeros= 0% [ ▁▃█████▇▄▁ ] [ ▃▆█▅▂ ] dim 0966 μ= +0.013 σ= 0.042 zeros= 0% [ ▁▃▇█████▆▄▂ ] [ ▇█ ] dim 0967 μ= -0.033 σ= 0.021 zeros= 0% [ ▁▆███▂ ] [ ▄█ ] dim 0968 μ= -0.011 σ= 0.016 zeros= 0% [ ▂██▆▁ ] [ ▄█▇▂ ] dim 0969 μ= +0.020 σ= 0.032 zeros= 0% [ ▁▂▆████▅▂ ] [ ▂▆█▅▁ ] dim 0970 μ= +0.008 σ= 0.038 zeros= 0% [ ▁▃██████▄▂ ] [ ▂▅▇█▃ ] dim 0971 μ= +0.015 σ= 0.049 zeros= 0% [ ▁▂▅▇██████▅▂▁ ] -> OUTLIER_SPREAD: this_std=0.0488, mean_std=0.0266, +3.1sigma vs threshold=3.0sigma [ ▃▇█▇ ] dim 0972 μ= -0.010 σ= 0.033 zeros= 0% [ ▂▅█████▃▁ ] [ █▆ ] dim 0973 μ= -0.001 σ= 0.019 zeros= 0% [ ▂███▄ ] [ █▁ ] dim 0974 μ= -0.021 σ= 0.014 zeros= 0% [ ▁▅██▁ ] [ ▁█▃ ] dim 0975 μ= -0.005 σ= 0.019 zeros= 0% [ ▂███▃ ] [ ▄█▄ ] dim 0976 μ= -0.009 σ= 0.027 zeros= 0% [ ▁▂▆███▄▁ ] [ ▆█▇ ] dim 0977 μ= -0.007 σ= 0.032 zeros= 0% [ ▁▃█████▃▁ ] [ ▃▇█▂ ] dim 0978 μ= +0.022 σ= 0.028 zeros= 0% [ ▂▅████▄▁ ] [ ▁█▄ ] dim 0979 μ= -0.002 σ= 0.021 zeros= 0% [ ▂███▅▁ ] [ ▆█▃ ] dim 0980 μ= -0.010 σ= 0.025 zeros= 0% [ ▂▇███▄▁ ] [ ▃█▅ ] dim 0981 μ= +0.015 σ= 0.027 zeros= 0% [ ▁▆███▆▂ ] [ ▄██▁ ] dim 0982 μ= +0.002 σ= 0.029 zeros= 0% [ ▂▄████▄▁ ] [ ▁█▄ ] dim 0983 μ= +0.016 σ= 0.021 zeros= 0% [ ▃███▄▁ ] [ █▄ ] dim 0984 μ= -0.002 σ= 0.016 zeros= 0% [ ▁▇██▂ ] [ ▄█▃ ] dim 0985 μ= +0.030 σ= 0.026 zeros= 0% [ ▁▆███▅▁ ] [ ▃▇█▄ ] dim 0986 μ= +0.022 σ= 0.036 zeros= 0% [ ▁▃▇████▆▂▁ ] [ ▄█▆▂ ] dim 0987 μ= -0.017 σ= 0.034 zeros= 0% [ ▁▃▆████▆▂▁ ] [ █▇ ] dim 0988 μ= +0.003 σ= 0.015 zeros= 0% [ ▄██▄ ] [ ▆██▃ ] dim 0989 μ= -0.020 σ= 0.034 zeros= 0% [ ▁▄▇████▅▂ ] [ ▁▆██▁ ] dim 0990 μ= -0.023 σ= 0.033 zeros= 0% [ ▁▄█████▅▁ ] [ █▂ ] dim 0991 μ= -0.003 σ= 0.015 zeros= 0% [ ▁▇██▂ ] [ ▃█▅ ] dim 0992 μ= -0.021 σ= 0.028 zeros= 0% [ ▂▅████▃▁ ] [ ▂▅█▄ ] dim 0993 μ= -0.011 σ= 0.036 zeros= 0% [ ▁▂▆█████▃▁ ] [ ▃█▇▂ ] dim 0994 μ= +0.002 σ= 0.030 zeros= 0% [ ▂▅████▄▂ ] [ ▃██▃ ] dim 0995 μ= -0.014 σ= 0.034 zeros= 0% [ ▁▂▆████▇▃▁ ] [ ▆█ ] dim 0996 μ= -0.016 σ= 0.019 zeros= 0% [ ▁▆██▅▁ ] [ ██▂ ] dim 0997 μ= -0.011 σ= 0.024 zeros= 0% [ ▂████▄▁ ] [ ▃█▅ ] dim 0998 μ= +0.015 σ= 0.023 zeros= 0% [ ▁▄███▅▁ ] [ ▂█▆ ] dim 0999 μ= +0.018 σ= 0.024 zeros= 0% [ ▁▄███▆▂ ] [ ▅█▇▂ ] dim 1000 μ= +0.018 σ= 0.031 zeros= 0% [ ▃▇████▅▁ ] [ ▄█▆▃ ] dim 1001 μ= +0.002 σ= 0.034 zeros= 0% [ ▁▂▆████▅▃▁ ] [ ▁▇█▂ ] dim 1002 μ= -0.014 σ= 0.024 zeros= 0% [ ▃████▃▁ ] [ █▇ ] dim 1003 μ= +0.019 σ= 0.018 zeros= 0% [ ▁███▄ ] [ ▃█▄ ] dim 1004 μ= -0.005 σ= 0.025 zeros= 0% [ ▁▄███▆▁ ] [ ▇█▄ ] dim 1005 μ= +0.010 σ= 0.029 zeros= 0% [ ▁▃████▆▂▁ ] [ ▇█▄ ] dim 1006 μ= +0.011 σ= 0.028 zeros= 0% [ ▂████▆▂ ] [ ▇█▃ ] dim 1007 μ= -0.012 σ= 0.026 zeros= 0% [ ▁▃████▄▁ ] [ ▃█▆ ] dim 1008 μ= -0.003 σ= 0.025 zeros= 0% [ ▁▄███▇▁ ] [ ▆█▂ ] dim 1009 μ= +0.009 σ= 0.023 zeros= 0% [ ▁▆███▃▁ ] [ ▅██▁ ] dim 1010 μ= -0.002 σ= 0.033 zeros= 0% [ ▁▃█████▅▂▁ ] [ ▅█▇▂ ] dim 1011 μ= -0.002 σ= 0.033 zeros= 0% [ ▁▃▇████▄▁ ] [ ▃██▁ ] dim 1012 μ= +0.001 σ= 0.027 zeros= 0% [ ▁▄████▃▁ ] [ ▁█▆ ] dim 1013 μ= -0.000 σ= 0.021 zeros= 0% [ ▂███▅▁ ] [ ▄█▆ ] dim 1014 μ= -0.004 σ= 0.029 zeros= 0% [ ▂▆████▃▁ ] [ █ ] dim 1015 μ= -0.021 σ= 0.011 zeros= 0% [ ▃██ ] [ ▁█▄ ] dim 1016 μ= -0.002 σ= 0.021 zeros= 0% [ ▂███▅▁ ] [ ▃█ ] dim 1017 μ= -0.010 σ= 0.016 zeros= 0% [ ▂██▆▁ ] [ ▁█▇▄ ] dim 1018 μ= -0.012 σ= 0.028 zeros= 0% [ ▁▄████▅▁ ] [ ▇█▄ ] dim 1019 μ= -0.008 σ= 0.031 zeros= 0% [ ▁▄█████▃ ] [ ▂█▄ ] dim 1020 μ= -0.005 σ= 0.023 zeros= 0% [ ▁▄███▅▁ ] [ ▅█▅ ] dim 1021 μ= +0.032 σ= 0.028 zeros= 0% [ ▂▇███▆▂ ] [ ▄▇█▃ ] dim 1022 μ= +0.004 σ= 0.034 zeros= 0% [ ▁▂▇████▆▃▁ ] [ ▁▇█▄ ] dim 1023 μ= +0.008 σ= 0.031 zeros= 0% [ ▁▄████▆▂▁ ] smell vectors from /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec smell: sampling 2000 of 1778739 vectors for per-dim distribution... smell: 100/2000 ( 5%) 0.5s smell: 200/2000 ( 10%) 0.8s smell: 300/2000 ( 15%) 1.1s smell: 400/2000 ( 20%) 1.4s smell: 500/2000 ( 25%) 1.5s smell: 600/2000 ( 30%) 1.9s smell: 700/2000 ( 35%) 2.1s smell: 800/2000 ( 40%) 2.3s smell: 900/2000 ( 45%) 2.4s smell: 1000/2000 ( 50%) 2.6s smell: 1100/2000 ( 55%) 2.8s smell: 1200/2000 ( 60%) 3.0s smell: 1300/2000 ( 65%) 3.3s smell: 1400/2000 ( 70%) 3.5s smell: 1500/2000 ( 75%) 3.8s smell: 1600/2000 ( 80%) 3.9s smell: 1700/2000 ( 85%) 4.1s smell: 1800/2000 ( 90%) 4.3s smell: 1900/2000 ( 95%) 4.5s smell: 2000/2000 (100%) 4.7s smell: 3 degenerate dim(s) found in 4.8s: (OUTLIER_SPREAD: std of all dims: μ=0.027, σ=0.007, threshold=3.0σ) [ ▁▅█▇▅▂ ] dim 0585 μ= -0.034 σ= 0.049 zeros= 0% [ ▁▄▆██████▅▂▂ ] -> OUTLIER_SPREAD: this_std=0.0489, mean_std=0.0266, +3.2sigma vs threshold=3.0sigma [ ▁▄█▇▆▂ ] dim 0910 μ= -0.008 σ= 0.049 zeros= 0% [ ▁▃▅██████▇▃▁ ] -> OUTLIER_SPREAD: this_std=0.0487, mean_std=0.0266, +3.1sigma vs threshold=3.0sigma [ ▁▅██▆▃ ] dim 0971 μ= +0.016 σ= 0.048 zeros= 0% [ ▁▂▅███████▄▂▁ ] -> OUTLIER_SPREAD: this_std=0.0484, mean_std=0.0266, +3.1sigma vs threshold=3.0sigma smell: all 1024 dims: [ ▁█▅ ] dim 0000 μ= +0.002 σ= 0.025 zeros= 0% [ ▁▄███▆▁ ] [ ▄█▄ ] dim 0001 μ= +0.018 σ= 0.027 zeros= 0% [ ▂▅███▅▁ ] [ ▂▇█▄ ] dim 0002 μ= -0.007 σ= 0.033 zeros= 0% [ ▁▅████▆▃▁ ] [ ▅█▇ ] dim 0003 μ= +0.023 σ= 0.028 zeros= 0% [ ▁▆████▂ ] [ ▃█▆ ] dim 0004 μ= -0.018 σ= 0.027 zeros= 0% [ ▁▄███▆▂ ] [ ▂▅█▃ ] dim 0005 μ= -0.008 σ= 0.034 zeros= 0% [ ▂▅████▆▂▁ ] [ ▂█▃ ] dim 0006 μ= -0.000 σ= 0.020 zeros= 0% [ ▃███▂ ] [ ▇█ ] dim 0007 μ= -0.030 σ= 0.021 zeros= 0% [ ▁▆██▇▁ ] [ █▄ ] dim 0008 μ= -0.018 σ= 0.019 zeros= 0% [ ▂███▃ ] [ ▃█▇▃ ] dim 0009 μ= +0.008 σ= 0.029 zeros= 0% [ ▁▄████▃▁ ] [ ▁▅█▅ ] dim 0010 μ= +0.015 σ= 0.032 zeros= 0% [ ▁▃████▅▂ ] [ ▄█▇▃ ] dim 0011 μ= -0.012 σ= 0.036 zeros= 0% [ ▁▃▇████▆▃▁ ] [ ▆█ ] dim 0012 μ= +0.012 σ= 0.019 zeros= 0% [ ▄██▆▁ ] [ ██ ] dim 0013 μ= -0.009 σ= 0.021 zeros= 0% [ ▁▆██▇▂ ] [ ▄██▄ ] dim 0014 μ= +0.007 σ= 0.035 zeros= 0% [ ▁▂▇████▅▂ ] [ ▃█▂ ] dim 0015 μ= -0.001 σ= 0.021 zeros= 0% [ ▃███▃ ] [ ▅█▅ ] dim 0016 μ= +0.001 σ= 0.028 zeros= 0% [ ▁▆███▆▂▁ ] [ ▁▆█▅ ] dim 0017 μ= +0.014 σ= 0.031 zeros= 0% [ ▁▄████▆▂ ] [ ▂██▄ ] dim 0018 μ= +0.013 σ= 0.037 zeros= 0% [ ▁▂▅█████▄▁ ] [ ▄█▇▂ ] dim 0019 μ= +0.006 σ= 0.030 zeros= 0% [ ▁▅████▃▁ ] [ ▅█▂ ] dim 0020 μ= +0.013 σ= 0.024 zeros= 0% [ ▁▆███▂ ] [ ██ ] dim 0021 μ= +0.009 σ= 0.021 zeros= 0% [ ▁▇██▇▁ ] [ ▅█▅ ] dim 0022 μ= +0.002 σ= 0.035 zeros= 0% [ ▁▃▇████▅▁▁ ] [ ▂▆██▆▂ ] dim 0023 μ= -0.008 σ= 0.046 zeros= 0% [ ▁▂▅██████▆▄▁ ] [ ▁▇█▄ ] dim 0024 μ= -0.005 σ= 0.032 zeros= 0% [ ▁▄████▇▃▁ ] [ ▅█▄ ] dim 0025 μ= +0.018 σ= 0.027 zeros= 0% [ ▂▆███▆▁ ] [ █▇ ] dim 0026 μ= +0.027 σ= 0.024 zeros= 0% [ ▂███▇▂ ] [ ▇█▂ ] dim 0027 μ= -0.008 σ= 0.028 zeros= 0% [ ▁▃████▄▁ ] [ ▂█▆▁ ] dim 0028 μ= +0.027 σ= 0.030 zeros= 0% [ ▁▅████▃▁ ] [ ▄█▆ ] dim 0029 μ= +0.001 σ= 0.029 zeros= 0% [ ▂▆███▇▂ ] [ ▇█▁ ] dim 0030 μ= -0.009 σ= 0.025 zeros= 0% [ ▂▇███▃ ] [ █▆ ] dim 0031 μ= -0.013 σ= 0.019 zeros= 0% [ ▁▆██▄ ] [ ▂▆█▄ ] dim 0032 μ= +0.031 σ= 0.034 zeros= 0% [ ▂▆████▆▂▁ ] [ ▁█▇▂ ] dim 0033 μ= +0.031 σ= 0.028 zeros= 0% [ ▁▃████▄▁ ] [ ▅█▃ ] dim 0034 μ= -0.004 σ= 0.023 zeros= 0% [ ▁▅███▃ ] [ ▃█▅▂ ] dim 0035 μ= +0.008 σ= 0.033 zeros= 0% [ ▂▅████▅▂ ] [ ▂█▃ ] dim 0036 μ= +0.000 σ= 0.020 zeros= 0% [ ▂███▃ ] [ █▇▂ ] dim 0037 μ= -0.028 σ= 0.026 zeros= 0% [ ▂████▄▁ ] [ ▄█▃ ] dim 0038 μ= -0.002 σ= 0.020 zeros= 0% [ ▃███▂ ] [ ▅█▄ ] dim 0039 μ= +0.035 σ= 0.029 zeros= 0% [ ▁▃████▅▁ ] [ ▂█▇▅ ] dim 0040 μ= +0.010 σ= 0.037 zeros= 0% [ ▁▃▆████▇▃▁ ] [ █▅ ] dim 0041 μ= +0.004 σ= 0.017 zeros= 0% [ ▁▇██▃ ] [ ▄█▇ ] dim 0042 μ= -0.017 σ= 0.027 zeros= 0% [ ▁▄███▇▂ ] [ ▅█▂ ] dim 0043 μ= +0.013 σ= 0.026 zeros= 0% [ ▂▇███▃▁ ] [ ▆█▅ ] dim 0044 μ= -0.024 σ= 0.031 zeros= 0% [ ▁▃████▆▂▁ ] [ ▄█▂ ] dim 0045 μ= +0.016 σ= 0.025 zeros= 0% [ ▁▅███▄▁ ] [ ▅█ ] dim 0046 μ= +0.013 σ= 0.020 zeros= 0% [ ▁▄██▇▁ ] [ ▃█▇▁ ] dim 0047 μ= +0.005 σ= 0.031 zeros= 0% [ ▁▂▆████▄▁ ] [ ▄██▅ ] dim 0048 μ= +0.010 σ= 0.040 zeros= 0% [ ▂▃▇████▇▄▁ ] [ ▄█▆ ] dim 0049 μ= +0.022 σ= 0.028 zeros= 0% [ ▁▅███▆▂▁ ] [ ▆█▃ ] dim 0050 μ= +0.014 σ= 0.029 zeros= 0% [ ▁▃▇███▅▁ ] [ ▄█▅ ] dim 0051 μ= +0.000 σ= 0.029 zeros= 0% [ ▂▆███▇▂ ] [ █▅ ] dim 0052 μ= +0.005 σ= 0.016 zeros= 0% [ ▅██▂ ] [ ▃█▁ ] dim 0053 μ= -0.003 σ= 0.020 zeros= 0% [ ▃███▂ ] [ ▆█▂ ] dim 0054 μ= +0.014 σ= 0.024 zeros= 0% [ ▁▆███▃ ] [ ▄█▂ ] dim 0055 μ= +0.017 σ= 0.023 zeros= 0% [ ▁▄███▃ ] [ ▅█▅ ] dim 0056 μ= +0.018 σ= 0.030 zeros= 0% [ ▁▃▇███▇▂ ] [ ▂▅█▄ ] dim 0057 μ= +0.013 σ= 0.033 zeros= 0% [ ▁▅████▇▂▁ ] [ ▁▇█▄ ] dim 0058 μ= +0.012 σ= 0.032 zeros= 0% [ ▁▄████▇▁ ] [ ▂█▇▂ ] dim 0059 μ= +0.010 σ= 0.029 zeros= 0% [ ▁▄████▄▁ ] [ █▇ ] dim 0060 μ= +0.008 σ= 0.012 zeros= 0% [ ▂██▁ ] [ ▄█▅ ] dim 0061 μ= -0.017 σ= 0.029 zeros= 0% [ ▁▆███▇▃▁ ] [ ▂█▇▂ ] dim 0062 μ= -0.032 σ= 0.034 zeros= 0% [ ▂▆████▅▂▁ ] [ ▅█▃ ] dim 0063 μ= +0.015 σ= 0.024 zeros= 0% [ ▂▅███▃ ] [ ▄▇█▄ ] dim 0064 μ= -0.011 σ= 0.031 zeros= 0% [ ▁▄████▅▁ ] [ ▃██ ] dim 0065 μ= +0.005 σ= 0.027 zeros= 0% [ ▁▄████▃ ] [ ▇█ ] dim 0066 μ= +0.010 σ= 0.021 zeros= 0% [ ▁▆██▇▂ ] [ ▂▆█▆ ] dim 0067 μ= -0.004 σ= 0.037 zeros= 0% [ ▁▂▅█████▄▂ ] [ ██ ] dim 0068 μ= +0.010 σ= 0.023 zeros= 0% [ ▂▇███▂ ] [ ▅█ ] dim 0069 μ= +0.013 σ= 0.016 zeros= 0% [ ▃██▆ ] [ ▆█ ] dim 0070 μ= -0.008 σ= 0.025 zeros= 0% [ ▂▇███▃ ] [ ▃██▂ ] dim 0071 μ= +0.009 σ= 0.030 zeros= 0% [ ▁▄████▄▁ ] [ ██▁ ] dim 0072 μ= +0.013 σ= 0.020 zeros= 0% [ ▁▅███▂ ] [ █▅ ] dim 0073 μ= +0.007 σ= 0.014 zeros= 0% [ ▄██▂ ] [ ▂█▇▁ ] dim 0074 μ= -0.012 σ= 0.032 zeros= 0% [ ▂▅████▅▁ ] [ ▅█▁ ] dim 0075 μ= -0.005 σ= 0.023 zeros= 0% [ ▁▅███▃ ] [ ▂█ ] dim 0076 μ= -0.002 σ= 0.020 zeros= 0% [ ▃███▂ ] [ ▃██▃ ] dim 0077 μ= -0.010 σ= 0.040 zeros= 0% [ ▁▃▇█████▄▁ ] [ ▅█▁ ] dim 0078 μ= +0.014 σ= 0.022 zeros= 0% [ ▁▅███▂ ] [ ▁█▇▁ ] dim 0079 μ= +0.010 σ= 0.027 zeros= 0% [ ▁▃████▄▁ ] [ █▇ ] dim 0080 μ= -0.013 σ= 0.014 zeros= 0% [ ▃██▂ ] [ ▇█▁ ] dim 0081 μ= +0.012 σ= 0.024 zeros= 0% [ ▂▇███▃ ] [ ▅█▇▆▁ ] dim 0082 μ= +0.014 σ= 0.038 zeros= 0% [ ▁▂▇█████▄▁▁ ] [ ▇█▂ ] dim 0083 μ= +0.014 σ= 0.024 zeros= 0% [ ▁▆███▃▁ ] [ ▁██▄ ] dim 0084 μ= +0.013 σ= 0.033 zeros= 0% [ ▂▅████▆▂▁ ] [ ▅█▂ ] dim 0085 μ= -0.003 σ= 0.023 zeros= 0% [ ▁▄███▃▁ ] [ ▅██ ] dim 0086 μ= -0.019 σ= 0.031 zeros= 0% [ ▁▂▇████▃▁ ] [ ▇█▁ ] dim 0087 μ= +0.011 σ= 0.024 zeros= 0% [ ▂▇███▂ ] [ ▁██▁ ] dim 0088 μ= -0.010 σ= 0.027 zeros= 0% [ ▁▃████▄▁ ] [ ▄█▇▁ ] dim 0089 μ= +0.024 σ= 0.032 zeros= 0% [ ▃▇████▄▁ ] [ ▆█▅▂ ] dim 0090 μ= +0.002 σ= 0.035 zeros= 0% [ ▁▄█████▄▂ ] [ ▅█ ] dim 0091 μ= +0.031 σ= 0.020 zeros= 0% [ ▁▅██▆▁ ] [ ▁▆█▅ ] dim 0092 μ= +0.036 σ= 0.033 zeros= 0% [ ▁▄████▇▃▁ ] [ ▁▆█▅ ] dim 0093 μ= -0.004 σ= 0.036 zeros= 0% [ ▂▅████▇▃▁ ] [ ▃█▅ ] dim 0094 μ= +0.001 σ= 0.027 zeros= 0% [ ▁▅███▆▂ ] [ ▇█ ] dim 0095 μ= -0.011 σ= 0.013 zeros= 0% [ ▂██▂ ] [ ▆██▃ ] dim 0096 μ= +0.005 σ= 0.032 zeros= 0% [ ▂▇████▄▁ ] [ ▆█▃ ] dim 0097 μ= -0.004 σ= 0.024 zeros= 0% [ ▁▅███▃▁ ] [ ▂█▆ ] dim 0098 μ= +0.005 σ= 0.025 zeros= 0% [ ▁▃███▇▂ ] [ ▆█▁ ] dim 0099 μ= -0.006 σ= 0.020 zeros= 0% [ ▁▄███▂ ] [ ▁█▄ ] dim 0100 μ= +0.003 σ= 0.022 zeros= 0% [ ▃███▄▁ ] [ ▃█▁ ] dim 0101 μ= -0.022 σ= 0.021 zeros= 0% [ ▃███▃ ] [ ██▁ ] dim 0102 μ= -0.009 σ= 0.024 zeros= 0% [ ▂▇███▃ ] [ ▁█▇ ] dim 0103 μ= +0.007 σ= 0.023 zeros= 0% [ ▂███▇▁ ] [ ██▃ ] dim 0104 μ= +0.012 σ= 0.026 zeros= 0% [ ▃████▃▁ ] [ ▃█▇▁ ] dim 0105 μ= +0.007 σ= 0.028 zeros= 0% [ ▁▄████▃▁ ] [ ▂██▂ ] dim 0106 μ= +0.009 σ= 0.029 zeros= 0% [ ▁▄████▄▁ ] [ ▂█ ] dim 0107 μ= -0.003 σ= 0.019 zeros= 0% [ ▂███▂ ] [ ▅██▃ ] dim 0108 μ= -0.016 σ= 0.037 zeros= 0% [ ▁▃█████▆▂ ] [ ▇█ ] dim 0109 μ= +0.009 σ= 0.022 zeros= 0% [ ▂▆██▇▁ ] [ █▇ ] dim 0110 μ= +0.007 σ= 0.022 zeros= 0% [ ▂███▆▁ ] [ █▄ ] dim 0111 μ= +0.024 σ= 0.019 zeros= 0% [ ▁███▃ ] [ ▁█▆ ] dim 0112 μ= +0.007 σ= 0.025 zeros= 0% [ ▃████▂ ] [ █▄ ] dim 0113 μ= -0.015 σ= 0.016 zeros= 0% [ ▅██▃ ] [ ▁▇█▄ ] dim 0114 μ= -0.006 σ= 0.037 zeros= 0% [ ▁▂▆████▇▄▁ ] [ ▄██▃ ] dim 0115 μ= -0.013 σ= 0.034 zeros= 0% [ ▃▆████▆▂ ] [ █▆ ] dim 0116 μ= +0.007 σ= 0.018 zeros= 0% [ ▁▅██▄ ] [ ▄█ ] dim 0117 μ= -0.007 σ= 0.016 zeros= 0% [ ▃██▆ ] [ ▃█▄▂ ] dim 0118 μ= -0.014 σ= 0.033 zeros= 0% [ ▂▅████▅▁ ] [ ▂██▂ ] dim 0119 μ= -0.012 σ= 0.028 zeros= 0% [ ▁▄████▃▁ ] [ ▄██▃ ] dim 0120 μ= -0.033 σ= 0.037 zeros= 0% [ ▁▃▆████▇▃▁ ] [ ▆█▂ ] dim 0121 μ= +0.013 σ= 0.025 zeros= 0% [ ▂▇███▃▁ ] [ ▂█ ] dim 0122 μ= -0.003 σ= 0.017 zeros= 0% [ ▁██▇▁ ] [ ▂█▅ ] dim 0123 μ= +0.004 σ= 0.023 zeros= 0% [ ▃███▅▁ ] [ █▆ ] dim 0124 μ= -0.014 σ= 0.021 zeros= 0% [ ▂███▅▁ ] [ ▄▇██▂ ] dim 0125 μ= -0.004 σ= 0.045 zeros= 0% [ ▁▂▄██████▇▃▁ ] [ █▃ ] dim 0126 μ= +0.021 σ= 0.017 zeros= 0% [ ▁███▂ ] [ ▃█▃ ] dim 0127 μ= -0.020 σ= 0.023 zeros= 0% [ ▃███▄▁ ] [ ▄█▅ ] dim 0128 μ= -0.019 σ= 0.030 zeros= 0% [ ▁▂▇███▇▃ ] [ ▃▆█▄ ] dim 0129 μ= -0.005 σ= 0.039 zeros= 0% [ ▁▂▅█████▄▁▁ ] [ ▇█▁ ] dim 0130 μ= -0.028 σ= 0.023 zeros= 0% [ ▁▆███▂ ] [ ▆█▅ ] dim 0131 μ= -0.001 σ= 0.028 zeros= 0% [ ▂▇███▆▂ ] [ ▂█▇ ] dim 0132 μ= +0.006 σ= 0.026 zeros= 0% [ ▁▃███▇▂ ] [ █▆ ] dim 0133 μ= +0.007 σ= 0.014 zeros= 0% [ ▄██▂ ] [ ▂█▅ ] dim 0134 μ= +0.024 σ= 0.024 zeros= 0% [ ▃███▆▁ ] [ ▆█▄ ] dim 0135 μ= -0.005 σ= 0.033 zeros= 0% [ ▁▄████▇▂▁ ] [ ▄█▆▅ ] dim 0136 μ= +0.008 σ= 0.039 zeros= 0% [ ▂▃▇████▅▄▁ ] [ ▅█▅ ] dim 0137 μ= -0.024 σ= 0.029 zeros= 0% [ ▁▃████▆▂ ] [ ▄█▂ ] dim 0138 μ= +0.034 σ= 0.027 zeros= 0% [ ▂████▄▁ ] [ ▂██ ] dim 0139 μ= +0.007 σ= 0.028 zeros= 0% [ ▁▄████▃▁ ] [ ▁█▆ ] dim 0140 μ= +0.007 σ= 0.022 zeros= 0% [ ▂███▆▁ ] [ ██ ] dim 0141 μ= +0.007 σ= 0.023 zeros= 0% [ ▂███▆▁ ] [ █▇ ] dim 0142 μ= +0.009 σ= 0.015 zeros= 0% [ ▃██▃ ] [ ▃█▅ ] dim 0143 μ= +0.002 σ= 0.027 zeros= 0% [ ▁▅███▆▂ ] [ ▅██▃ ] dim 0144 μ= +0.006 σ= 0.035 zeros= 0% [ ▁▃▇████▆▂ ] [ █▄ ] dim 0145 μ= -0.018 σ= 0.017 zeros= 0% [ ▁███▂ ] [ ▁▇█▅ ] dim 0146 μ= +0.015 σ= 0.033 zeros= 0% [ ▁▄████▇▂▁ ] [ ▄█▅▁ ] dim 0147 μ= +0.025 σ= 0.029 zeros= 0% [ ▁▅████▃▁ ] [ ▂█ ] dim 0148 μ= -0.003 σ= 0.017 zeros= 0% [ ▂███▁ ] [ ▂██ ] dim 0149 μ= -0.014 σ= 0.024 zeros= 0% [ ▁▃███▇▂ ] [ ▂██▃ ] dim 0150 μ= -0.010 σ= 0.035 zeros= 0% [ ▁▂▆████▇▂ ] [ ▃▇█▆ ] dim 0151 μ= +0.011 σ= 0.038 zeros= 0% [ ▁▃▆████▇▃▁ ] [ █▄ ] dim 0152 μ= +0.024 σ= 0.017 zeros= 0% [ ▁▇██▂ ] [ ▁█▇▂ ] dim 0153 μ= -0.029 σ= 0.028 zeros= 0% [ ▁▃████▄▁ ] [ ▁▆█▄ ] dim 0154 μ= -0.007 σ= 0.034 zeros= 0% [ ▁▅████▆▃▁ ] [ ██ ] dim 0155 μ= +0.009 σ= 0.014 zeros= 0% [ ▃██▂ ] [ ▅█▄ ] dim 0156 μ= -0.001 σ= 0.033 zeros= 0% [ ▁▃▇███▇▃▁ ] [ ▇█▂ ] dim 0157 μ= -0.008 σ= 0.025 zeros= 0% [ ▂████▃▁ ] [ ▄█▁ ] dim 0158 μ= -0.003 σ= 0.021 zeros= 0% [ ▃███▂ ] [ ▁▅█▅ ] dim 0159 μ= -0.004 σ= 0.035 zeros= 0% [ ▂▅████▇▃▁ ] [ ▆█▄ ] dim 0160 μ= -0.003 σ= 0.026 zeros= 0% [ ▁▆███▆▁ ] [ ▁▇█▅ ] dim 0161 μ= -0.005 σ= 0.033 zeros= 0% [ ▂▄████▇▂▁ ] [ ▅█▃ ] dim 0162 μ= -0.004 σ= 0.024 zeros= 0% [ ▁▅███▃▁ ] [ ▃█▅ ] dim 0163 μ= +0.002 σ= 0.027 zeros= 0% [ ▁▅███▆▂ ] [ ▆█▃ ] dim 0164 μ= +0.033 σ= 0.031 zeros= 0% [ ▁▄████▅▂ ] [ ▁█▆▁ ] dim 0165 μ= -0.012 σ= 0.027 zeros= 0% [ ▁▃████▃▁ ] [ ▂██▃ ] dim 0166 μ= +0.011 σ= 0.033 zeros= 0% [ ▂▅████▇▂ ] [ ▄█ ] dim 0167 μ= -0.007 σ= 0.016 zeros= 0% [ ▂██▅ ] [ █▃ ] dim 0168 μ= +0.004 σ= 0.015 zeros= 0% [ ▆██▂ ] [ ▆█▅ ] dim 0169 μ= -0.001 σ= 0.029 zeros= 0% [ ▂▆███▆▂ ] [ ▅█▆ ] dim 0170 μ= +0.022 σ= 0.031 zeros= 0% [ ▁▂▆████▃▁ ] [ ▁▇█▂ ] dim 0171 μ= -0.008 σ= 0.028 zeros= 0% [ ▃████▄▁ ] [ ▇█▂ ] dim 0172 μ= -0.007 σ= 0.024 zeros= 0% [ ▂▆███▃ ] [ ▂█ ] dim 0173 μ= -0.005 σ= 0.016 zeros= 0% [ ▂██▆▁ ] [ ▄█▅ ] dim 0174 μ= -0.019 σ= 0.027 zeros= 0% [ ▁▅███▇▂ ] [ ▂█▅▁ ] dim 0175 μ= -0.014 σ= 0.031 zeros= 0% [ ▂▅████▄▁ ] [ ▁█▃ ] dim 0176 μ= +0.000 σ= 0.019 zeros= 0% [ ▂███▂ ] [ ▁██▁ ] dim 0177 μ= +0.010 σ= 0.027 zeros= 0% [ ▃████▃▁ ] [ ▁█▄ ] dim 0178 μ= +0.022 σ= 0.022 zeros= 0% [ ▃███▅▁ ] [ ▆█▅ ] dim 0179 μ= -0.020 σ= 0.033 zeros= 0% [ ▁▃█████▃▁ ] [ █▇ ] dim 0180 μ= +0.009 σ= 0.025 zeros= 0% [ ▃████▃ ] [ ▅█▂ ] dim 0181 μ= -0.002 σ= 0.026 zeros= 0% [ ▁▆███▅▁ ] [ ▆█▂ ] dim 0182 μ= -0.029 σ= 0.027 zeros= 0% [ ▃████▄▁ ] [ ▄▆█▄▁ ] dim 0183 μ= -0.003 σ= 0.044 zeros= 0% [ ▁▃▇█████▆▃▁ ] [ ▄██▃ ] dim 0184 μ= +0.007 σ= 0.033 zeros= 0% [ ▁▂▆████▆▁ ] [ ▃█▅ ] dim 0185 μ= -0.018 σ= 0.030 zeros= 0% [ ▂▆████▃ ] [ ▄█ ] dim 0186 μ= -0.004 σ= 0.019 zeros= 0% [ ▃███▁ ] [ ▂█▆ ] dim 0187 μ= +0.005 σ= 0.023 zeros= 0% [ ▂███▆▂ ] [ ▄█ ] dim 0188 μ= +0.034 σ= 0.018 zeros= 0% [ ▃██▇▁ ] [ ▁▅█▅ ] dim 0189 μ= +0.017 σ= 0.041 zeros= 0% [ ▁▃▆█████▅▂▁ ] [ ▄██▃ ] dim 0190 μ= -0.012 σ= 0.036 zeros= 0% [ ▁▃▆████▆▂ ] [ ▁██▅▁ ] dim 0191 μ= -0.004 σ= 0.035 zeros= 0% [ ▂▅█████▄▁ ] [ ▅█▃ ] dim 0192 μ= -0.022 σ= 0.028 zeros= 0% [ ▂▆███▆▁ ] [ ▆█▆ ] dim 0193 μ= +0.001 σ= 0.032 zeros= 0% [ ▁▂█████▃▁ ] [ ▂█▇▂ ] dim 0194 μ= -0.011 σ= 0.029 zeros= 0% [ ▁▅████▅▁ ] [ ▂█▇▁ ] dim 0195 μ= +0.027 σ= 0.026 zeros= 0% [ ▁▃████▂ ] [ ▂█▇ ] dim 0196 μ= +0.026 σ= 0.023 zeros= 0% [ ▃███▇▁ ] [ █▆ ] dim 0197 μ= -0.013 σ= 0.016 zeros= 0% [ ▄██▃ ] [ ▂█▅ ] dim 0198 μ= +0.004 σ= 0.024 zeros= 0% [ ▃███▆▁ ] [ ▅█▅ ] dim 0199 μ= +0.019 σ= 0.030 zeros= 0% [ ▂▇███▇▂▁ ] [ ▃█▇ ] dim 0200 μ= +0.003 σ= 0.031 zeros= 0% [ ▁▂▆████▃▁ ] [ ▆█ ] dim 0201 μ= -0.009 σ= 0.016 zeros= 0% [ ▃██▅ ] [ ▃█▄ ] dim 0202 μ= +0.001 σ= 0.023 zeros= 0% [ ▁▃███▄▁ ] [ ▂█▆▁ ] dim 0203 μ= +0.028 σ= 0.029 zeros= 0% [ ▁▄████▃▁ ] [ ▅█▄ ] dim 0204 μ= -0.001 σ= 0.032 zeros= 0% [ ▁▃█████▃▁ ] [ ▆█▂ ] dim 0205 μ= +0.013 σ= 0.025 zeros= 0% [ ▂▆███▃▁ ] [ ▂█▅ ] dim 0206 μ= +0.004 σ= 0.024 zeros= 0% [ ▃███▆▁ ] [ ▂▆█▅ ] dim 0207 μ= +0.011 σ= 0.033 zeros= 0% [ ▁▅████▆▂▁ ] [ ▅█ ] dim 0208 μ= -0.028 σ= 0.018 zeros= 0% [ ▄██▆▁ ] [ ▃█▄ ] dim 0209 μ= +0.018 σ= 0.023 zeros= 0% [ ▁▅███▃▁ ] [ ▄█ ] dim 0210 μ= -0.009 σ= 0.014 zeros= 0% [ ▂██▃ ] [ ▄█▅ ] dim 0211 μ= +0.001 σ= 0.031 zeros= 0% [ ▂▇███▇▃▁ ] [ ▅█▅ ] dim 0212 μ= +0.015 σ= 0.031 zeros= 0% [ ▁▃████▇▁▁ ] [ ▅█▄ ] dim 0213 μ= -0.003 σ= 0.025 zeros= 0% [ ▁▆███▄▁ ] [ ▁██▄ ] dim 0214 μ= -0.003 σ= 0.032 zeros= 0% [ ▁▃████▇▃▁ ] [ ▅█▄ ] dim 0215 μ= -0.000 σ= 0.027 zeros= 0% [ ▁▅███▅▂ ] [ ██▃ ] dim 0216 μ= -0.007 σ= 0.027 zeros= 0% [ ▃████▄▁ ] [ ▄█▆ ] dim 0217 μ= +0.001 σ= 0.032 zeros= 0% [ ▂▇████▃▁ ] [ █ ] dim 0218 μ= -0.001 σ= 0.016 zeros= 0% [ ▁███▁ ] [ ▂█▇▂ ] dim 0219 μ= +0.008 σ= 0.031 zeros= 0% [ ▁▅████▅▁ ] [ ▃█▄ ] dim 0220 μ= +0.022 σ= 0.030 zeros= 0% [ ▂▆████▃▁ ] [ ██▂ ] dim 0221 μ= -0.007 σ= 0.023 zeros= 0% [ ▁▆███▃ ] [ ▅█▄ ] dim 0222 μ= -0.002 σ= 0.026 zeros= 0% [ ▁▅███▄▁ ] [ ▁█▇ ] dim 0223 μ= +0.008 σ= 0.024 zeros= 0% [ ▂████▂ ] [ ▆█▆ ] dim 0224 μ= +0.018 σ= 0.031 zeros= 0% [ ▁▃████▇▃ ] [ ▁▇█▂ ] dim 0225 μ= -0.010 σ= 0.028 zeros= 0% [ ▁▃████▃▁ ] [ ▃█▄ ] dim 0226 μ= +0.001 σ= 0.028 zeros= 0% [ ▁▅███▆▂ ] [ ▂█▇▁ ] dim 0227 μ= -0.032 σ= 0.030 zeros= 0% [ ▁▅████▄▁ ] [ ▁▆█▄▁ ] dim 0228 μ= +0.037 σ= 0.038 zeros= 0% [ ▂▅█████▄▁ ] [ ▁█▅ ] dim 0229 μ= +0.004 σ= 0.023 zeros= 0% [ ▃███▅▁ ] [ █▇ ] dim 0230 μ= +0.006 σ= 0.019 zeros= 0% [ ▁▆██▄ ] [ ▂█▄ ] dim 0231 μ= -0.018 σ= 0.024 zeros= 0% [ ▄███▅▁ ] [ ▁██▁ ] dim 0232 μ= +0.029 σ= 0.025 zeros= 0% [ ▃████▃ ] [ ██▂ ] dim 0233 μ= -0.028 σ= 0.026 zeros= 0% [ ▂████▄▁ ] [ ▅█▇ ] dim 0234 μ= +0.039 σ= 0.031 zeros= 0% [ ▁▂████▇▂▁ ] [ ▁█▄ ] dim 0235 μ= +0.002 σ= 0.021 zeros= 0% [ ▂███▃ ] [ ▅█▆▂ ] dim 0236 μ= +0.021 σ= 0.039 zeros= 0% [ ▁▂▅█████▄▂▁ ] [ ██▁ ] dim 0237 μ= -0.009 σ= 0.022 zeros= 0% [ ▂▆███▂ ] [ ▁█▆▂ ] dim 0238 μ= -0.010 σ= 0.029 zeros= 0% [ ▁▃████▄▁ ] [ ▄█▆ ] dim 0239 μ= -0.018 σ= 0.028 zeros= 0% [ ▁▆███▇▂ ] [ ▄█▂ ] dim 0240 μ= +0.017 σ= 0.024 zeros= 0% [ ▁▅███▃▁ ] [ ▃██▄ ] dim 0241 μ= +0.030 σ= 0.039 zeros= 0% [ ▁▃▇█████▃▁ ] [ ▂█▅ ] dim 0242 μ= +0.003 σ= 0.025 zeros= 0% [ ▁▄███▆▁ ] [ ▅█ ] dim 0243 μ= -0.006 σ= 0.020 zeros= 0% [ ▄██▇▁ ] [ ▁▇█▄ ] dim 0244 μ= -0.007 σ= 0.034 zeros= 0% [ ▂▄████▇▃▁ ] [ ▂█▆▁ ] dim 0245 μ= +0.004 σ= 0.032 zeros= 0% [ ▂▆████▃▁ ] [ █▃ ] dim 0246 μ= -0.016 σ= 0.018 zeros= 0% [ ▁▆██▃ ] [ ▄█▄ ] dim 0247 μ= -0.038 σ= 0.035 zeros= 0% [ ▁▃▆███▇▃▂▁ ] [ ▃██▅ ] dim 0248 μ= +0.010 σ= 0.035 zeros= 0% [ ▁▃▆████▆▂▁ ] [ ▅█▄ ] dim 0249 μ= -0.021 σ= 0.033 zeros= 0% [ ▁▃█████▄▁ ] [ ▃█▆ ] dim 0250 μ= +0.002 σ= 0.023 zeros= 0% [ ▃███▅▁ ] [ █ ] dim 0251 μ= +0.022 σ= 0.015 zeros= 0% [ ▅██▁ ] [ ▆█▁ ] dim 0252 μ= -0.005 σ= 0.023 zeros= 0% [ ▁▅███▃ ] [ █▅ ] dim 0253 μ= -0.015 σ= 0.023 zeros= 0% [ ▃███▅▁ ] [ ▃█▆ ] dim 0254 μ= +0.023 σ= 0.027 zeros= 0% [ ▁▄███▇▂ ] [ ▃▆█▂ ] dim 0255 μ= -0.011 σ= 0.036 zeros= 0% [ ▁▃▆████▆▃▁ ] [ ▁▄██▅▁ ] dim 0256 μ= -0.014 σ= 0.045 zeros= 0% [ ▁▃▆██████▄▂▁ ] [ ▅█▃ ] dim 0257 μ= -0.001 σ= 0.030 zeros= 0% [ ▂▅███▆▂▁ ] [ ▄█▅ ] dim 0258 μ= +0.003 σ= 0.028 zeros= 0% [ ▁▅███▇▂▁ ] [ █▃ ] dim 0259 μ= +0.003 σ= 0.018 zeros= 0% [ ▁▇██▃ ] [ ▂██▅ ] dim 0260 μ= -0.003 σ= 0.033 zeros= 0% [ ▁▄█████▃▁ ] [ █▁ ] dim 0261 μ= -0.020 σ= 0.016 zeros= 0% [ ▁▇██▁ ] [ █▇ ] dim 0262 μ= +0.029 σ= 0.019 zeros= 0% [ ▁▆██▅▁ ] [ ██ ] dim 0263 μ= -0.010 σ= 0.018 zeros= 0% [ ▅██▆▁ ] [ ▂██▂ ] dim 0264 μ= -0.013 σ= 0.030 zeros= 0% [ ▁▅████▃▁ ] [ ▆█ ] dim 0265 μ= -0.010 σ= 0.026 zeros= 0% [ ▂▇███▃ ] [ ▂█▅ ] dim 0266 μ= +0.003 σ= 0.022 zeros= 0% [ ▂███▅▁ ] [ ▇█ ] dim 0267 μ= +0.009 σ= 0.018 zeros= 0% [ ▁▅██▅▁ ] [ ▁▆█▆▃ ] dim 0268 μ= +0.023 σ= 0.039 zeros= 0% [ ▁▁▄█████▆▂▁ ] [ ▃█▅ ] dim 0269 μ= +0.003 σ= 0.029 zeros= 0% [ ▁▅███▇▂▁ ] [ ▆█▆ ] dim 0270 μ= -0.002 σ= 0.031 zeros= 0% [ ▁▃█████▃ ] [ ▆█▃ ] dim 0271 μ= -0.007 σ= 0.027 zeros= 0% [ ▂████▄▁ ] [ ▇█ ] dim 0272 μ= -0.010 σ= 0.021 zeros= 0% [ ▁▆██▆▂ ] [ ▂▇█▅ ] dim 0273 μ= +0.014 σ= 0.037 zeros= 0% [ ▁▂▅█████▃▁ ] [ ▂█▇▁ ] dim 0274 μ= +0.009 σ= 0.032 zeros= 0% [ ▂▄████▄▂ ] [ ▄█▆ ] dim 0275 μ= +0.021 σ= 0.026 zeros= 0% [ ▁▅███▆▂ ] [ ▇█ ] dim 0276 μ= -0.009 σ= 0.022 zeros= 0% [ ▁▇███▂ ] [ ▃▇█ ] dim 0277 μ= +0.007 σ= 0.027 zeros= 0% [ ▄████▃ ] [ ▇█ ] dim 0278 μ= -0.010 σ= 0.022 zeros= 0% [ ▁▆██▇▁ ] [ ▅█▅ ] dim 0279 μ= +0.020 σ= 0.033 zeros= 0% [ ▁▃█████▃▁ ] [ ▁█▇ ] dim 0280 μ= +0.026 σ= 0.023 zeros= 0% [ ▂███▇▁ ] [ ▂█▆ ] dim 0281 μ= +0.003 σ= 0.025 zeros= 0% [ ▁▄███▆▁ ] [ █▆ ] dim 0282 μ= +0.006 σ= 0.018 zeros= 0% [ ▁▆██▃ ] [ ▆█▃ ] dim 0283 μ= -0.007 σ= 0.030 zeros= 0% [ ▁▄████▅▁ ] [ ▄██▃ ] dim 0284 μ= -0.052 σ= 0.032 zeros= 0% [ ▂▅████▄▂ ] [ ▃█▇▂ ] dim 0285 μ= +0.007 σ= 0.032 zeros= 0% [ ▂▅████▄▁ ] [ ▁▇█▄ ] dim 0286 μ= -0.008 σ= 0.031 zeros= 0% [ ▁▄████▆▂ ] [ ▁█▄ ] dim 0287 μ= +0.005 σ= 0.021 zeros= 0% [ ▂███▅▁ ] [ ▆██▅ ] dim 0288 μ= -0.012 σ= 0.043 zeros= 0% [ ▁▂▄██████▅▂▁ ] [ ▇█ ] dim 0289 μ= +0.010 σ= 0.024 zeros= 0% [ ▂████▃ ] [ ▂██▄ ] dim 0290 μ= +0.014 σ= 0.035 zeros= 0% [ ▂▄████▇▃▁ ] [ █▃ ] dim 0291 μ= -0.015 σ= 0.014 zeros= 0% [ ▄██▁ ] [ ▄█▆▁ ] dim 0292 μ= +0.004 σ= 0.033 zeros= 0% [ ▁▃▇████▄▂ ] [ █▂ ] dim 0293 μ= +0.020 σ= 0.019 zeros= 0% [ ▂███▂ ] [ ▄█▃ ] dim 0294 μ= -0.005 σ= 0.026 zeros= 0% [ ▂▇███▄▁ ] [ █ ] dim 0295 μ= -0.001 σ= 0.012 zeros= 0% [ ▅█▆ ] [ ▃█▄ ] dim 0296 μ= +0.001 σ= 0.024 zeros= 0% [ ▁▄███▅▁ ] [ ▄█ ] dim 0297 μ= -0.004 σ= 0.017 zeros= 0% [ ▂██▇▁ ] [ ▆█▁ ] dim 0298 μ= -0.010 σ= 0.023 zeros= 0% [ ▂████▂ ] [ ▃█▅ ] dim 0299 μ= +0.002 σ= 0.027 zeros= 0% [ ▁▅███▅▂ ] [ ▅█▆ ] dim 0300 μ= -0.022 σ= 0.031 zeros= 0% [ ▁▃▇███▇▃ ] [ █▇ ] dim 0301 μ= +0.008 σ= 0.025 zeros= 0% [ ▃███▇▂ ] [ ▅██▄ ] dim 0302 μ= +0.007 σ= 0.036 zeros= 0% [ ▁▃▇████▆▂▁ ] [ █▂ ] dim 0303 μ= -0.018 σ= 0.017 zeros= 0% [ ▁▇██▂ ] [ ▄█▅ ] dim 0304 μ= -0.000 σ= 0.030 zeros= 0% [ ▁▂▆███▇▂▁ ] [ ▄█▇ ] dim 0305 μ= +0.022 σ= 0.033 zeros= 0% [ ▁▃▇████▄▁ ] [ ▃██▄ ] dim 0306 μ= +0.013 σ= 0.036 zeros= 0% [ ▁▂▅████▇▄▁ ] [ ██ ] dim 0307 μ= +0.010 σ= 0.016 zeros= 0% [ ▄██▄ ] [ ▄▇█▄ ] dim 0308 μ= +0.029 σ= 0.037 zeros= 0% [ ▁▃▇████▇▃▁ ] [ ▃█▆ ] dim 0309 μ= +0.003 σ= 0.030 zeros= 0% [ ▂▅███▇▂▁ ] [ █ ] dim 0310 μ= -0.002 σ= 0.010 zeros= 0% [ ▄█▃ ] [ █▆ ] dim 0311 μ= +0.007 σ= 0.013 zeros= 0% [ ▃██▁ ] [ ▆█▆▁ ] dim 0312 μ= +0.019 σ= 0.035 zeros= 0% [ ▁▄█████▄▁ ] [ █▅ ] dim 0313 μ= +0.004 σ= 0.020 zeros= 0% [ ▂███▄ ] [ ▁▅█▇▃ ] dim 0314 μ= +0.004 σ= 0.045 zeros= 0% [ ▁▃▅█████▇▄▂ ] [ ▂█▂ ] dim 0315 μ= -0.000 σ= 0.021 zeros= 0% [ ▃███▃▁ ] [ ▆█▃ ] dim 0316 μ= -0.025 σ= 0.025 zeros= 0% [ ▁▆███▄ ] [ ▄▆█▁ ] dim 0317 μ= -0.013 σ= 0.029 zeros= 0% [ ▁▄████▃▁ ] [ ▇█ ] dim 0318 μ= -0.010 σ= 0.015 zeros= 0% [ ▃██▄ ] [ ▃█▇▃ ] dim 0319 μ= +0.008 σ= 0.031 zeros= 0% [ ▂▅████▅▁ ] [ ▁█▆ ] dim 0320 μ= -0.014 σ= 0.025 zeros= 0% [ ▂███▇▂ ] [ ▄█ ] dim 0321 μ= -0.027 σ= 0.016 zeros= 0% [ ▂██▅ ] [ ▂█▇▅ ] dim 0322 μ= -0.007 σ= 0.037 zeros= 0% [ ▁▃▆█████▃▁ ] [ ▃██▇ ] dim 0323 μ= +0.014 σ= 0.034 zeros= 0% [ ▂▅█████▃▁ ] [ ▃█▁ ] dim 0324 μ= -0.023 σ= 0.019 zeros= 0% [ ▃███▂ ] [ ▂▇█▄ ] dim 0325 μ= +0.012 σ= 0.036 zeros= 0% [ ▁▂▅████▇▂▁ ] [ ▄█▁ ] dim 0326 μ= -0.005 σ= 0.024 zeros= 0% [ ▁▆███▃ ] [ ▃█ ] dim 0327 μ= -0.023 σ= 0.018 zeros= 0% [ ▂███▁ ] [ █ ] dim 0328 μ= +0.004 σ= 0.010 zeros= 0% [ ▂█▇ ] [ ▄█▇▁ ] dim 0329 μ= +0.004 σ= 0.031 zeros= 0% [ ▁▂▆████▃▁ ] [ ▃▅█▅▁ ] dim 0330 μ= +0.016 σ= 0.041 zeros= 0% [ ▁▂▆█████▅▂ ] [ ▃▅█▇▂ ] dim 0331 μ= -0.001 σ= 0.039 zeros= 0% [ ▂▆█████▆▂▁ ] [ █▂ ] dim 0332 μ= +0.022 σ= 0.020 zeros= 0% [ ▂███▃ ] [ ▅█▂ ] dim 0333 μ= -0.003 σ= 0.027 zeros= 0% [ ▂▆███▅▁ ] [ █ ] dim 0334 μ= +0.018 σ= 0.016 zeros= 0% [ ▁██▇▁ ] [ ▂█▄ ] dim 0335 μ= +0.003 σ= 0.024 zeros= 0% [ ▃███▅▁ ] [ ▅█▇▁ ] dim 0336 μ= +0.001 σ= 0.033 zeros= 0% [ ▁▃█████▄▁ ] [ ▃█▇ ] dim 0337 μ= -0.014 σ= 0.026 zeros= 0% [ ▁▄████▂▁ ] [ ▆█▁ ] dim 0338 μ= +0.011 σ= 0.029 zeros= 0% [ ▁▄████▄▁ ] [ ▃█▇▁ ] dim 0339 μ= +0.006 σ= 0.029 zeros= 0% [ ▁▅████▄▁ ] [ ▄█▅ ] dim 0340 μ= +0.001 σ= 0.031 zeros= 0% [ ▁▂▆████▃▁ ] [ ▃█▁ ] dim 0341 μ= +0.016 σ= 0.022 zeros= 0% [ ▁▄███▂ ] [ ▃█▆ ] dim 0342 μ= -0.017 σ= 0.026 zeros= 0% [ ▁▄███▆▂ ] [ █ ] dim 0343 μ= +0.000 σ= 0.014 zeros= 0% [ ▆██ ] [ ▅█▁ ] dim 0344 μ= +0.013 σ= 0.024 zeros= 0% [ ▂▆███▃ ] [ ▇█▂ ] dim 0345 μ= +0.014 σ= 0.026 zeros= 0% [ ▂▇███▄▁ ] [ ▂█ ] dim 0346 μ= -0.004 σ= 0.015 zeros= 0% [ ▁██▆▁ ] [ ▆█▃ ] dim 0347 μ= -0.024 σ= 0.031 zeros= 0% [ ▁▃████▆▃ ] [ ▁▅█▃ ] dim 0348 μ= -0.008 σ= 0.032 zeros= 0% [ ▁▄████▅▂ ] [ ▁▇█▅ ] dim 0349 μ= -0.026 σ= 0.030 zeros= 0% [ ▁▃████▆▂ ] [ ▄█ ] dim 0350 μ= +0.015 σ= 0.018 zeros= 0% [ ▃██▇▁ ] [ ▅█▅ ] dim 0351 μ= +0.019 σ= 0.028 zeros= 0% [ ▂▆███▆▂ ] [ ▅██▂ ] dim 0352 μ= +0.006 σ= 0.031 zeros= 0% [ ▂▅████▄▁ ] [ ▃█▆ ] dim 0353 μ= -0.016 σ= 0.027 zeros= 0% [ ▁▄███▇▂ ] [ ▃▆█▅ ] dim 0354 μ= +0.012 σ= 0.036 zeros= 0% [ ▁▂▅█████▂▁ ] [ ▇█ ] dim 0355 μ= -0.010 σ= 0.021 zeros= 0% [ ▁▆██▇▁ ] [ ▂▇█▄ ] dim 0356 μ= +0.032 σ= 0.034 zeros= 0% [ ▂▅████▆▂▁ ] [ ▄█▃ ] dim 0357 μ= +0.018 σ= 0.028 zeros= 0% [ ▂▆███▅▂ ] [ █ ] dim 0358 μ= -0.003 σ= 0.013 zeros= 0% [ ▇█▅ ] [ ▁▇█▁ ] dim 0359 μ= -0.011 σ= 0.026 zeros= 0% [ ▃████▃ ] [ ▆█▂ ] dim 0360 μ= +0.011 σ= 0.028 zeros= 0% [ ▁▃████▄▁ ] [ ▅▆█▂ ] dim 0361 μ= -0.014 σ= 0.035 zeros= 0% [ ▁▃▆████▆▂▁ ] [ ▅█ ] dim 0362 μ= -0.026 σ= 0.017 zeros= 0% [ ▂██▇▁ ] [ ▅█▅▁ ] dim 0363 μ= +0.022 σ= 0.031 zeros= 0% [ ▂▆████▃▁ ] [ ▂█▇▂ ] dim 0364 μ= +0.011 σ= 0.029 zeros= 0% [ ▁▄████▅▁ ] [ ▃█▇▃ ] dim 0365 μ= +0.030 σ= 0.031 zeros= 0% [ ▂▄████▅▂ ] [ ▃█▂ ] dim 0366 μ= -0.022 σ= 0.022 zeros= 0% [ ▃███▃ ] [ █▂ ] dim 0367 μ= +0.004 σ= 0.014 zeros= 0% [ ▅██▁ ] [ ▅█ ] dim 0368 μ= -0.006 σ= 0.022 zeros= 0% [ ▁▄███▂ ] [ ▆█ ] dim 0369 μ= +0.032 σ= 0.020 zeros= 0% [ ▁▅███▁ ] [ ▃█▁ ] dim 0370 μ= -0.002 σ= 0.020 zeros= 0% [ ▃███▃ ] [ ▅██▃ ] dim 0371 μ= +0.006 σ= 0.038 zeros= 0% [ ▁▄▇████▆▃ ] [ ▅█▅ ] dim 0372 μ= +0.020 σ= 0.035 zeros= 0% [ ▁▃▇████▄▁ ] [ ▅█▅ ] dim 0373 μ= -0.001 σ= 0.032 zeros= 0% [ ▁▃▇███▇▃▁ ] [ ▁█▃ ] dim 0374 μ= -0.018 σ= 0.020 zeros= 0% [ ▂███▄ ] [ ▁█▇▃ ] dim 0375 μ= +0.010 σ= 0.029 zeros= 0% [ ▁▄████▄▁ ] [ █▇ ] dim 0376 μ= -0.011 σ= 0.018 zeros= 0% [ ▅██▅▁ ] [ ▆█▄ ] dim 0377 μ= -0.005 σ= 0.027 zeros= 0% [ ▂▇███▄▁ ] [ ▄█▃ ] dim 0378 μ= -0.001 σ= 0.025 zeros= 0% [ ▁▅███▅▁ ] [ ▂█▅ ] dim 0379 μ= +0.003 σ= 0.026 zeros= 0% [ ▁▄███▇▁ ] [ ▅█▂ ] dim 0380 μ= -0.003 σ= 0.024 zeros= 0% [ ▁▅███▃▁ ] [ █▂ ] dim 0381 μ= +0.001 σ= 0.017 zeros= 0% [ ▁███▂ ] [ ▂▇█▄ ] dim 0382 μ= -0.008 σ= 0.030 zeros= 0% [ ▁▄████▅▁ ] [ ▅█▅▁ ] dim 0383 μ= +0.023 σ= 0.035 zeros= 0% [ ▁▃▇████▅▁▁ ] [ ▁██▂ ] dim 0384 μ= +0.010 σ= 0.027 zeros= 0% [ ▁▃████▄▁ ] [ ▃█▄ ] dim 0385 μ= +0.020 σ= 0.026 zeros= 0% [ ▁▄███▅▁ ] [ ▆█ ] dim 0386 μ= +0.011 σ= 0.024 zeros= 0% [ ▂▇███▂ ] [ ▆█ ] dim 0387 μ= -0.010 σ= 0.011 zeros= 0% [ ▁██▁ ] [ ▅██▅▂ ] dim 0388 μ= +0.011 σ= 0.044 zeros= 0% [ ▁▂▄██████▄▂▁ ] [ ▂█▇ ] dim 0389 μ= +0.007 σ= 0.027 zeros= 0% [ ▁▃████▃▁ ] [ ▂█▇ ] dim 0390 μ= +0.027 σ= 0.026 zeros= 0% [ ▁▄████▂ ] [ ▄█▅ ] dim 0391 μ= +0.000 σ= 0.031 zeros= 0% [ ▁▂▇████▃▁ ] [ ▃█▄ ] dim 0392 μ= +0.020 σ= 0.026 zeros= 0% [ ▁▄███▅▁ ] [ ▄▆█▄ ] dim 0393 μ= -0.009 σ= 0.040 zeros= 0% [ ▁▃▇█████▄▂ ] [ ▂█ ] dim 0394 μ= +0.017 σ= 0.017 zeros= 0% [ ▂██▇▁ ] [ ▁▇█▆▁ ] dim 0395 μ= -0.002 σ= 0.035 zeros= 0% [ ▁▄█████▄▁ ] [ ▂█▅ ] dim 0396 μ= -0.015 σ= 0.025 zeros= 0% [ ▁▃███▆▂ ] [ █▄ ] dim 0397 μ= +0.003 σ= 0.018 zeros= 0% [ ▁▇██▃ ] [ ▆█▆▁ ] dim 0398 μ= +0.000 σ= 0.038 zeros= 0% [ ▁▂▅█████▆▂▁ ] [ █▇ ] dim 0399 μ= -0.013 σ= 0.017 zeros= 0% [ ▅██▃ ] [ ▂▆█▅▁ ] dim 0400 μ= -0.003 σ= 0.038 zeros= 0% [ ▁▁▅█████▄▂▁ ] [ ▅█▆ ] dim 0401 μ= -0.018 σ= 0.030 zeros= 0% [ ▂▆████▃▁ ] [ ▄█▅ ] dim 0402 μ= +0.000 σ= 0.025 zeros= 0% [ ▁▅███▅▁ ] [ ▆█▂ ] dim 0403 μ= -0.005 σ= 0.027 zeros= 0% [ ▂▇███▅▁ ] [ ▂█▅ ] dim 0404 μ= +0.003 σ= 0.024 zeros= 0% [ ▄███▅▁ ] [ ▆█▅ ] dim 0405 μ= +0.016 σ= 0.030 zeros= 0% [ ▁▃████▆▂ ] [ ▃█ ] dim 0406 μ= +0.015 σ= 0.018 zeros= 0% [ ▃██▇▁ ] [ ▅█ ] dim 0407 μ= +0.012 σ= 0.018 zeros= 0% [ ▄██▆▁ ] [ ▃█▅ ] dim 0408 μ= +0.001 σ= 0.025 zeros= 0% [ ▁▄███▆▁ ] [ ▁██ ] dim 0409 μ= -0.012 σ= 0.025 zeros= 0% [ ▃████▃ ] [ ▃█▅ ] dim 0410 μ= -0.018 σ= 0.025 zeros= 0% [ ▁▅███▇▁ ] [ ▄█▅ ] dim 0411 μ= +0.001 σ= 0.029 zeros= 0% [ ▂▆███▇▂▁ ] [ ▄▇█▂ ] dim 0412 μ= +0.002 σ= 0.038 zeros= 0% [ ▂▄█████▅▂▁ ] [ ▆█▂ ] dim 0413 μ= -0.009 σ= 0.025 zeros= 0% [ ▂▇███▂▁ ] [ ▂██▄ ] dim 0414 μ= -0.009 σ= 0.027 zeros= 0% [ ▃████▃▁ ] [ ▆█▁ ] dim 0415 μ= -0.007 σ= 0.023 zeros= 0% [ ▁▆███▂ ] [ ▃▇█▇▁ ] dim 0416 μ= -0.004 σ= 0.038 zeros= 0% [ ▁▂▅█████▄▂▁ ] [ ▂██▂ ] dim 0417 μ= +0.008 σ= 0.028 zeros= 0% [ ▁▄████▃▁ ] [ █▅ ] dim 0418 μ= -0.015 σ= 0.021 zeros= 0% [ ▂███▅▁ ] [ ▁█ ] dim 0419 μ= -0.005 σ= 0.014 zeros= 0% [ ▁██▅ ] [ ▄█▇▁ ] dim 0420 μ= +0.003 σ= 0.035 zeros= 0% [ ▁▃▇████▅▂ ] [ ▄█▆ ] dim 0421 μ= -0.018 σ= 0.028 zeros= 0% [ ▁▆███▆▂ ] [ ▁██▃ ] dim 0422 μ= +0.012 σ= 0.027 zeros= 0% [ ▁▃████▅▁ ] [ ▄█▂ ] dim 0423 μ= +0.015 σ= 0.024 zeros= 0% [ ▁▆███▃▁ ] [ ▄█▂ ] dim 0424 μ= +0.016 σ= 0.021 zeros= 0% [ ▁▄███▂ ] [ ▃█▆▃ ] dim 0425 μ= -0.012 σ= 0.040 zeros= 0% [ ▁▃█████▇▃▁ ] [ █ ] dim 0426 μ= +0.018 σ= 0.013 zeros= 0% [ ▆█▅ ] [ ▅█▅▁ ] dim 0427 μ= +0.002 σ= 0.036 zeros= 0% [ ▁▃█████▅▂ ] [ ▅█▆▁ ] dim 0428 μ= +0.020 σ= 0.035 zeros= 0% [ ▁▄█████▄▁ ] [ ██ ] dim 0429 μ= +0.010 σ= 0.016 zeros= 0% [ ▃██▅ ] [ ▁█▇ ] dim 0430 μ= +0.008 σ= 0.026 zeros= 0% [ ▁▃████▃ ] [ ▅█▃ ] dim 0431 μ= +0.015 σ= 0.028 zeros= 0% [ ▂▇███▅▁ ] [ ▆█ ] dim 0432 μ= +0.010 σ= 0.022 zeros= 0% [ ▁▆██▇▂ ] [ ▂█▇▂ ] dim 0433 μ= -0.012 σ= 0.030 zeros= 0% [ ▁▅████▄▁ ] [ ▃█▆ ] dim 0434 μ= +0.002 σ= 0.025 zeros= 0% [ ▁▄███▆▁ ] [ █▅ ] dim 0435 μ= +0.006 σ= 0.017 zeros= 0% [ ▁▆██▃ ] [ ▂██▄ ] dim 0436 μ= -0.008 σ= 0.034 zeros= 0% [ ▂▅█████▂▁ ] [ ▁▇█▂ ] dim 0437 μ= +0.011 σ= 0.031 zeros= 0% [ ▁▄████▅▁ ] [ ▄█▃ ] dim 0438 μ= -0.001 σ= 0.023 zeros= 0% [ ▁▄███▄▁ ] [ ▄█▅ ] dim 0439 μ= -0.018 σ= 0.028 zeros= 0% [ ▁▅███▇▂▁ ] [ ▃█▆ ] dim 0440 μ= +0.004 σ= 0.028 zeros= 0% [ ▁▅████▂ ] [ ▅█▆▁ ] dim 0441 μ= +0.018 σ= 0.035 zeros= 0% [ ▂▄█████▃▁ ] [ ▇█ ] dim 0442 μ= +0.012 σ= 0.019 zeros= 0% [ ▅██▆▁ ] [ █▇ ] dim 0443 μ= -0.010 σ= 0.017 zeros= 0% [ ▄██▅ ] [ ▄█▇▇▃ ] dim 0444 μ= +0.018 σ= 0.044 zeros= 0% [ ▁▃██████▇▃▂ ] [ ▁█▅ ] dim 0445 μ= +0.006 σ= 0.021 zeros= 0% [ ▁███▆▁ ] [ ▆█▇ ] dim 0446 μ= +0.018 σ= 0.028 zeros= 0% [ ▂▇███▇▂ ] [ ▃█▄ ] dim 0447 μ= +0.021 σ= 0.025 zeros= 0% [ ▁▄███▆▁ ] [ ▃█▇▁ ] dim 0448 μ= -0.015 σ= 0.031 zeros= 0% [ ▂▆████▄▁ ] [ ▆█ ] dim 0449 μ= +0.012 σ= 0.020 zeros= 0% [ ▁▄██▇▁ ] [ █▄ ] dim 0450 μ= -0.017 σ= 0.020 zeros= 0% [ ▂███▃ ] [ █▇ ] dim 0451 μ= +0.007 σ= 0.023 zeros= 0% [ ▂███▆▂ ] [ ▂██▃ ] dim 0452 μ= -0.013 σ= 0.029 zeros= 0% [ ▁▄████▄▁ ] [ ▆█ ] dim 0453 μ= -0.008 σ= 0.018 zeros= 0% [ ▄██▆▁ ] [ █ ] dim 0454 μ= +0.000 σ= 0.014 zeros= 0% [ ▇██▁ ] [ ▅▆█▄ ] dim 0455 μ= +0.011 σ= 0.043 zeros= 0% [ ▂▄▇█████▅▂▁ ] [ ▆██▁ ] dim 0456 μ= -0.016 σ= 0.032 zeros= 0% [ ▁▂▆████▃▁ ] [ ▁██▃ ] dim 0457 μ= +0.012 σ= 0.029 zeros= 0% [ ▁▃████▄▁ ] [ ▆█▅ ] dim 0458 μ= +0.015 σ= 0.031 zeros= 0% [ ▁▃████▆▂ ] [ █▇ ] dim 0459 μ= -0.011 σ= 0.023 zeros= 0% [ ▂████▂ ] [ ▇█▂ ] dim 0460 μ= -0.008 σ= 0.025 zeros= 0% [ ▂▇███▃ ] [ ▂█ ] dim 0461 μ= -0.006 σ= 0.013 zeros= 0% [ ▁██▃ ] [ █▄ ] dim 0462 μ= -0.014 σ= 0.022 zeros= 0% [ ▂███▆▁ ] [ ▃█▅ ] dim 0463 μ= -0.017 σ= 0.035 zeros= 0% [ ▁▃█████▅▂ ] [ ▂▆█▆▂ ] dim 0464 μ= -0.020 σ= 0.043 zeros= 0% [ ▁▃▆█████▇▃▁ ] [ ▇█▂ ] dim 0465 μ= -0.007 σ= 0.026 zeros= 0% [ ▂▇███▄▁ ] [ ▂▇█▅▂ ] dim 0466 μ= -0.005 σ= 0.041 zeros= 0% [ ▁▃▅█████▄▂ ] [ ▂█▄ ] dim 0467 μ= +0.002 σ= 0.021 zeros= 0% [ ▂███▄▁ ] [ ▁█▅ ] dim 0468 μ= +0.005 σ= 0.022 zeros= 0% [ ▂███▅▁ ] [ ▃█▅ ] dim 0469 μ= -0.002 σ= 0.029 zeros= 0% [ ▁▂▇███▆▂ ] [ █▃ ] dim 0470 μ= -0.017 σ= 0.018 zeros= 0% [ ▁▇██▃ ] [ █ ] dim 0471 μ= +0.039 σ= 0.016 zeros= 0% [ ▁██▇▁ ] [ ▅█▃ ] dim 0472 μ= -0.004 σ= 0.027 zeros= 0% [ ▂▇███▄▁ ] [ █▃ ] dim 0473 μ= -0.016 σ= 0.016 zeros= 0% [ ▅██▂ ] [ ▄█ ] dim 0474 μ= +0.014 σ= 0.023 zeros= 0% [ ▁▅███▂ ] [ ▁▅█▇▁ ] dim 0475 μ= -0.000 σ= 0.039 zeros= 0% [ ▁▂▄█████▅▂ ] [ ▇█ ] dim 0476 μ= -0.010 σ= 0.021 zeros= 0% [ ▁▆██▇▁ ] [ ▃█ ] dim 0477 μ= -0.005 σ= 0.020 zeros= 0% [ ▃██▇▁ ] [ ▆█▃ ] dim 0478 μ= -0.024 σ= 0.025 zeros= 0% [ ▁▅███▄▁ ] [ ▄█▇▁ ] dim 0479 μ= +0.005 σ= 0.030 zeros= 0% [ ▁▂▅████▄▁ ] [ ▂▇█▅ ] dim 0480 μ= -0.008 σ= 0.031 zeros= 0% [ ▁▄████▅▂ ] [ ▂█▂ ] dim 0481 μ= +0.020 σ= 0.020 zeros= 0% [ ▂███▃ ] [ ▁█▇▂ ] dim 0482 μ= +0.009 σ= 0.030 zeros= 0% [ ▁▄████▄▁ ] [ ▂██▄ ] dim 0483 μ= -0.008 σ= 0.031 zeros= 0% [ ▁▄████▅▂ ] [ ▅█▇▂ ] dim 0484 μ= +0.003 σ= 0.035 zeros= 0% [ ▁▃▇████▅▂ ] [ ▁█ ] dim 0485 μ= +0.016 σ= 0.014 zeros= 0% [ ▁██▅ ] [ ▃█▆ ] dim 0486 μ= +0.024 σ= 0.029 zeros= 0% [ ▁▅███▇▃▁ ] [ ▆█▂ ] dim 0487 μ= +0.016 σ= 0.025 zeros= 0% [ ▁▅███▃▁ ] [ ▁▇▇█▂ ] dim 0488 μ= +0.026 σ= 0.044 zeros= 0% [ ▁▂▅██████▄▂▁ ] [ ▄█▁ ] dim 0489 μ= -0.025 σ= 0.024 zeros= 0% [ ▁▆███▃▁ ] [ ▃█▆▃ ] dim 0490 μ= -0.010 σ= 0.032 zeros= 0% [ ▁▅████▅▁▁ ] [ █ ] dim 0491 μ= +0.020 σ= 0.015 zeros= 0% [ ▁▇██▁ ] [ ▂█▇▂ ] dim 0492 μ= -0.011 σ= 0.029 zeros= 0% [ ▁▄████▄▁ ] [ ▆█ ] dim 0493 μ= +0.014 σ= 0.019 zeros= 0% [ ▄███▁ ] [ ▁█▄ ] dim 0494 μ= +0.022 σ= 0.019 zeros= 0% [ ▂███▃ ] [ ▃█▆ ] dim 0495 μ= -0.016 σ= 0.027 zeros= 0% [ ▁▄███▇▃ ] [ █▄ ] dim 0496 μ= +0.025 σ= 0.015 zeros= 0% [ ▅██▂ ] [ █▅ ] dim 0497 μ= -0.015 σ= 0.019 zeros= 0% [ ▁▇██▄ ] [ ▅█▅▁ ] dim 0498 μ= +0.017 σ= 0.039 zeros= 0% [ ▁▂▅█████▄▂ ] [ ▂█▆▂ ] dim 0499 μ= -0.011 σ= 0.029 zeros= 0% [ ▁▄████▄▁ ] [ ▁▅██▃ ] dim 0500 μ= +0.022 σ= 0.039 zeros= 0% [ ▁▅█████▆▂▁ ] [ ▄█ ] dim 0501 μ= -0.007 σ= 0.013 zeros= 0% [ ▁██▄ ] [ ▂█▄ ] dim 0502 μ= +0.021 σ= 0.022 zeros= 0% [ ▃███▄ ] [ ▄█▄ ] dim 0503 μ= +0.002 σ= 0.031 zeros= 0% [ ▂▆████▃▁ ] [ █ ] dim 0504 μ= -0.004 σ= 0.011 zeros= 0% [ ▆█▃ ] [ ▄█▂ ] dim 0505 μ= -0.002 σ= 0.024 zeros= 0% [ ▁▄███▄▁ ] [ ▁▇█▁ ] dim 0506 μ= +0.009 σ= 0.026 zeros= 0% [ ▁▃████▃▁ ] [ ██ ] dim 0507 μ= -0.011 σ= 0.024 zeros= 0% [ ▂████▂ ] [ ▆█▄ ] dim 0508 μ= -0.004 σ= 0.034 zeros= 0% [ ▁▄████▇▃▁ ] [ ▅█▄ ] dim 0509 μ= -0.001 σ= 0.025 zeros= 0% [ ▁▅███▅▁ ] [ ▅█▃ ] dim 0510 μ= -0.007 σ= 0.029 zeros= 0% [ ▁▃████▄▁ ] [ ▄██▄ ] dim 0511 μ= +0.009 σ= 0.035 zeros= 0% [ ▁▂▆████▆▃ ] [ ▂█▅ ] dim 0512 μ= -0.015 σ= 0.027 zeros= 0% [ ▁▄████▂ ] [ █▁ ] dim 0513 μ= +0.024 σ= 0.012 zeros= 0% [ ▃██ ] [ ▃██▄ ] dim 0514 μ= +0.012 σ= 0.033 zeros= 0% [ ▁▁▅████▆▂▁ ] [ █▇▁ ] dim 0515 μ= -0.029 σ= 0.026 zeros= 0% [ ▂████▄▁ ] [ █▅ ] dim 0516 μ= +0.025 σ= 0.020 zeros= 0% [ ▁███▄ ] [ ▂▆█▆▁ ] dim 0517 μ= -0.005 σ= 0.039 zeros= 0% [ ▁▃▆█████▅▁ ] [ █▇ ] dim 0518 μ= +0.026 σ= 0.023 zeros= 0% [ ▃███▆▁ ] [ ▄█▅ ] dim 0519 μ= -0.039 σ= 0.027 zeros= 0% [ ▁▆███▆▂ ] [ ▃█▆▃ ] dim 0520 μ= +0.010 σ= 0.031 zeros= 0% [ ▁▅████▅▂ ] [ ▅█▇ ] dim 0521 μ= +0.021 σ= 0.032 zeros= 0% [ ▁▃█████▃▁ ] [ ▇█▁ ] dim 0522 μ= +0.013 σ= 0.025 zeros= 0% [ ▂▇███▃▁ ] [ ▁█ ] dim 0523 μ= +0.019 σ= 0.016 zeros= 0% [ ▁███▁ ] [ ▁▇█▄ ] dim 0524 μ= +0.013 σ= 0.028 zeros= 0% [ ▁▃████▄▁ ] [ ▁█ ] dim 0525 μ= -0.007 σ= 0.011 zeros= 0% [ ██▂ ] [ ▁█▄ ] dim 0526 μ= -0.017 σ= 0.025 zeros= 0% [ ▁▃███▅▂ ] [ ▆█▁ ] dim 0527 μ= +0.013 σ= 0.025 zeros= 0% [ ▂▆███▂▁ ] [ ▃█▄ ] dim 0528 μ= -0.039 σ= 0.028 zeros= 0% [ ▁▆███▆▃ ] [ ▅█▃ ] dim 0529 μ= +0.013 σ= 0.029 zeros= 0% [ ▁▃████▅▁ ] [ ▂█▆ ] dim 0530 μ= -0.015 σ= 0.026 zeros= 0% [ ▁▄███▇▂ ] [ ▁█▄ ] dim 0531 μ= -0.015 σ= 0.023 zeros= 0% [ ▃███▆▁ ] [ ▅█▄ ] dim 0532 μ= -0.004 σ= 0.032 zeros= 0% [ ▁▄████▇▂▁ ] [ ▁█▁ ] dim 0533 μ= -0.001 σ= 0.021 zeros= 0% [ ▂███▃ ] [ ▁▆█▅ ] dim 0534 μ= -0.002 σ= 0.032 zeros= 0% [ ▁▃████▇▃▁ ] [ ▁▅█▇▃ ] dim 0535 μ= -0.018 σ= 0.039 zeros= 0% [ ▁▄█████▅▃▁ ] [ ▃█ ] dim 0536 μ= +0.016 σ= 0.019 zeros= 0% [ ▃███▂ ] [ ▄█▆ ] dim 0537 μ= +0.003 σ= 0.032 zeros= 0% [ ▂▇████▃▁ ] [ ▁██▂ ] dim 0538 μ= +0.029 σ= 0.028 zeros= 0% [ ▁▃████▃▁ ] [ ▆██▃ ] dim 0539 μ= +0.003 σ= 0.038 zeros= 0% [ ▂▄█████▅▂▁ ] [ ▂██▃ ] dim 0540 μ= -0.007 σ= 0.036 zeros= 0% [ ▁▁▅████▇▃▁ ] [ ▄█▃ ] dim 0541 μ= -0.002 σ= 0.027 zeros= 0% [ ▂▆███▅▁ ] [ ▁▇█▄ ] dim 0542 μ= -0.005 σ= 0.033 zeros= 0% [ ▁▄████▆▃▁ ] [ ▂▇█▆▁ ] dim 0543 μ= +0.017 σ= 0.038 zeros= 0% [ ▁▂▅█████▄▂ ] [ █▆ ] dim 0544 μ= +0.006 σ= 0.021 zeros= 0% [ ▂███▅▁ ] [ █▁ ] dim 0545 μ= -0.019 σ= 0.016 zeros= 0% [ ▁▇██▂ ] [ ▆██▂ ] dim 0546 μ= -0.016 σ= 0.033 zeros= 0% [ ▁▂▇████▅▁ ] [ ▂██ ] dim 0547 μ= -0.012 σ= 0.026 zeros= 0% [ ▃████▃ ] [ ▂█▇ ] dim 0548 μ= -0.035 σ= 0.024 zeros= 0% [ ▃███▆▁ ] [ ▆█▃ ] dim 0549 μ= +0.014 σ= 0.030 zeros= 0% [ ▁▄████▄▂ ] [ ▃▆█▅ ] dim 0550 μ= -0.008 σ= 0.039 zeros= 0% [ ▁▃▇█████▃▁ ] [ █▇ ] dim 0551 μ= +0.008 σ= 0.017 zeros= 0% [ ▅██▄ ] [ ▇█▄ ] dim 0552 μ= -0.006 σ= 0.028 zeros= 0% [ ▃████▅▁ ] [ ▇█▃ ] dim 0553 μ= -0.005 σ= 0.028 zeros= 0% [ ▂████▅▁ ] [ ▂█▁ ] dim 0554 μ= +0.018 σ= 0.018 zeros= 0% [ ▂███▁ ] [ ▆█▄ ] dim 0555 μ= +0.015 σ= 0.031 zeros= 0% [ ▁▄████▆▂ ] [ ▄█▅▂ ] dim 0556 μ= -0.015 σ= 0.034 zeros= 0% [ ▁▂▆████▄▁ ] [ ▄█▁ ] dim 0557 μ= -0.004 σ= 0.021 zeros= 0% [ ▄███▂ ] [ ▁██▁ ] dim 0558 μ= +0.009 σ= 0.026 zeros= 0% [ ▁▂████▃▁ ] [ ▅██▄ ] dim 0559 μ= -0.010 σ= 0.042 zeros= 0% [ ▁▂▄██████▅▂ ] [ ▃███▂ ] dim 0560 μ= -0.003 σ= 0.037 zeros= 0% [ ▁▂▅█████▅▁ ] [ ▁▆█▆▁ ] dim 0561 μ= -0.022 σ= 0.035 zeros= 0% [ ▁▄█████▃▁ ] [ ▂█▄ ] dim 0562 μ= +0.001 σ= 0.021 zeros= 0% [ ▂███▃ ] [ ▂▇█▂ ] dim 0563 μ= +0.030 σ= 0.027 zeros= 0% [ ▁▃████▃▁ ] [ █▆ ] dim 0564 μ= +0.006 σ= 0.021 zeros= 0% [ ▂▇██▅▁ ] [ ▃█▄ ] dim 0565 μ= -0.020 σ= 0.023 zeros= 0% [ ▄███▄▁ ] [ ▃█▇ ] dim 0566 μ= +0.007 σ= 0.028 zeros= 0% [ ▁▄████▃▁ ] [ █▂ ] dim 0567 μ= +0.002 σ= 0.016 zeros= 0% [ ▆██▂ ] [ ▅█▃ ] dim 0568 μ= +0.016 σ= 0.025 zeros= 0% [ ▁▆███▄▁ ] [ ▄█▇ ] dim 0569 μ= -0.016 σ= 0.029 zeros= 0% [ ▁▅████▃▁ ] [ ▆█▂ ] dim 0570 μ= +0.015 σ= 0.026 zeros= 0% [ ▁▆███▄▁ ] [ ▃█▃ ] dim 0571 μ= -0.000 σ= 0.032 zeros= 0% [ ▁▂▆███▇▃▁ ] [ █▅ ] dim 0572 μ= +0.007 σ= 0.015 zeros= 0% [ ▄██▂ ] [ ▅█▂ ] dim 0573 μ= -0.004 σ= 0.022 zeros= 0% [ ▁▄███▃ ] [ ██ ] dim 0574 μ= -0.011 σ= 0.015 zeros= 0% [ ▃██▃ ] [ ▃▅▇█▃ ] dim 0575 μ= +0.003 σ= 0.042 zeros= 0% [ ▁▃▅█████▇▃▁ ] [ ▅█▂ ] dim 0576 μ= +0.017 σ= 0.026 zeros= 0% [ ▁▅███▅▁ ] [ ▅█▆ ] dim 0577 μ= -0.001 σ= 0.026 zeros= 0% [ ▁▅███▅▁ ] [ ▂▆█▃ ] dim 0578 μ= -0.011 σ= 0.034 zeros= 0% [ ▂▅████▅▂ ] [ ▆█▁ ] dim 0579 μ= -0.009 σ= 0.026 zeros= 0% [ ▂▇███▃▁ ] [ ▅█▄ ] dim 0580 μ= -0.003 σ= 0.029 zeros= 0% [ ▁▃▇███▆▂ ] [ ▃█▄ ] dim 0581 μ= +0.001 σ= 0.024 zeros= 0% [ ▁▄███▅▁ ] [ █▅ ] dim 0582 μ= +0.023 σ= 0.019 zeros= 0% [ ▁███▃ ] [ ▂█ ] dim 0583 μ= -0.006 σ= 0.014 zeros= 0% [ ▁██▅ ] [ ▄█▅▁ ] dim 0584 μ= +0.004 σ= 0.030 zeros= 0% [ ▂▅████▃▁ ] [ ▁▅█▇▅▂ ] dim 0585 μ= -0.034 σ= 0.049 zeros= 0% [ ▁▄▆██████▅▂▂ ] -> OUTLIER_SPREAD: this_std=0.0489, mean_std=0.0266, +3.2sigma vs threshold=3.0sigma [ ▂█▄ ] dim 0586 μ= +0.002 σ= 0.021 zeros= 0% [ ▂███▄ ] [ ▄█ ] dim 0587 μ= -0.007 σ= 0.015 zeros= 0% [ ▂██▅ ] [ ▃▇█▂ ] dim 0588 μ= -0.013 σ= 0.034 zeros= 0% [ ▂▆████▅▂ ] [ █ ] dim 0589 μ= -0.001 σ= 0.015 zeros= 0% [ ▁▇█▇▁ ] [ ▅██▂ ] dim 0590 μ= +0.007 σ= 0.034 zeros= 0% [ ▃▇████▅▂ ] [ ▂█▂ ] dim 0591 μ= -0.021 σ= 0.018 zeros= 0% [ ▂███▁ ] [ ▄█▂ ] dim 0592 μ= -0.004 σ= 0.022 zeros= 0% [ ▁▅███▃ ] [ ▁▇█▄ ] dim 0593 μ= +0.016 σ= 0.035 zeros= 0% [ ▁▅█████▃▁ ] [ ▇█▆▁ ] dim 0594 μ= +0.001 σ= 0.035 zeros= 0% [ ▁▄█████▄▂ ] [ ▂█▆ ] dim 0595 μ= +0.009 σ= 0.026 zeros= 0% [ ▃████▃▁ ] [ ▂█▅ ] dim 0596 μ= +0.002 σ= 0.023 zeros= 0% [ ▁▃███▅▁ ] [ ▅█▄ ] dim 0597 μ= +0.016 σ= 0.028 zeros= 0% [ ▂▇███▆▁ ] [ ▃█▇▁ ] dim 0598 μ= +0.005 σ= 0.030 zeros= 0% [ ▂▅████▃▁ ] [ █▁ ] dim 0599 μ= +0.024 σ= 0.014 zeros= 0% [ ▄██▁ ] [ ▆██▂ ] dim 0600 μ= -0.017 σ= 0.035 zeros= 0% [ ▁▃█████▅▁ ] [ ▅█ ] dim 0601 μ= +0.014 σ= 0.020 zeros= 0% [ ▁▄███▂ ] [ █▆ ] dim 0602 μ= -0.013 σ= 0.019 zeros= 0% [ ▁▆██▅▁ ] [ ▅█▄ ] dim 0603 μ= -0.023 σ= 0.026 zeros= 0% [ ▂▆███▅▁ ] [ ▂█▅ ] dim 0604 μ= +0.002 σ= 0.028 zeros= 0% [ ▁▅███▇▂ ] [ ▇█▄ ] dim 0605 μ= +0.014 σ= 0.031 zeros= 0% [ ▁▄████▆▂ ] [ ██ ] dim 0606 μ= +0.031 σ= 0.019 zeros= 0% [ ▁▅██▆▁ ] [ ▅█▆ ] dim 0607 μ= +0.000 σ= 0.033 zeros= 0% [ ▁▃▇████▃▁ ] [ ▅█▄ ] dim 0608 μ= -0.002 σ= 0.037 zeros= 0% [ ▂▄█████▄▁ ] [ ▂██▄ ] dim 0609 μ= +0.008 σ= 0.030 zeros= 0% [ ▁▄████▄▁ ] [ ▃█▂ ] dim 0610 μ= +0.018 σ= 0.021 zeros= 0% [ ▃███▃ ] [ ▃█▅ ] dim 0611 μ= -0.000 σ= 0.025 zeros= 0% [ ▁▅███▅▁ ] [ ▄█▇▄ ] dim 0612 μ= +0.010 σ= 0.039 zeros= 0% [ ▁▃▇█████▃▁ ] [ █ ] dim 0613 μ= +0.019 σ= 0.013 zeros= 0% [ ▆█▅ ] [ █▇▁ ] dim 0614 μ= +0.008 σ= 0.024 zeros= 0% [ ▂████▂ ] [ ▆█ ] dim 0615 μ= -0.009 σ= 0.017 zeros= 0% [ ▄██▆ ] [ ▅█▃ ] dim 0616 μ= -0.004 σ= 0.025 zeros= 0% [ ▁▆███▄▁ ] [ ▃██▂ ] dim 0617 μ= +0.007 σ= 0.030 zeros= 0% [ ▂▅████▄▁ ] [ ▄█▆ ] dim 0618 μ= +0.002 σ= 0.026 zeros= 0% [ ▁▅███▇▁ ] [ ▇█ ] dim 0619 μ= -0.010 σ= 0.017 zeros= 0% [ ▄██▅ ] [ ▄█▃ ] dim 0620 μ= -0.003 σ= 0.026 zeros= 0% [ ▁▆███▄▁ ] [ ▂█▄ ] dim 0621 μ= -0.038 σ= 0.022 zeros= 0% [ ▂███▄▁ ] [ ▁▇█▃ ] dim 0622 μ= -0.009 σ= 0.034 zeros= 0% [ ▂▅████▅▂▁ ] [ ▁██ ] dim 0623 μ= +0.007 σ= 0.023 zeros= 0% [ ▃███▇▁ ] [ ▄█ ] dim 0624 μ= -0.006 σ= 0.021 zeros= 0% [ ▁▄███▂ ] [ ▂█▄ ] dim 0625 μ= -0.019 σ= 0.025 zeros= 0% [ ▁▄███▅▁ ] [ ▅▇█▄ ] dim 0626 μ= -0.013 σ= 0.039 zeros= 0% [ ▁▃█████▆▂▁▁ ] [ ▃█▂ ] dim 0627 μ= +0.017 σ= 0.025 zeros= 0% [ ▁▆███▄▁ ] [ ▁▇█▆▂ ] dim 0628 μ= -0.020 σ= 0.036 zeros= 0% [ ▂▃█████▄▁ ] [ ▄█▇▃ ] dim 0629 μ= -0.013 σ= 0.032 zeros= 0% [ ▁▂▅████▅▁ ] [ ▃█▄ ] dim 0630 μ= -0.020 σ= 0.027 zeros= 0% [ ▁▄███▆▁ ] [ ▃█▆ ] dim 0631 μ= -0.000 σ= 0.028 zeros= 0% [ ▁▆███▆▂ ] [ █▇ ] dim 0632 μ= -0.013 σ= 0.021 zeros= 0% [ ▂▇██▅▁ ] [ ▁█▅ ] dim 0633 μ= -0.016 σ= 0.022 zeros= 0% [ ▂███▅▁ ] [ ▅█ ] dim 0634 μ= -0.009 σ= 0.019 zeros= 0% [ ▁▄██▆▁ ] [ ▂▅█▇ ] dim 0635 μ= -0.019 σ= 0.038 zeros= 0% [ ▁▄█████▅▂▁ ] [ ▃█▁ ] dim 0636 μ= -0.003 σ= 0.020 zeros= 0% [ ▃███▂ ] [ ▆█▄ ] dim 0637 μ= -0.026 σ= 0.031 zeros= 0% [ ▁▃████▅▂ ] [ ▃█▃ ] dim 0638 μ= -0.021 σ= 0.022 zeros= 0% [ ▃███▄ ] [ ▁▄█▄ ] dim 0639 μ= +0.016 σ= 0.033 zeros= 0% [ ▁▄████▆▃▁ ] [ ▁█▄ ] dim 0640 μ= +0.002 σ= 0.020 zeros= 0% [ ▂███▄ ] [ ▂▅█▄ ] dim 0641 μ= -0.007 σ= 0.040 zeros= 0% [ ▁▃▆█████▄▂ ] [ ▃█▃ ] dim 0642 μ= +0.019 σ= 0.024 zeros= 0% [ ▁▄███▄▁ ] [ ▆█ ] dim 0643 μ= -0.007 σ= 0.022 zeros= 0% [ ▁▅███▂ ] [ ▃█▇▁ ] dim 0644 μ= -0.016 σ= 0.030 zeros= 0% [ ▂▅████▃▁ ] [ ▇█▄ ] dim 0645 μ= -0.005 σ= 0.031 zeros= 0% [ ▁▃████▆▂▁ ] [ ▃██▃ ] dim 0646 μ= +0.009 σ= 0.031 zeros= 0% [ ▁▅████▅▁ ] [ ▅█▂ ] dim 0647 μ= -0.004 σ= 0.023 zeros= 0% [ ▁▅███▃ ] [ ▄██▁ ] dim 0648 μ= +0.004 σ= 0.028 zeros= 0% [ ▁▅████▂▁ ] [ ▄▇█▄ ] dim 0649 μ= -0.011 σ= 0.036 zeros= 0% [ ▁▂▇█████▂▁ ] [ ▂▇█▃ ] dim 0650 μ= -0.008 σ= 0.031 zeros= 0% [ ▁▄████▅▂ ] [ ▃██▂ ] dim 0651 μ= +0.008 σ= 0.031 zeros= 0% [ ▁▅████▄▂ ] [ ▁█▇▃ ] dim 0652 μ= +0.029 σ= 0.030 zeros= 0% [ ▁▅████▄▁ ] [ ▅█▇▂ ] dim 0653 μ= -0.014 σ= 0.031 zeros= 0% [ ▁▆████▄▁ ] [ ▅█▁ ] dim 0654 μ= -0.005 σ= 0.021 zeros= 0% [ ▁▄███▂ ] [ ▂█▅ ] dim 0655 μ= +0.003 σ= 0.024 zeros= 0% [ ▁▄███▆▁ ] [ ▁█▄ ] dim 0656 μ= +0.003 σ= 0.022 zeros= 0% [ ▂███▅▁ ] [ ▁█▇▄ ] dim 0657 μ= +0.014 σ= 0.033 zeros= 0% [ ▁▄████▆▃ ] [ ▁█▂ ] dim 0658 μ= -0.000 σ= 0.019 zeros= 0% [ ▂███▂ ] [ ▅█▄ ] dim 0659 μ= +0.019 σ= 0.031 zeros= 0% [ ▁▃▇███▇▃▁ ] [ ▁▄██▃ ] dim 0660 μ= +0.004 σ= 0.037 zeros= 0% [ ▁▄█████▅▃ ] [ ▅█▃ ] dim 0661 μ= -0.002 σ= 0.024 zeros= 0% [ ▁▅███▄▁ ] [ █ ] dim 0662 μ= +0.000 σ= 0.013 zeros= 0% [ ▅█▇ ] [ ▅█▇▅ ] dim 0663 μ= -0.009 σ= 0.039 zeros= 0% [ ▁▃▇█████▃▂ ] [ ▄█▆ ] dim 0664 μ= +0.000 σ= 0.029 zeros= 0% [ ▂▆███▇▂ ] [ ▂▇█▃ ] dim 0665 μ= -0.010 σ= 0.036 zeros= 0% [ ▁▂▆████▆▃▁ ] [ ▁█▅ ] dim 0666 μ= +0.004 σ= 0.023 zeros= 0% [ ▃███▅▁ ] [ ▃▇█▄ ] dim 0667 μ= +0.009 σ= 0.038 zeros= 0% [ ▁▃▇████▇▃▁ ] [ █▆ ] dim 0668 μ= +0.007 σ= 0.018 zeros= 0% [ ▁▅██▄ ] [ ▄█▆ ] dim 0669 μ= -0.018 σ= 0.028 zeros= 0% [ ▂▅███▇▂▁ ] [ ▁██▁ ] dim 0670 μ= +0.009 σ= 0.024 zeros= 0% [ ▂████▂ ] [ ██ ] dim 0671 μ= +0.031 σ= 0.024 zeros= 0% [ ▂▇███▃ ] [ ▁▇█ ] dim 0672 μ= +0.009 σ= 0.025 zeros= 0% [ ▂███▇▃ ] [ ██ ] dim 0673 μ= +0.010 σ= 0.022 zeros= 0% [ ▁▇███▂ ] [ ▃█▅ ] dim 0674 μ= +0.021 σ= 0.025 zeros= 0% [ ▁▅███▅▁ ] [ ▆█▅ ] dim 0675 μ= +0.017 σ= 0.029 zeros= 0% [ ▁▂▇███▆▂ ] [ ▃█▆ ] dim 0676 μ= -0.017 σ= 0.026 zeros= 0% [ ▁▄███▇▂ ] [ ▂▆█▅ ] dim 0677 μ= +0.017 σ= 0.034 zeros= 0% [ ▁▄█████▃▁ ] [ ▅█▁ ] dim 0678 μ= -0.026 σ= 0.022 zeros= 0% [ ▁▅███▂ ] [ ▄█▂ ] dim 0679 μ= -0.003 σ= 0.028 zeros= 0% [ ▂▆███▄▂ ] [ █▆ ] dim 0680 μ= +0.007 σ= 0.020 zeros= 0% [ ▁▇██▆▁ ] [ ▃█▂ ] dim 0681 μ= +0.038 σ= 0.024 zeros= 0% [ ▁▅███▄▁ ] [ █▇ ] dim 0682 μ= -0.013 σ= 0.022 zeros= 0% [ ▂███▇▁ ] [ ▃█▅ ] dim 0683 μ= +0.002 σ= 0.030 zeros= 0% [ ▂▆███▇▂▁ ] [ █ ] dim 0684 μ= +0.019 σ= 0.016 zeros= 0% [ ▁██▇▁ ] [ ▇█▃ ] dim 0685 μ= +0.013 σ= 0.027 zeros= 0% [ ▂▇███▄▁ ] [ ▄▆█▅▂ ] dim 0686 μ= -0.024 σ= 0.042 zeros= 0% [ ▁▃▇█████▅▂▁ ] [ ▅█▄ ] dim 0687 μ= -0.003 σ= 0.028 zeros= 0% [ ▂▇███▅▁ ] [ ▄█▇▃ ] dim 0688 μ= -0.013 σ= 0.036 zeros= 0% [ ▁▃▇████▆▂▁ ] [ █▇ ] dim 0689 μ= -0.012 σ= 0.023 zeros= 0% [ ▂███▇▁ ] [ ▇█ ] dim 0690 μ= +0.009 σ= 0.017 zeros= 0% [ ▄██▄ ] [ ▆█▇ ] dim 0691 μ= +0.019 σ= 0.032 zeros= 0% [ ▁▄▇████▃▁ ] [ ▅█▆ ] dim 0692 μ= -0.001 σ= 0.030 zeros= 0% [ ▁▂▇███▆▂ ] [ ▅██▃ ] dim 0693 μ= -0.013 σ= 0.033 zeros= 0% [ ▁▂▆████▅▂ ] [ █▇ ] dim 0694 μ= +0.010 σ= 0.021 zeros= 0% [ ▁▆██▇▁ ] [ ▁█▆ ] dim 0695 μ= -0.015 σ= 0.027 zeros= 0% [ ▁▄████▂ ] [ ▇█ ] dim 0696 μ= +0.011 σ= 0.023 zeros= 0% [ ▁▇███▂ ] [ ▅█▆ ] dim 0697 μ= -0.018 σ= 0.033 zeros= 0% [ ▁▂▇████▄▁ ] [ █ ] dim 0698 μ= -0.022 σ= 0.016 zeros= 0% [ ▁▇██▁ ] [ ▅█▃ ] dim 0699 μ= -0.003 σ= 0.026 zeros= 0% [ ▁▅███▅▁ ] [ ▅█▂ ] dim 0700 μ= -0.005 σ= 0.027 zeros= 0% [ ▂▇███▅▁ ] [ ▃▇█▃ ] dim 0701 μ= +0.012 σ= 0.033 zeros= 0% [ ▂▅████▆▃ ] [ ▄█▂ ] dim 0702 μ= -0.004 σ= 0.026 zeros= 0% [ ▁▅███▄▁ ] [ ▂█▅ ] dim 0703 μ= +0.002 σ= 0.024 zeros= 0% [ ▁▃███▅▁ ] [ █ ] dim 0704 μ= -0.003 σ= 0.015 zeros= 0% [ ▁██▆ ] [ ▂██▂ ] dim 0705 μ= -0.012 σ= 0.031 zeros= 0% [ ▂▄████▅▁ ] [ █▂ ] dim 0706 μ= +0.025 σ= 0.014 zeros= 0% [ ▄██▁ ] [ █▂ ] dim 0707 μ= -0.018 σ= 0.018 zeros= 0% [ ▁███▂ ] [ ▂██▃ ] dim 0708 μ= +0.010 σ= 0.031 zeros= 0% [ ▁▄████▄▂ ] [ ▄█▂ ] dim 0709 μ= +0.018 σ= 0.023 zeros= 0% [ ▁▄███▃▁ ] [ ▂▆█▆▂ ] dim 0710 μ= -0.001 σ= 0.040 zeros= 0% [ ▁▃▅█████▆▂▁ ] [ ▃█▇▆ ] dim 0711 μ= -0.008 σ= 0.037 zeros= 0% [ ▁▂▆█████▃▁ ] [ ▁█▇ ] dim 0712 μ= -0.014 σ= 0.025 zeros= 0% [ ▁▃███▇▂ ] [ ▆█▃ ] dim 0713 μ= -0.006 σ= 0.027 zeros= 0% [ ▂▇███▅▁ ] [ ▃▇█▄ ] dim 0714 μ= -0.008 σ= 0.036 zeros= 0% [ ▂▅████▇▃▁ ] [ ▁█▂ ] dim 0715 μ= +0.019 σ= 0.020 zeros= 0% [ ▃███▂ ] [ ▄█ ] dim 0716 μ= +0.013 σ= 0.018 zeros= 0% [ ▃██▆▁ ] [ ▁██▂ ] dim 0717 μ= +0.010 σ= 0.028 zeros= 0% [ ▁▄████▄▁ ] [ ▃█ ] dim 0718 μ= -0.025 σ= 0.017 zeros= 0% [ ▂██▆▁ ] [ ▅█▇▁ ] dim 0719 μ= +0.041 σ= 0.035 zeros= 0% [ ▁▄█████▄▁ ] [ ▅█▄ ] dim 0720 μ= -0.002 σ= 0.031 zeros= 0% [ ▁▂▇███▇▂▁ ] [ ▁█▅ ] dim 0721 μ= -0.016 σ= 0.025 zeros= 0% [ ▁▃███▆▂ ] [ ▃█ ] dim 0722 μ= -0.004 σ= 0.018 zeros= 0% [ ▂██▇▁ ] [ ▃█▆ ] dim 0723 μ= -0.017 σ= 0.032 zeros= 0% [ ▃▇████▃▁ ] [ ▂▆█▃ ] dim 0724 μ= +0.011 σ= 0.033 zeros= 0% [ ▁▁▄████▅▁▁ ] [ ▁█▅ ] dim 0725 μ= +0.004 σ= 0.020 zeros= 0% [ ▂███▄ ] [ ▃▇█▆ ] dim 0726 μ= -0.008 σ= 0.039 zeros= 0% [ ▁▂▇████▇▄▁ ] [ ▆█ ] dim 0727 μ= -0.009 σ= 0.024 zeros= 0% [ ▂▇███▃ ] [ ▁█▅ ] dim 0728 μ= -0.019 σ= 0.021 zeros= 0% [ ▃███▃ ] [ ▁▇█▁ ] dim 0729 μ= +0.009 σ= 0.025 zeros= 0% [ ▁▃████▂ ] [ ▁█▇ ] dim 0730 μ= -0.015 σ= 0.025 zeros= 0% [ ▁▄███▆▂ ] [ ▅█▇▁ ] dim 0731 μ= +0.002 σ= 0.030 zeros= 0% [ ▂▆████▃▁ ] [ ▃██▁ ] dim 0732 μ= +0.007 σ= 0.029 zeros= 0% [ ▁▄████▃▁ ] [ █▇ ] dim 0733 μ= +0.008 σ= 0.023 zeros= 0% [ ▂███▇▂ ] [ █▇ ] dim 0734 μ= -0.011 σ= 0.022 zeros= 0% [ ▂▇██▇▁ ] [ ▁█▆ ] dim 0735 μ= -0.015 σ= 0.022 zeros= 0% [ ▂███▅▁ ] [ ▆█ ] dim 0736 μ= -0.026 σ= 0.020 zeros= 0% [ ▄███▂ ] [ ▆█▅ ] dim 0737 μ= -0.022 σ= 0.031 zeros= 0% [ ▁▃▇███▇▃▁ ] [ ▄██▇▂ ] dim 0738 μ= +0.022 σ= 0.043 zeros= 0% [ ▁▂▇██████▄▁ ] [ ▁█▄ ] dim 0739 μ= -0.017 σ= 0.021 zeros= 0% [ ▂███▄▁ ] [ ▁▆█▅ ] dim 0740 μ= +0.014 σ= 0.038 zeros= 0% [ ▁▃▅█████▄▁ ] [ ▁██ ] dim 0741 μ= +0.030 σ= 0.025 zeros= 0% [ ▂████▃ ] [ ▂█▆▁ ] dim 0742 μ= -0.014 σ= 0.033 zeros= 0% [ ▁▂▅████▅▁ ] [ █▃ ] dim 0743 μ= -0.038 σ= 0.018 zeros= 0% [ ▁▇██▃ ] [ ▄█▆▁ ] dim 0744 μ= +0.003 σ= 0.031 zeros= 0% [ ▂▆████▃▁ ] [ ▅█▃ ] dim 0745 μ= +0.017 σ= 0.024 zeros= 0% [ ▁▅███▄▁ ] [ ▅█ ] dim 0746 μ= -0.007 σ= 0.017 zeros= 0% [ ▂██▆▁ ] [ ▇█▄ ] dim 0747 μ= -0.006 σ= 0.030 zeros= 0% [ ▁▃████▆▂ ] [ ▆█▄ ] dim 0748 μ= -0.023 σ= 0.030 zeros= 0% [ ▁▂▆███▆▂▁ ] [ ▇█ ] dim 0749 μ= -0.011 σ= 0.022 zeros= 0% [ ▂▇██▇▂ ] [ ▁▇█▅▁ ] dim 0750 μ= -0.003 σ= 0.038 zeros= 0% [ ▂▅█████▄▂ ] [ ▄█▇ ] dim 0751 μ= +0.002 σ= 0.032 zeros= 0% [ ▂▇████▃▁ ] [ ▄█▅ ] dim 0752 μ= +0.001 σ= 0.027 zeros= 0% [ ▁▅███▆▂ ] [ ▅█ ] dim 0753 μ= -0.006 σ= 0.023 zeros= 0% [ ▁▅███▃ ] [ █▅ ] dim 0754 μ= -0.013 σ= 0.011 zeros= 0% [ ▂██▁ ] [ ▄█ ] dim 0755 μ= -0.007 σ= 0.017 zeros= 0% [ ▃██▇▁ ] [ ▇█▂ ] dim 0756 μ= +0.014 σ= 0.027 zeros= 0% [ ▂▆███▄▁ ] [ ▃█▄ ] dim 0757 μ= +0.002 σ= 0.026 zeros= 0% [ ▁▄███▆▂ ] [ ▂▇█▃ ] dim 0758 μ= -0.009 σ= 0.034 zeros= 0% [ ▂▅████▆▂▁ ] [ ▁▇██▁ ] dim 0759 μ= +0.020 σ= 0.036 zeros= 0% [ ▂▄█████▄▁ ] [ ▄█ ] dim 0760 μ= -0.009 σ= 0.010 zeros= 0% [ ▁██▁ ] [ ▂▆█▅ ] dim 0761 μ= +0.016 σ= 0.037 zeros= 0% [ ▁▂▅████▇▄▁ ] [ ▁▆█▃ ] dim 0762 μ= -0.008 σ= 0.030 zeros= 0% [ ▁▃████▅▂ ] [ ▆█▅ ] dim 0763 μ= -0.006 σ= 0.028 zeros= 0% [ ▃████▅▁ ] [ ██ ] dim 0764 μ= +0.010 σ= 0.024 zeros= 0% [ ▂████▃ ] [ ▅█ ] dim 0765 μ= +0.012 σ= 0.016 zeros= 0% [ ▃██▅ ] [ ▂██▃ ] dim 0766 μ= -0.009 σ= 0.032 zeros= 0% [ ▁▅████▆▁ ] [ ▁▆█▅ ] dim 0767 μ= +0.014 σ= 0.031 zeros= 0% [ ▁▄████▆▂ ] [ ██ ] dim 0768 μ= -0.009 σ= 0.019 zeros= 0% [ ▁▅██▆▁ ] [ ▅█▃ ] dim 0769 μ= -0.004 σ= 0.028 zeros= 0% [ ▂▇███▅▁ ] [ ▆█▃ ] dim 0770 μ= -0.004 σ= 0.029 zeros= 0% [ ▁▂▇███▅▂ ] [ ██ ] dim 0771 μ= -0.012 σ= 0.022 zeros= 0% [ ▂███▇▁ ] [ ▄█ ] dim 0772 μ= +0.013 σ= 0.016 zeros= 0% [ ▂██▅ ] [ ▁▇█▁ ] dim 0773 μ= -0.011 σ= 0.028 zeros= 0% [ ▁▄████▄▁ ] [ ▃▇█▃ ] dim 0774 μ= -0.009 σ= 0.037 zeros= 0% [ ▁▂▆████▇▃▁ ] [ ▃█▁ ] dim 0775 μ= -0.004 σ= 0.022 zeros= 0% [ ▁▄███▃ ] [ ▅██▂ ] dim 0776 μ= +0.004 σ= 0.034 zeros= 0% [ ▁▃█████▅▂ ] [ ▄█▇▂ ] dim 0777 μ= -0.014 σ= 0.032 zeros= 0% [ ▂▅████▄▁ ] [ ▇█▁ ] dim 0778 μ= +0.013 σ= 0.022 zeros= 0% [ ▁▅███▂ ] [ ▆█▃ ] dim 0779 μ= -0.005 σ= 0.025 zeros= 0% [ ▂▇███▄▁ ] [ ▆█▅ ] dim 0780 μ= -0.022 σ= 0.025 zeros= 0% [ ▂▅███▅▁ ] [ █▇ ] dim 0781 μ= -0.011 σ= 0.021 zeros= 0% [ ▁▆██▇▁ ] [ █▇ ] dim 0782 μ= +0.028 σ= 0.017 zeros= 0% [ ▅██▄ ] [ ▅█▅ ] dim 0783 μ= -0.000 σ= 0.026 zeros= 0% [ ▁▄███▆▁ ] [ ▅█▃ ] dim 0784 μ= -0.004 σ= 0.026 zeros= 0% [ ▂▅███▄▁ ] [ ▄█▂ ] dim 0785 μ= -0.004 σ= 0.024 zeros= 0% [ ▁▅███▃ ] [ ▅██▁ ] dim 0786 μ= +0.022 σ= 0.030 zeros= 0% [ ▁▂▇████▃▁ ] [ ▁█▃ ] dim 0787 μ= +0.002 σ= 0.020 zeros= 0% [ ▂███▃ ] [ ▂█▇ ] dim 0788 μ= +0.026 σ= 0.025 zeros= 0% [ ▁▃███▇▂ ] [ ▅█▃ ] dim 0789 μ= +0.017 σ= 0.027 zeros= 0% [ ▂▇███▅▁ ] [ ▃▇█▅ ] dim 0790 μ= -0.026 σ= 0.035 zeros= 0% [ ▂▅████▇▃▁ ] [ ▆█ ] dim 0791 μ= -0.009 σ= 0.016 zeros= 0% [ ▃██▅ ] [ ▁▇█▅ ] dim 0792 μ= +0.017 σ= 0.033 zeros= 0% [ ▁▃████▇▃▁ ] [ ▆█▂ ] dim 0793 μ= -0.006 σ= 0.025 zeros= 0% [ ▂▇███▄▁ ] [ ▅█▅ ] dim 0794 μ= -0.001 σ= 0.026 zeros= 0% [ ▁▅███▅▁ ] [ ▄█▂ ] dim 0795 μ= -0.005 σ= 0.026 zeros= 0% [ ▂▆███▃▁ ] [ ▅█▂ ] dim 0796 μ= +0.015 σ= 0.025 zeros= 0% [ ▂▆███▄▁ ] [ ▇█▂ ] dim 0797 μ= -0.028 σ= 0.026 zeros= 0% [ ▂▇███▃▁ ] [ ▃█▅ ] dim 0798 μ= +0.001 σ= 0.027 zeros= 0% [ ▁▅███▇▂ ] [ ▂█▄ ] dim 0799 μ= -0.041 σ= 0.024 zeros= 0% [ ▁▄███▄▁ ] [ ▄█▇▆ ] dim 0800 μ= +0.029 σ= 0.038 zeros= 0% [ ▁▃▇████▆▃▁ ] [ ▄█ ] dim 0801 μ= -0.029 σ= 0.013 zeros= 0% [ ▁██▃ ] [ ▅█▂ ] dim 0802 μ= -0.025 σ= 0.023 zeros= 0% [ ▁▅███▃ ] [ █▇ ] dim 0803 μ= +0.009 σ= 0.016 zeros= 0% [ ▃██▄ ] [ ▇█▄ ] dim 0804 μ= +0.016 σ= 0.034 zeros= 0% [ ▁▂▄████▇▃▁ ] [ █ ] dim 0805 μ= -0.022 σ= 0.008 zeros= 0% [ ▃█▂ ] [ ▃█▂ ] dim 0806 μ= -0.024 σ= 0.024 zeros= 0% [ ▁▅███▃▁ ] [ ▂▆█▄ ] dim 0807 μ= +0.016 σ= 0.038 zeros= 0% [ ▁▂▅█████▄▁ ] [ ▂█▆ ] dim 0808 μ= +0.006 σ= 0.029 zeros= 0% [ ▁▅████▄▁ ] [ ▅█ ] dim 0809 μ= +0.012 σ= 0.018 zeros= 0% [ ▄██▅▁ ] [ ▃█▇▁ ] dim 0810 μ= +0.006 σ= 0.029 zeros= 0% [ ▁▅████▄ ] [ ▁██▄ ] dim 0811 μ= +0.012 σ= 0.033 zeros= 0% [ ▂▅████▆▂ ] [ ▃█▇▂ ] dim 0812 μ= +0.006 σ= 0.033 zeros= 0% [ ▁▂▆████▅▁ ] [ ▁█▇ ] dim 0813 μ= +0.027 σ= 0.025 zeros= 0% [ ▁▂███▇▂ ] [ ▅█ ] dim 0814 μ= +0.013 σ= 0.021 zeros= 0% [ ▁▅███▁ ] [ ▃█▃ ] dim 0815 μ= -0.001 σ= 0.025 zeros= 0% [ ▁▄███▄▁ ] [ ▃█▃ ] dim 0816 μ= +0.040 σ= 0.022 zeros= 0% [ ▃███▃ ] [ ▃█ ] dim 0817 μ= +0.034 σ= 0.016 zeros= 0% [ ▂██▅ ] [ ▄█▇▂ ] dim 0818 μ= -0.014 σ= 0.031 zeros= 0% [ ▂▆████▄▁ ] [ ▁▆█▄ ] dim 0819 μ= +0.034 σ= 0.033 zeros= 0% [ ▂▅████▆▃ ] [ ▅██▂ ] dim 0820 μ= +0.004 σ= 0.033 zeros= 0% [ ▁▃█████▅▁ ] [ █▅ ] dim 0821 μ= +0.003 σ= 0.020 zeros= 0% [ ▂███▄ ] [ ▆█ ] dim 0822 μ= -0.007 σ= 0.020 zeros= 0% [ ▁▄███▁ ] [ ▃██▃ ] dim 0823 μ= -0.011 σ= 0.034 zeros= 0% [ ▁▂▅████▅▂▁ ] [ ▇█▂ ] dim 0824 μ= -0.007 σ= 0.026 zeros= 0% [ ▂▇███▄▁ ] [ ▂█▃ ] dim 0825 μ= +0.001 σ= 0.024 zeros= 0% [ ▁▃███▅▁ ] [ ▅█▃ ] dim 0826 μ= +0.016 σ= 0.031 zeros= 0% [ ▁▄████▆▂ ] [ █▆ ] dim 0827 μ= -0.012 σ= 0.018 zeros= 0% [ ▅██▅ ] [ ▅█▃ ] dim 0828 μ= -0.024 σ= 0.029 zeros= 0% [ ▂▇███▅▂ ] [ ▃██▅ ] dim 0829 μ= -0.007 σ= 0.035 zeros= 0% [ ▁▂▅████▇▃▁ ] [ ▇█▇▁ ] dim 0830 μ= -0.001 σ= 0.038 zeros= 0% [ ▂▅█████▄▂▁ ] [ █ ] dim 0831 μ= -0.001 σ= 0.013 zeros= 0% [ ▆█▆ ] [ ▂██▂ ] dim 0832 μ= -0.013 σ= 0.025 zeros= 0% [ ▃████▂ ] [ ▅█▆ ] dim 0833 μ= -0.000 σ= 0.030 zeros= 0% [ ▂▆███▇▂▁ ] [ ▅█▆▁ ] dim 0834 μ= +0.000 σ= 0.034 zeros= 0% [ ▁▃█████▄▁ ] [ ▆█▂ ] dim 0835 μ= -0.006 σ= 0.028 zeros= 0% [ ▁▂▇███▅▁ ] [ ▁█▂ ] dim 0836 μ= +0.000 σ= 0.020 zeros= 0% [ ▂███▃ ] [ ▂▇█▁ ] dim 0837 μ= +0.027 σ= 0.028 zeros= 0% [ ▁▄████▃ ] [ ▇█ ] dim 0838 μ= +0.012 σ= 0.021 zeros= 0% [ ▁▆███▂ ] [ ▆█▁ ] dim 0839 μ= -0.009 σ= 0.027 zeros= 0% [ ▁▃████▃▁ ] [ ▆█▃ ] dim 0840 μ= -0.003 σ= 0.031 zeros= 0% [ ▁▃▇███▆▂ ] [ ▁▇█▁ ] dim 0841 μ= +0.010 σ= 0.027 zeros= 0% [ ▃████▃▁ ] [ ▅█▅ ] dim 0842 μ= -0.020 σ= 0.032 zeros= 0% [ ▁▃▇███▇▃▁ ] [ ▅█ ] dim 0843 μ= +0.011 σ= 0.013 zeros= 0% [ ▁██▃ ] [ ██ ] dim 0844 μ= +0.006 σ= 0.024 zeros= 0% [ ▃███▆▂ ] [ ▂▇█▂ ] dim 0845 μ= -0.011 σ= 0.029 zeros= 0% [ ▁▄████▄▁ ] [ ▃█▄ ] dim 0846 μ= -0.022 σ= 0.025 zeros= 0% [ ▁▅███▅▁ ] [ ▅█▇▁ ] dim 0847 μ= +0.024 σ= 0.032 zeros= 0% [ ▂▇████▄▁ ] [ ▆█▇ ] dim 0848 μ= -0.000 σ= 0.031 zeros= 0% [ ▁▃█████▃▁ ] [ ▅█▄ ] dim 0849 μ= +0.035 σ= 0.031 zeros= 0% [ ▁▄████▇▂ ] [ ▃█▂ ] dim 0850 μ= +0.018 σ= 0.022 zeros= 0% [ ▁▃███▃ ] [ ▂█▆ ] dim 0851 μ= +0.006 σ= 0.026 zeros= 0% [ ▁▃████▂ ] [ ▂▆█▄ ] dim 0852 μ= +0.012 σ= 0.038 zeros= 0% [ ▁▂▆████▇▃▁ ] [ ▂█▂ ] dim 0853 μ= -0.001 σ= 0.020 zeros= 0% [ ▃███▃ ] [ ▇█ ] dim 0854 μ= +0.012 σ= 0.024 zeros= 0% [ ▂▇███▂▁ ] [ █▃ ] dim 0855 μ= +0.003 σ= 0.016 zeros= 0% [ ▁▆██▂ ] [ ▁██▁ ] dim 0856 μ= +0.010 σ= 0.026 zeros= 0% [ ▃████▃ ] [ ▃█▇▁ ] dim 0857 μ= +0.006 σ= 0.030 zeros= 0% [ ▁▅████▄▁ ] [ ▅█▄ ] dim 0858 μ= -0.003 σ= 0.029 zeros= 0% [ ▁▂▇███▆▂ ] [ ▂█▃ ] dim 0859 μ= -0.000 σ= 0.022 zeros= 0% [ ▃███▄ ] [ ▃█▄ ] dim 0860 μ= -0.019 σ= 0.033 zeros= 0% [ ▁▃▆████▄▁ ] [ ▁█▄ ] dim 0861 μ= +0.003 σ= 0.018 zeros= 0% [ ▁███▃ ] [ ▃▆█▆▁ ] dim 0862 μ= -0.024 σ= 0.037 zeros= 0% [ ▂▆█████▅▁▁ ] [ ▆█▂ ] dim 0863 μ= +0.014 σ= 0.023 zeros= 0% [ ▁▆███▂ ] [ ▁█▇ ] dim 0864 μ= +0.008 σ= 0.025 zeros= 0% [ ▃████▂ ] [ ▄█▅ ] dim 0865 μ= +0.001 σ= 0.022 zeros= 0% [ ▃███▄▁ ] [ ▅█▄ ] dim 0866 μ= -0.021 σ= 0.025 zeros= 0% [ ▁▅███▅▁ ] [ ▆█ ] dim 0867 μ= +0.009 σ= 0.022 zeros= 0% [ ▁▇██▆▂ ] [ ▃█▅ ] dim 0868 μ= +0.002 σ= 0.025 zeros= 0% [ ▁▄███▅▁ ] [ █▃ ] dim 0869 μ= -0.038 σ= 0.017 zeros= 0% [ ▁▇██▂ ] [ ▆█▄ ] dim 0870 μ= -0.003 σ= 0.031 zeros= 0% [ ▁▂█████▂ ] [ ▄▇█▂ ] dim 0871 μ= +0.006 σ= 0.036 zeros= 0% [ ▁▄█████▆▃▁ ] [ ▄▇█▄ ] dim 0872 μ= -0.011 σ= 0.037 zeros= 0% [ ▁▃▇████▆▃▁ ] [ ▁▇█▄ ] dim 0873 μ= -0.007 σ= 0.029 zeros= 0% [ ▃████▅▁ ] [ ▂▅█▆ ] dim 0874 μ= +0.016 σ= 0.036 zeros= 0% [ ▂▅█████▃▁ ] [ ▃█ ] dim 0875 μ= -0.007 σ= 0.014 zeros= 0% [ ▁██▄ ] [ ▇█ ] dim 0876 μ= +0.011 σ= 0.016 zeros= 0% [ ▃██▅ ] [ ▃█▁ ] dim 0877 μ= -0.002 σ= 0.020 zeros= 0% [ ▃███▂ ] [ ▄█ ] dim 0878 μ= -0.008 σ= 0.015 zeros= 0% [ ▂██▄ ] [ ▃██▅ ] dim 0879 μ= -0.007 σ= 0.037 zeros= 0% [ ▃▅████▇▃▁ ] [ ▃██▄ ] dim 0880 μ= +0.031 σ= 0.031 zeros= 0% [ ▁▄████▆▂ ] [ █▃ ] dim 0881 μ= -0.038 σ= 0.020 zeros= 0% [ ▂███▃ ] [ ▅█▇▂ ] dim 0882 μ= +0.005 σ= 0.035 zeros= 0% [ ▁▃▇████▅▂ ] [ ▃█▆ ] dim 0883 μ= -0.014 σ= 0.028 zeros= 0% [ ▁▄████▃▁ ] [ ▅█▄ ] dim 0884 μ= -0.003 σ= 0.029 zeros= 0% [ ▁▂▇███▆▁ ] [ █▄ ] dim 0885 μ= -0.015 σ= 0.020 zeros= 0% [ ▁▇██▄ ] [ ▂█▇ ] dim 0886 μ= -0.015 σ= 0.026 zeros= 0% [ ▁▄████▂ ] [ ▁█▄ ] dim 0887 μ= +0.043 σ= 0.019 zeros= 0% [ ▁███▃ ] [ ██ ] dim 0888 μ= -0.013 σ= 0.019 zeros= 0% [ ▁███▅ ] [ ▄█▇▁ ] dim 0889 μ= -0.013 σ= 0.031 zeros= 0% [ ▂▅████▄▁ ] [ ▅█▃ ] dim 0890 μ= +0.017 σ= 0.022 zeros= 0% [ ▁▄███▃ ] [ ▅█▆ ] dim 0891 μ= +0.001 σ= 0.029 zeros= 0% [ ▂▆████▂ ] [ ▇█ ] dim 0892 μ= +0.010 σ= 0.020 zeros= 0% [ ▁▆██▆▁ ] [ ▁█▇▄ ] dim 0893 μ= -0.005 σ= 0.033 zeros= 0% [ ▁▄█████▂▁ ] [ ▆█▂ ] dim 0894 μ= -0.024 σ= 0.027 zeros= 0% [ ▂▆███▅▁ ] [ ▃▅█▇▄ ] dim 0895 μ= +0.002 σ= 0.044 zeros= 0% [ ▁▃▇█████▇▄▁ ] [ ▄█▅ ] dim 0896 μ= +0.038 σ= 0.034 zeros= 0% [ ▁▄▇████▂▁ ] [ ▆█▁ ] dim 0897 μ= -0.006 σ= 0.021 zeros= 0% [ ▁▅███▂ ] [ ▃█▆ ] dim 0898 μ= -0.035 σ= 0.027 zeros= 0% [ ▁▄████▂ ] [ █ ] dim 0899 μ= -0.020 σ= 0.016 zeros= 0% [ ▁▇██▁ ] [ ▂▇█▁ ] dim 0900 μ= -0.011 σ= 0.027 zeros= 0% [ ▁▃████▃▁ ] [ ▁█▇▃ ] dim 0901 μ= +0.011 σ= 0.032 zeros= 0% [ ▁▅████▅▂ ] [ ▃█▆ ] dim 0902 μ= +0.021 σ= 0.029 zeros= 0% [ ▂▅███▇▂ ] [ ▆█▅ ] dim 0903 μ= -0.021 σ= 0.032 zeros= 0% [ ▁▂█████▃▁ ] [ ▂█▇ ] dim 0904 μ= -0.014 σ= 0.024 zeros= 0% [ ▃███▆▂ ] [ ▅█▅▂ ] dim 0905 μ= +0.023 σ= 0.038 zeros= 0% [ ▁▄▇████▅▂▁ ] [ ▄█▅ ] dim 0906 μ= +0.020 σ= 0.028 zeros= 0% [ ▂▅███▆▂ ] [ █▇ ] dim 0907 μ= +0.007 σ= 0.017 zeros= 0% [ ▁▆██▄ ] [ ▆█▂ ] dim 0908 μ= -0.006 σ= 0.024 zeros= 0% [ ▁▅███▃ ] [ ▃▇█ ] dim 0909 μ= +0.003 σ= 0.027 zeros= 0% [ ▁▅███▇▂ ] [ ▁▄█▇▆▂ ] dim 0910 μ= -0.008 σ= 0.049 zeros= 0% [ ▁▃▅██████▇▃▁ ] -> OUTLIER_SPREAD: this_std=0.0487, mean_std=0.0266, +3.1sigma vs threshold=3.0sigma [ ▄█▄ ] dim 0911 μ= -0.000 σ= 0.026 zeros= 0% [ ▁▅███▅▁ ] [ █▄ ] dim 0912 μ= -0.017 σ= 0.020 zeros= 0% [ ▂███▄ ] [ ▆█▁ ] dim 0913 μ= +0.014 σ= 0.023 zeros= 0% [ ▁▅███▃ ] [ ▇█▃ ] dim 0914 μ= +0.013 σ= 0.026 zeros= 0% [ ▂▇███▃▁ ] [ ▂██▁ ] dim 0915 μ= +0.006 σ= 0.027 zeros= 0% [ ▁▄████▂ ] [ ▁▇█▃ ] dim 0916 μ= -0.007 σ= 0.032 zeros= 0% [ ▁▄████▆▂ ] [ ▇█▁ ] dim 0917 μ= -0.009 σ= 0.023 zeros= 0% [ ▂▇███▂ ] [ ▁▇█▆ ] dim 0918 μ= -0.004 σ= 0.033 zeros= 0% [ ▁▄████▇▂▁ ] [ ▅█▅ ] dim 0919 μ= +0.004 σ= 0.030 zeros= 0% [ ▂▅████▄▁ ] [ ▇█ ] dim 0920 μ= -0.030 σ= 0.020 zeros= 0% [ ▁▆██▇▁ ] [ ▂▇█▄ ] dim 0921 μ= +0.032 σ= 0.033 zeros= 0% [ ▂▅████▆▂▁ ] [ ▆█▂ ] dim 0922 μ= -0.006 σ= 0.026 zeros= 0% [ ▂▇███▄▁ ] [ ▅█ ] dim 0923 μ= -0.007 σ= 0.020 zeros= 0% [ ▅██▇▂ ] [ ▂█▇ ] dim 0924 μ= -0.014 σ= 0.024 zeros= 0% [ ▃███▆▂ ] [ ▃█▆▁ ] dim 0925 μ= -0.033 σ= 0.032 zeros= 0% [ ▁▅████▅▂ ] [ ▅█▂ ] dim 0926 μ= +0.033 σ= 0.027 zeros= 0% [ ▂▇███▄▁ ] [ ▇█ ] dim 0927 μ= +0.011 σ= 0.024 zeros= 0% [ ▂▇███▂ ] [ ▆█▆▂ ] dim 0928 μ= -0.020 σ= 0.036 zeros= 0% [ ▁▄█████▄▂ ] [ ▅█▃ ] dim 0929 μ= -0.002 σ= 0.024 zeros= 0% [ ▁▅███▄▁ ] [ ▆█ ] dim 0930 μ= -0.007 σ= 0.020 zeros= 0% [ ▁▅███▂ ] [ ▂█▇▄ ] dim 0931 μ= -0.009 σ= 0.035 zeros= 0% [ ▂▆████▆▃▁ ] [ █▄ ] dim 0932 μ= +0.006 σ= 0.014 zeros= 0% [ ▄██▂ ] [ █▆ ] dim 0933 μ= -0.012 σ= 0.013 zeros= 0% [ ▂██▁ ] [ ▁▆█▅▂ ] dim 0934 μ= -0.021 σ= 0.036 zeros= 0% [ ▁▄█████▅▁ ] [ ▆█▂ ] dim 0935 μ= -0.027 σ= 0.025 zeros= 0% [ ▂▆███▄▁ ] [ █▃ ] dim 0936 μ= +0.003 σ= 0.017 zeros= 0% [ ▁▆██▂ ] [ ▄█▃ ] dim 0937 μ= -0.003 σ= 0.023 zeros= 0% [ ▁▄███▃ ] [ ▄██▃ ] dim 0938 μ= +0.010 σ= 0.032 zeros= 0% [ ▁▅████▆▂▁ ] [ ▃█▇ ] dim 0939 μ= -0.014 σ= 0.027 zeros= 0% [ ▁▄████▂ ] [ ▆█▄ ] dim 0940 μ= +0.016 σ= 0.029 zeros= 0% [ ▂████▅▁ ] [ ▅█▅ ] dim 0941 μ= +0.001 σ= 0.027 zeros= 0% [ ▁▅███▆▂ ] [ ▄▆█▆▁ ] dim 0942 μ= +0.015 σ= 0.043 zeros= 0% [ ▁▂▃▅█████▅▂▁ ] [ ▇█ ] dim 0943 μ= -0.010 σ= 0.021 zeros= 0% [ ▁▆██▇▁ ] [ ▁▆█▅ ] dim 0944 μ= +0.015 σ= 0.031 zeros= 0% [ ▁▃████▆▂▁ ] [ ▁█ ] dim 0945 μ= +0.017 σ= 0.018 zeros= 0% [ ▂██▇▁ ] [ ▇█▄ ] dim 0946 μ= -0.006 σ= 0.029 zeros= 0% [ ▁▃████▅▂ ] [ ▂█▇ ] dim 0947 μ= -0.012 σ= 0.025 zeros= 0% [ ▂████▃ ] [ ▅█ ] dim 0948 μ= +0.014 σ= 0.022 zeros= 0% [ ▁▅███▂ ] [ ▃█▇▂ ] dim 0949 μ= +0.007 σ= 0.031 zeros= 0% [ ▂▅████▄▁ ] [ ▂█▄ ] dim 0950 μ= +0.023 σ= 0.023 zeros= 0% [ ▃███▆▁ ] [ ▁██ ] dim 0951 μ= +0.008 σ= 0.023 zeros= 0% [ ▂███▇▂ ] [ ▄█▄ ] dim 0952 μ= +0.020 σ= 0.031 zeros= 0% [ ▁▃▆███▇▂▁ ] [ ▆█▂ ] dim 0953 μ= -0.007 σ= 0.027 zeros= 0% [ ▃▇███▄▁ ] [ ▁▅█▅ ] dim 0954 μ= -0.026 σ= 0.030 zeros= 0% [ ▁▃████▅▂ ] [ ▁▆█▄ ] dim 0955 μ= +0.015 σ= 0.031 zeros= 0% [ ▁▃████▆▂ ] [ ▄█ ] dim 0956 μ= -0.007 σ= 0.017 zeros= 0% [ ▂██▆▁ ] [ █▁ ] dim 0957 μ= +0.000 σ= 0.017 zeros= 0% [ ▁███▁ ] [ ██ ] dim 0958 μ= +0.008 σ= 0.023 zeros= 0% [ ▂███▇▂ ] [ ▄█▄ ] dim 0959 μ= +0.001 σ= 0.029 zeros= 0% [ ▂▅███▇▂▁ ] [ ▃█▄ ] dim 0960 μ= -0.000 σ= 0.023 zeros= 0% [ ▁▄███▄▁ ] [ ▃█▁ ] dim 0961 μ= -0.005 σ= 0.021 zeros= 0% [ ▄███▂ ] [ ▃█ ] dim 0962 μ= -0.005 σ= 0.019 zeros= 0% [ ▃███▁ ] [ █▇ ] dim 0963 μ= -0.013 σ= 0.024 zeros= 0% [ ▂███▇▂ ] [ ▂██▂ ] dim 0964 μ= -0.013 σ= 0.034 zeros= 0% [ ▁▂▆████▅▂ ] [ ▁▅██▃ ] dim 0965 μ= -0.017 σ= 0.036 zeros= 0% [ ▁▃█████▅▂ ] [ ▄▇█▃▂ ] dim 0966 μ= +0.011 σ= 0.042 zeros= 0% [ ▁▄██████▄▂▁ ] [ █▆ ] dim 0967 μ= -0.033 σ= 0.021 zeros= 0% [ ▁▇██▆▁ ] [ ██ ] dim 0968 μ= -0.010 σ= 0.015 zeros= 0% [ ▃██▄ ] [ ▄█▆▁ ] dim 0969 μ= +0.023 σ= 0.032 zeros= 0% [ ▁▂▇████▄▁ ] [ ▂▇█▄ ] dim 0970 μ= +0.012 σ= 0.038 zeros= 0% [ ▁▃▆████▇▃▁ ] [ ▁▅██▆▃ ] dim 0971 μ= +0.016 σ= 0.048 zeros= 0% [ ▁▂▅███████▄▂▁ ] -> OUTLIER_SPREAD: this_std=0.0484, mean_std=0.0266, +3.1sigma vs threshold=3.0sigma [ ▄█▇▃ ] dim 0972 μ= -0.012 σ= 0.033 zeros= 0% [ ▂▆████▅▂ ] [ ▃█▃ ] dim 0973 μ= -0.001 σ= 0.019 zeros= 0% [ ▂███▂ ] [ █ ] dim 0974 μ= -0.022 σ= 0.014 zeros= 0% [ ▁▇█▆▁ ] [ ▃█ ] dim 0975 μ= -0.006 σ= 0.019 zeros= 0% [ ▃██▇▁ ] [ ▇█▂ ] dim 0976 μ= -0.008 σ= 0.026 zeros= 0% [ ▂████▃▁ ] [ ▂▇█▄ ] dim 0977 μ= -0.008 σ= 0.031 zeros= 0% [ ▁▄████▅▂ ] [ ▄█▄ ] dim 0978 μ= +0.022 σ= 0.029 zeros= 0% [ ▂▅███▇▂▁ ] [ ▄█▁ ] dim 0979 μ= -0.002 σ= 0.021 zeros= 0% [ ▃███▃ ] [ █▇▁ ] dim 0980 μ= -0.009 σ= 0.025 zeros= 0% [ ▂████▃▁ ] [ ▄█▃ ] dim 0981 μ= +0.016 σ= 0.027 zeros= 0% [ ▂▇███▄▁ ] [ ▄█▅ ] dim 0982 μ= +0.002 σ= 0.028 zeros= 0% [ ▁▅███▇▂▁ ] [ ▄█▂ ] dim 0983 μ= +0.017 σ= 0.021 zeros= 0% [ ▄███▂ ] [ ▁█▁ ] dim 0984 μ= -0.002 σ= 0.016 zeros= 0% [ ▁███▁ ] [ ▇█▁ ] dim 0985 μ= +0.031 σ= 0.026 zeros= 0% [ ▂▇███▃ ] [ ▁▇█▆▄ ] dim 0986 μ= +0.021 σ= 0.037 zeros= 0% [ ▂▄█████▅▂ ] [ ▄█▅▂ ] dim 0987 μ= -0.015 σ= 0.035 zeros= 0% [ ▁▃▆████▅▁▁ ] [ █▃ ] dim 0988 μ= +0.003 σ= 0.015 zeros= 0% [ ▆██▂ ] [ ▁▄█▅ ] dim 0989 μ= -0.022 σ= 0.034 zeros= 0% [ ▁▄█████▃▁ ] [ ▅█▆ ] dim 0990 μ= -0.020 σ= 0.033 zeros= 0% [ ▁▃█████▃▁ ] [ ▁█ ] dim 0991 μ= -0.002 σ= 0.016 zeros= 0% [ ▁███▁ ] [ ▄█▅ ] dim 0992 μ= -0.021 σ= 0.028 zeros= 0% [ ▂▆███▆▂ ] [ ▂██▃ ] dim 0993 μ= -0.011 σ= 0.037 zeros= 0% [ ▁▃▆████▇▂▁ ] [ ▃█▅ ] dim 0994 μ= +0.002 σ= 0.031 zeros= 0% [ ▁▂▆████▃▁ ] [ ▄█▆▁ ] dim 0995 μ= -0.015 σ= 0.035 zeros= 0% [ ▁▃▇████▅▂▁ ] [ █▄ ] dim 0996 μ= -0.016 σ= 0.019 zeros= 0% [ ▁███▄ ] [ ▁██▁ ] dim 0997 μ= -0.011 σ= 0.025 zeros= 0% [ ▂████▃ ] [ ▅█▁ ] dim 0998 μ= +0.015 σ= 0.023 zeros= 0% [ ▁▅███▃ ] [ ▄█▃ ] dim 0999 μ= +0.017 σ= 0.024 zeros= 0% [ ▁▄███▃▁ ] [ ▇█▆ ] dim 1000 μ= +0.018 σ= 0.032 zeros= 0% [ ▁▃████▇▃▁ ] [ ▅█▆▁ ] dim 1001 μ= +0.002 σ= 0.033 zeros= 0% [ ▁▃▇████▄▁ ] [ ▁█▆ ] dim 1002 μ= -0.014 σ= 0.025 zeros= 0% [ ▃███▇▂ ] [ ▂█▂ ] dim 1003 μ= +0.019 σ= 0.018 zeros= 0% [ ▂███▂ ] [ ▅█▄ ] dim 1004 μ= -0.004 σ= 0.026 zeros= 0% [ ▁▆███▄▁ ] [ ██▂ ] dim 1005 μ= +0.012 σ= 0.028 zeros= 0% [ ▁▃████▄▁ ] [ ▁▇█▃ ] dim 1006 μ= +0.011 σ= 0.028 zeros= 0% [ ▁▃████▄▁ ] [ ▁██▂ ] dim 1007 μ= -0.011 σ= 0.026 zeros= 0% [ ▃████▃ ] [ ▇█▅ ] dim 1008 μ= -0.003 σ= 0.024 zeros= 0% [ ▁▅███▄▁ ] [ █▇ ] dim 1009 μ= +0.008 σ= 0.023 zeros= 0% [ ▂███▇▂ ] [ ▅█▆ ] dim 1010 μ= -0.001 σ= 0.032 zeros= 0% [ ▁▃█████▃▁ ] [ ▅█▃ ] dim 1011 μ= -0.004 σ= 0.032 zeros= 0% [ ▁▃████▆▂ ] [ ▃█▅ ] dim 1012 μ= +0.001 σ= 0.026 zeros= 0% [ ▁▅███▆▁ ] [ ▂█▁ ] dim 1013 μ= -0.001 σ= 0.021 zeros= 0% [ ▃███▃ ] [ ▅█▅ ] dim 1014 μ= -0.003 σ= 0.029 zeros= 0% [ ▃▇███▆▂ ] [ █ ] dim 1015 μ= -0.021 σ= 0.011 zeros= 0% [ ▄█▅ ] [ ▃█▂ ] dim 1016 μ= -0.002 σ= 0.020 zeros= 0% [ ▃███▂ ] [ ██ ] dim 1017 μ= -0.010 σ= 0.016 zeros= 0% [ ▃██▅ ] [ ▂█▇ ] dim 1018 μ= -0.013 σ= 0.028 zeros= 0% [ ▁▄████▃ ] [ ▁▆█▂ ] dim 1019 μ= -0.009 σ= 0.031 zeros= 0% [ ▁▄████▅▁ ] [ ▄█▂ ] dim 1020 μ= -0.005 σ= 0.023 zeros= 0% [ ▁▅███▃ ] [ ▁▇█▃ ] dim 1021 μ= +0.031 σ= 0.028 zeros= 0% [ ▃████▄▁ ] [ ▄█▇▂ ] dim 1022 μ= +0.005 σ= 0.034 zeros= 0% [ ▁▃▆████▅▂ ] [ ▄▇█▁ ] dim 1023 μ= +0.006 σ= 0.031 zeros= 0% [ ▂▆████▄▁ ] cmd: ['/usr/sbin/perf', 'stat', '-dd', '-e', 'task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend', '/usr/lib/jvm/java-25-openjdk/bin/java', '--add-modules', 'jdk.incubator.vector', '-Xmx32g', '-Xms32g', '-server', '-XX:+UseParallelGC', '-Djava.io.tmpdir=/l/tmp', '--enable-native-access=ALL-UNNAMED', '-cp', '/l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build:/l/util.nightly/build', '--add-modules', 'jdk.incubator.vector', '--enable-native-access=ALL-UNNAMED', '-XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmFalse.jfr', 'knn.KnnGraphTester', '-maxConn', '32', '-dim', '1024', '-docs', '/big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec', '-ndoc', '8000000', '-topK', '100', '-numIndexThreads', '8', '-beamWidthIndex', '100', '-search-and-stats', '/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec', '-metric', 'dot_product', '-numMergeThread', '16', '-numMergeWorker', '48', '-reindex', '-quantize', '-quantizeBits', '4', '-quantizeCompress'] WARNING: Using incubator modules: jdk.incubator.vector [0.213s][info][jfr,startup] Started recording 1. [0.213s][info][jfr,startup] [0.213s][info][jfr,startup] Use jcmd 2076374 JFR.dump name=1 to copy recording data to file. maxConn = 32 Vector Dimensions: 1024 numDocs = 8000000 beamWidth = 100 similarity = DOT_PRODUCT Seed = 2361831992337295 index key = dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-4-compressed-notfm Index Path = knn-reuse/indices/dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-4-compressed-notfm will now reindex: explicitly requested May 15, 2026 4:05:39 PM org.apache.lucene.internal.vectorization.PanamaVectorizationProvider logIncubatorSetup INFO: Java vector incubator API enabled; uses preferredBitSize=256; FMA enabled creating index in knn-reuse/indices/dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-4-compressed-notfm 39709371 doc vectors in docsPath "/big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec" parentJoin=false Done indexing 25000 documents. Done indexing 50000 documents. Done indexing 75000 documents. Done indexing 100000 documents. Done indexing 125000 documents. Done indexing 150000 documents. Done indexing 175000 documents. Done indexing 200000 documents. Done indexing 225000 documents. Done indexing 250000 documents. Done indexing 275000 documents. Done indexing 300000 documents. Done indexing 325000 documents. Done indexing 350000 documents. Done indexing 375000 documents. Done indexing 400000 documents. Done indexing 425000 documents. Done indexing 450000 documents. Done indexing 475000 documents. Done indexing 500000 documents. Done indexing 525000 documents. Done indexing 550000 documents. Done indexing 575000 documents. Done indexing 600000 documents. Done indexing 625000 documents. Done indexing 650000 documents. Done indexing 675000 documents. Done indexing 700000 documents. Done indexing 725000 documents. Done indexing 750000 documents. Done indexing 775000 documents. Done indexing 800000 documents. Done indexing 825000 documents. Done indexing 850000 documents. Done indexing 875000 documents. Done indexing 900000 documents. Done indexing 925000 documents. Done indexing 950000 documents. Done indexing 975000 documents. Done indexing 1000000 documents. Done indexing 1025000 documents. Done indexing 1050000 documents. Done indexing 1075000 documents. Done indexing 1100000 documents. Done indexing 1125000 documents. Done indexing 1150000 documents. Done indexing 1175000 documents. Done indexing 1200000 documents. Done indexing 1225000 documents. Done indexing 1250000 documents. Done indexing 1275000 documents. Done indexing 1300000 documents. Done indexing 1325000 documents. Done indexing 1350000 documents. Done indexing 1375000 documents. Done indexing 1400000 documents. Done indexing 1425000 documents. Done indexing 1450000 documents. Done indexing 1475000 documents. Done indexing 1500000 documents. Done indexing 1525000 documents. Done indexing 1550000 documents. Done indexing 1575000 documents. Done indexing 1600000 documents. Done indexing 1625000 documents. Done indexing 1650000 documents. Done indexing 1675000 documents. Done indexing 1700000 documents. Done indexing 1725000 documents. Done indexing 1750000 documents. Done indexing 1775000 documents. Done indexing 1800000 documents. Done indexing 1825000 documents. Done indexing 1850000 documents. Done indexing 1875000 documents. Done indexing 1900000 documents. Done indexing 1925000 documents. Done indexing 1950000 documents. Done indexing 1975000 documents. Done indexing 2000000 documents. Done indexing 2025000 documents. Done indexing 2050000 documents. Done indexing 2075000 documents. Done indexing 2100000 documents. Done indexing 2125000 documents. Done indexing 2150000 documents. Done indexing 2175000 documents. Done indexing 2200000 documents. Done indexing 2225000 documents. Done indexing 2250000 documents. Done indexing 2275000 documents. Done indexing 2300000 documents. Done indexing 2325000 documents. Done indexing 2350000 documents. Done indexing 2375000 documents. Done indexing 2400000 documents. Done indexing 2425000 documents. Done indexing 2450000 documents. Done indexing 2475000 documents. Done indexing 2500000 documents. Done indexing 2525000 documents. Done indexing 2550000 documents. Done indexing 2575000 documents. Done indexing 2600000 documents. Done indexing 2625000 documents. Done indexing 2650000 documents. Done indexing 2675000 documents. Done indexing 2700000 documents. Done indexing 2725000 documents. Done indexing 2750000 documents. Done indexing 2775000 documents. Done indexing 2800000 documents. Done indexing 2825000 documents. Done indexing 2850000 documents. Done indexing 2875000 documents. Done indexing 2900000 documents. Done indexing 2925000 documents. Done indexing 2950000 documents. Done indexing 2975000 documents. Done indexing 3000000 documents. Done indexing 3025000 documents. Done indexing 3050000 documents. Done indexing 3075000 documents. Done indexing 3100000 documents. Done indexing 3125000 documents. Done indexing 3150000 documents. Done indexing 3175000 documents. Done indexing 3200000 documents. Done indexing 3225000 documents. Done indexing 3250000 documents. Done indexing 3275000 documents. Done indexing 3300000 documents. Done indexing 3325000 documents. Done indexing 3350000 documents. Done indexing 3375000 documents. Done indexing 3400000 documents. Done indexing 3425000 documents. Done indexing 3450000 documents. Done indexing 3475000 documents. Done indexing 3500000 documents. Done indexing 3525000 documents. Done indexing 3550000 documents. Done indexing 3575000 documents. Done indexing 3600000 documents. Done indexing 3625000 documents. Done indexing 3650000 documents. Done indexing 3675000 documents. Done indexing 3700000 documents. Done indexing 3725000 documents. Done indexing 3750000 documents. Done indexing 3775000 documents. Done indexing 3800000 documents. Done indexing 3825000 documents. Done indexing 3850000 documents. Done indexing 3875000 documents. Done indexing 3900000 documents. Done indexing 3925000 documents. Done indexing 3950000 documents. Done indexing 3975000 documents. Done indexing 4000000 documents. Done indexing 4025000 documents. Done indexing 4050000 documents. Done indexing 4075000 documents. Done indexing 4100000 documents. Done indexing 4125000 documents. Done indexing 4150000 documents. Done indexing 4175000 documents. Done indexing 4200000 documents. Done indexing 4225000 documents. Done indexing 4250000 documents. Done indexing 4275000 documents. Done indexing 4300000 documents. Done indexing 4325000 documents. Done indexing 4350000 documents. Done indexing 4375000 documents. Done indexing 4400000 documents. Done indexing 4425000 documents. Done indexing 4450000 documents. Done indexing 4475000 documents. Done indexing 4500000 documents. Done indexing 4525000 documents. Done indexing 4550000 documents. Done indexing 4575000 documents. Done indexing 4600000 documents. Done indexing 4625000 documents. Done indexing 4650000 documents. Done indexing 4675000 documents. Done indexing 4700000 documents. Done indexing 4725000 documents. Done indexing 4750000 documents. Done indexing 4775000 documents. Done indexing 4800000 documents. Done indexing 4825000 documents. Done indexing 4850000 documents. Done indexing 4875000 documents. Done indexing 4900000 documents. Done indexing 4925000 documents. Done indexing 4950000 documents. Done indexing 4975000 documents. Done indexing 5000000 documents. Done indexing 5025000 documents. Done indexing 5050000 documents. Done indexing 5075000 documents. Done indexing 5100000 documents. Done indexing 5125000 documents. Done indexing 5150000 documents. Done indexing 5175000 documents. Done indexing 5200000 documents. Done indexing 5225000 documents. Done indexing 5250000 documents. Done indexing 5275000 documents. Done indexing 5300000 documents. Done indexing 5325000 documents. Done indexing 5350000 documents. Done indexing 5375000 documents. Done indexing 5400000 documents. Done indexing 5425000 documents. Done indexing 5450000 documents. Done indexing 5475000 documents. Done indexing 5500000 documents. Done indexing 5525000 documents. Done indexing 5550000 documents. Done indexing 5575000 documents. Done indexing 5600000 documents. Done indexing 5625000 documents. Done indexing 5650000 documents. Done indexing 5675000 documents. Done indexing 5700000 documents. Done indexing 5725000 documents. Done indexing 5750000 documents. Done indexing 5775000 documents. Done indexing 5800000 documents. Done indexing 5825000 documents. Done indexing 5850000 documents. Done indexing 5875000 documents. Done indexing 5900000 documents. Done indexing 5925000 documents. Done indexing 5950000 documents. Done indexing 5975000 documents. Done indexing 6000000 documents. Done indexing 6025000 documents. Done indexing 6050000 documents. Done indexing 6075000 documents. Done indexing 6100000 documents. Done indexing 6125000 documents. Done indexing 6150000 documents. Done indexing 6175000 documents. Done indexing 6200000 documents. Done indexing 6225000 documents. Done indexing 6250000 documents. Done indexing 6275000 documents. Done indexing 6300000 documents. Done indexing 6325000 documents. Done indexing 6350000 documents. Done indexing 6375000 documents. Done indexing 6400000 documents. Done indexing 6425000 documents. Done indexing 6450000 documents. Done indexing 6475000 documents. Done indexing 6500000 documents. Done indexing 6525000 documents. Done indexing 6550000 documents. Done indexing 6575000 documents. Done indexing 6600000 documents. Done indexing 6625000 documents. Done indexing 6650000 documents. Done indexing 6675000 documents. Done indexing 6700000 documents. Done indexing 6725000 documents. Done indexing 6750000 documents. Done indexing 6775000 documents. Done indexing 6800000 documents. Done indexing 6825000 documents. Done indexing 6850000 documents. Done indexing 6875000 documents. Done indexing 6900000 documents. Done indexing 6925000 documents. Done indexing 6950000 documents. Done indexing 6975000 documents. Done indexing 7000000 documents. Done indexing 7025000 documents. Done indexing 7050000 documents. Done indexing 7075000 documents. Done indexing 7100000 documents. Done indexing 7125000 documents. Done indexing 7150000 documents. Done indexing 7175000 documents. Done indexing 7200000 documents. Done indexing 7225000 documents. Done indexing 7250000 documents. Done indexing 7275000 documents. Done indexing 7300000 documents. Done indexing 7325000 documents. Done indexing 7350000 documents. Done indexing 7375000 documents. Done indexing 7400000 documents. Done indexing 7425000 documents. Done indexing 7450000 documents. Done indexing 7475000 documents. Done indexing 7500000 documents. Done indexing 7525000 documents. Done indexing 7550000 documents. Done indexing 7575000 documents. Done indexing 7600000 documents. Done indexing 7625000 documents. Done indexing 7650000 documents. Done indexing 7675000 documents. Done indexing 7700000 documents. Done indexing 7725000 documents. Done indexing 7750000 documents. Done indexing 7775000 documents. Done indexing 7800000 documents. Done indexing 7825000 documents. Done indexing 7850000 documents. Done indexing 7875000 documents. Done indexing 7900000 documents. Done indexing 7925000 documents. Done indexing 7950000 documents. Done indexing 7975000 documents. Done indexing 8000000 documents. now IndexWriter.commit() now wait for already running merges to finish 0.0 sec: 100 segments, 10 merges 124.1s _14r: 8 segs, 1110.6 K docs, 4998.3 MB 35.5s _19w: 8 segs, 39.4 K docs, 175.9 MB 30.4s _1a5: 8 segs, 41.4 K docs, 184.8 MB 25.5s _1ad: 8 segs, 80.7 K docs, 361.2 MB 19.6s _1am: 8 segs, 42.8 K docs, 191.0 MB 15.9s _1at: 8 segs, 117.2 K docs, 525.2 MB 12.1s _1b0: 8 segs, 569.1 K docs, 2559.2 MB 9.5s _1b7: 9 segs, 46.9 K docs, 209.6 MB 5.0s _1bg: 8 segs, 41.6 K docs, 185.9 MB 5.0 sec: 93 segments, 9 merges 129.1s _14r: 8 segs, 1110.6 K docs, 4998.3 MB 35.4s _1a5: 8 segs, 41.4 K docs, 184.8 MB 30.5s _1ad: 8 segs, 80.7 K docs, 361.2 MB 24.6s _1am: 8 segs, 42.8 K docs, 191.0 MB 20.9s _1at: 8 segs, 117.2 K docs, 525.2 MB 17.1s _1b0: 8 segs, 569.1 K docs, 2559.2 MB 14.6s _1b7: 9 segs, 46.9 K docs, 209.6 MB 10.0s _1bg: 8 segs, 41.6 K docs, 185.9 MB 5.0s _1bl: 12 segs, 53.3 K docs, 237.7 MB 10.0 sec: 86 segments, 8 merges 134.1s _14r: 8 segs, 1110.6 K docs, 4998.3 MB 35.5s _1ad: 8 segs, 80.7 K docs, 361.2 MB 29.7s _1am: 8 segs, 42.8 K docs, 191.0 MB 25.9s _1at: 8 segs, 117.2 K docs, 525.2 MB 22.1s _1b0: 8 segs, 569.1 K docs, 2559.2 MB 19.6s _1b7: 9 segs, 46.9 K docs, 209.6 MB 15.0s _1bg: 8 segs, 41.6 K docs, 185.9 MB 10.0s _1bl: 12 segs, 53.3 K docs, 237.7 MB 15.0 sec: 79 segments, 7 merges 139.1s _14r: 8 segs, 1110.6 K docs, 4998.3 MB 40.5s _1ad: 8 segs, 80.7 K docs, 361.2 MB 30.9s _1at: 8 segs, 117.2 K docs, 525.2 MB 27.1s _1b0: 8 segs, 569.1 K docs, 2559.2 MB 24.6s _1b7: 9 segs, 46.9 K docs, 209.6 MB 20.0s _1bg: 8 segs, 41.6 K docs, 185.9 MB 15.0s _1bl: 12 segs, 53.3 K docs, 237.7 MB 20.0 sec: 79 segments, 7 merges 144.1s _14r: 8 segs, 1110.6 K docs, 4998.3 MB 45.5s _1ad: 8 segs, 80.7 K docs, 361.2 MB 35.9s _1at: 8 segs, 117.2 K docs, 525.2 MB 32.1s _1b0: 8 segs, 569.1 K docs, 2559.2 MB 29.6s _1b7: 9 segs, 46.9 K docs, 209.6 MB 25.0s _1bg: 8 segs, 41.6 K docs, 185.9 MB 20.0s _1bl: 12 segs, 53.3 K docs, 237.7 MB 25.1 sec: 65 segments, 5 merges 149.2s _14r: 8 segs, 1110.6 K docs, 4998.3 MB 41.0s _1at: 8 segs, 117.2 K docs, 525.2 MB 37.2s _1b0: 8 segs, 569.1 K docs, 2559.2 MB 34.6s _1b7: 9 segs, 46.9 K docs, 209.6 MB 25.1s _1bl: 12 segs, 53.3 K docs, 237.7 MB 30.1 sec: 57 segments, 5 merges 154.2s _14r: 8 segs, 1110.6 K docs, 4998.3 MB 46.0s _1at: 8 segs, 117.2 K docs, 525.2 MB 42.2s _1b0: 8 segs, 569.1 K docs, 2559.2 MB 30.1s _1bl: 12 segs, 53.3 K docs, 237.7 MB 3.0s _1bm: 8 segs, 339.0 K docs, 1522.2 MB 35.0 sec: 57 segments, 5 merges 159.1s _14r: 8 segs, 1110.6 K docs, 4998.3 MB 50.9s _1at: 8 segs, 117.2 K docs, 525.2 MB 47.1s _1b0: 8 segs, 569.1 K docs, 2559.2 MB 35.0s _1bl: 12 segs, 53.3 K docs, 237.7 MB 7.9s _1bm: 8 segs, 339.0 K docs, 1522.2 MB 40.0 sec: 46 segments, 4 merges 164.1s _14r: 8 segs, 1110.6 K docs, 4998.3 MB 55.9s _1at: 8 segs, 117.2 K docs, 525.2 MB 52.1s _1b0: 8 segs, 569.1 K docs, 2559.2 MB 12.9s _1bm: 8 segs, 339.0 K docs, 1522.2 MB 45.0 sec: 46 segments, 4 merges 169.1s _14r: 8 segs, 1110.6 K docs, 4998.3 MB 60.9s _1at: 8 segs, 117.2 K docs, 525.2 MB 57.1s _1b0: 8 segs, 569.1 K docs, 2559.2 MB 17.9s _1bm: 8 segs, 339.0 K docs, 1522.2 MB 50.0 sec: 46 segments, 4 merges 174.1s _14r: 8 segs, 1110.6 K docs, 4998.3 MB 65.9s _1at: 8 segs, 117.2 K docs, 525.2 MB 62.1s _1b0: 8 segs, 569.1 K docs, 2559.2 MB 22.9s _1bm: 8 segs, 339.0 K docs, 1522.2 MB 55.0 sec: 46 segments, 4 merges 179.1s _14r: 8 segs, 1110.6 K docs, 4998.3 MB 70.9s _1at: 8 segs, 117.2 K docs, 525.2 MB 67.1s _1b0: 8 segs, 569.1 K docs, 2559.2 MB 27.9s _1bm: 8 segs, 339.0 K docs, 1522.2 MB 60.0 sec: 46 segments, 4 merges 184.1s _14r: 8 segs, 1110.6 K docs, 4998.3 MB 75.9s _1at: 8 segs, 117.2 K docs, 525.2 MB 72.1s _1b0: 8 segs, 569.1 K docs, 2559.2 MB 32.9s _1bm: 8 segs, 339.0 K docs, 1522.2 MB 65.0 sec: 46 segments, 4 merges 189.1s _14r: 8 segs, 1110.6 K docs, 4998.3 MB 80.9s _1at: 8 segs, 117.2 K docs, 525.2 MB 77.1s _1b0: 8 segs, 569.1 K docs, 2559.2 MB 37.9s _1bm: 8 segs, 339.0 K docs, 1522.2 MB 70.1 sec: 32 segments, 2 merges 82.2s _1b0: 8 segs, 569.1 K docs, 2559.2 MB 43.0s _1bm: 8 segs, 339.0 K docs, 1522.2 MB 75.1 sec: 32 segments, 2 merges 87.2s _1b0: 8 segs, 569.1 K docs, 2559.2 MB 48.0s _1bm: 8 segs, 339.0 K docs, 1522.2 MB 80.1 sec: 32 segments, 2 merges 92.2s _1b0: 8 segs, 569.1 K docs, 2559.2 MB 53.0s _1bm: 8 segs, 339.0 K docs, 1522.2 MB 85.1 sec: 32 segments, 2 merges 97.2s _1b0: 8 segs, 569.1 K docs, 2559.2 MB 58.0s _1bm: 8 segs, 339.0 K docs, 1522.2 MB 90.0 sec: 32 segments, 2 merges 102.1s _1b0: 8 segs, 569.1 K docs, 2559.2 MB 62.9s _1bm: 8 segs, 339.0 K docs, 1522.2 MB 95.0 sec: 32 segments, 2 merges 107.1s _1b0: 8 segs, 569.1 K docs, 2559.2 MB 67.9s _1bm: 8 segs, 339.0 K docs, 1522.2 MB 100.0 sec: 25 segments, 1 merges 72.9s _1bm: 8 segs, 339.0 K docs, 1522.2 MB 105.0 sec: 25 segments, 1 merges 77.9s _1bm: 8 segs, 339.0 K docs, 1522.2 MB 110.0 sec: 25 segments, 1 merges 82.9s _1bm: 8 segs, 339.0 K docs, 1522.2 MB 115.0 sec: 25 segments, 1 merges 87.9s _1bm: 8 segs, 339.0 K docs, 1522.2 MB done first pass waiting for merges done second pass waiting for merges (CMS.sync()) Indexed 8000000 docs in 898 seconds reindex takes 898.02 sec index has 18 segments: segments_2: _e4(11.0.0):C1134895 _im(11.0.0):C554755 _p5(11.0.0):C1114649 _14r(11.0.0):C1110577 _n3(11.0.0):C463945 _xc(11.0.0):C373694 _xp(11.0.0):C525707 _11i(11.0.0):C390011 _10m(11.0.0):C330937 _17z(11.0.0):C199431 _1b0(11.0.0):C569096 _16o(11.0.0):C369746 _17j(11.0.0):C192001 _186(11.0.0):C80503 _1at(11.0.0):C117151 _1ad(11.0.0):C80650 _1bm(11.0.0):C338995 _1bl(11.0.0):C53257 _e4: 5115.1 MB _im: 2498.6 MB _p5: 5023.8 MB _14r: 5005.5 MB _n3: 2089.3 MB _xc: 1682.6 MB _xp: 2367.6 MB _11i: 1756.2 MB _10m: 1490.1 MB _17z: 897.6 MB _1b0: 2563.2 MB _16o: 1664.9 MB _17j: 864.1 MB _186: 361.9 MB _1at: 527.0 MB _1ad: 362.6 MB _1bm: 1526.4 MB _1bl: 239.3 MB encodingByteSize=4 origByteSize=4 realEncodingByteSize=0.5 index disk usage is 36035.75 MB vector disk usage is 35278.32 MB vector RAM usage is 4028.32 MB exact nn key = cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100 read pre-cached exact match vectors from cache file "knn-reuse/exact-nn/cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100.bin" read pre-cached exact match scores from cache file "knn-reuse/exact-nn/cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100.scores" EXACT_NN_SCORES_PATH: /l/util.nightly/knn-reuse/exact-nn/cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100.scores EXACT_NN_METRIC: dot_product path=/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec dim=1024 vectorEncoding.byteSize=4 1778739 query vectors in queryPath "/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec" searching 1000 query vectors; topK=100, fanout=100 done warmup thread 3 name=main cpu@start=58446976600 cpu@end=72639025139 deltaMS=14192.048539 thread 14 name=Reference Handler cpu@start=1900965 cpu@end=1900965 deltaMS=0.0 thread 15 name=Finalizer cpu@start=156940 cpu@end=156940 deltaMS=0.0 thread 16 name=Signal Dispatcher cpu@start=90740 cpu@end=90740 deltaMS=0.0 thread 40 name=Common-Cleaner cpu@start=2605775 cpu@end=2693870 deltaMS=0.088095 thread 41 name=JFR Recorder Thread cpu@start=15846248470 cpu@end=15847853153 deltaMS=1.604683 thread 42 name=JFR Periodic Tasks cpu@start=62940993338 cpu@end=63623240240 deltaMS=682.246902 thread 45 name=Notification Thread cpu@start=99431 cpu@end=99431 deltaMS=0.0 thread 56 name=hnsw-merge-1-thread-1 cpu@start=980256545961 cpu@end=980256545961 deltaMS=0.0 thread 57 name=hnsw-merge-1-thread-2 cpu@start=980634030634 cpu@end=980634030634 deltaMS=0.0 thread 58 name=hnsw-merge-1-thread-3 cpu@start=982200981796 cpu@end=982200981796 deltaMS=0.0 thread 59 name=hnsw-merge-1-thread-4 cpu@start=985713231964 cpu@end=985713231964 deltaMS=0.0 thread 60 name=hnsw-merge-1-thread-5 cpu@start=983700862373 cpu@end=983700862373 deltaMS=0.0 thread 61 name=hnsw-merge-1-thread-6 cpu@start=980817984280 cpu@end=980817984280 deltaMS=0.0 thread 62 name=hnsw-merge-1-thread-7 cpu@start=982197291482 cpu@end=982197291482 deltaMS=0.0 thread 63 name=hnsw-merge-1-thread-8 cpu@start=980517894339 cpu@end=980517894339 deltaMS=0.0 thread 64 name=hnsw-merge-1-thread-9 cpu@start=981153210146 cpu@end=981153210146 deltaMS=0.0 thread 65 name=hnsw-merge-1-thread-10 cpu@start=982229137032 cpu@end=982229137032 deltaMS=0.0 thread 66 name=hnsw-merge-1-thread-11 cpu@start=982625674138 cpu@end=982625674138 deltaMS=0.0 thread 67 name=hnsw-merge-1-thread-12 cpu@start=983546805779 cpu@end=983546805779 deltaMS=0.0 thread 68 name=hnsw-merge-1-thread-13 cpu@start=982616355109 cpu@end=982616355109 deltaMS=0.0 thread 69 name=hnsw-merge-1-thread-14 cpu@start=982565319742 cpu@end=982565319742 deltaMS=0.0 thread 70 name=hnsw-merge-1-thread-15 cpu@start=982056156698 cpu@end=982056156698 deltaMS=0.0 thread 71 name=hnsw-merge-1-thread-16 cpu@start=984564471915 cpu@end=984564471915 deltaMS=0.0 Average CPU cores used: 1.0472194481211665 completed 1000 searches in 14205 ms: 70 QPS CPU time=14875 ms checking results SUMMARY: 0.897 14.205 14.875 1.047 8000000 KNN 100 100 N/A N/A 100.000 32 100 4 bits 68532 898.02 8908.54 0.00 18 36035.75 null N/A 1.000 35278.320 4028.320 false HNSW no Leaf 0 has 4 layers Leaf 0 has 1134895 documents Graph level=3 size=57, Fanout min=3, mean=8.81, max=19, meandelta=94881.90 % 0 10 20 30 40 50 60 70 80 90 100 0 5 6 7 7 8 9 10 11 12 19 Graph level=2 size=909, Fanout min=7, mean=23.23, max=32, meandelta=45077.61 % 0 10 20 30 40 50 60 70 80 90 100 0 15 17 19 21 23 25 28 32 32 32 Graph level=1 size=34637, Fanout min=3, mean=28.08, max=32, meandelta=37060.91 % 0 10 20 30 40 50 60 70 80 90 100 0 19 23 26 30 32 32 32 32 32 32 Graph level=0 size=1134895, Fanout min=1, mean=39.53, max=64, meandelta=26574.68 % 0 10 20 30 40 50 60 70 80 90 100 0 20 24 28 32 37 42 49 60 64 64 Graph level=3 size=57, connectedness=1.00 Graph level=2 size=909, connectedness=1.00 Graph level=1 size=34637, connectedness=1.00 Graph level=0 size=1134895, connectedness=1.00 Leaf 1 has 4 layers Leaf 1 has 554755 documents Graph level=3 size=22, Fanout min=2, mean=5.09, max=9, meandelta=47529.27 % 0 10 20 30 40 50 60 70 80 90 100 0 3 4 4 4 5 5 6 6 7 9 Graph level=2 size=426, Fanout min=7, mean=19.41, max=32, meandelta=24932.10 % 0 10 20 30 40 50 60 70 80 90 100 0 12 14 15 17 19 21 23 25 29 32 Graph level=1 size=16974, Fanout min=6, mean=27.89, max=32, meandelta=18224.59 % 0 10 20 30 40 50 60 70 80 90 100 0 19 23 26 29 32 32 32 32 32 32 Graph level=0 size=554755, Fanout min=1, mean=39.63, max=64, meandelta=12982.30 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 37 42 49 60 64 64 Graph level=3 size=22, connectedness=1.00 Graph level=2 size=426, connectedness=1.00 Graph level=1 size=16974, connectedness=1.00 Graph level=0 size=554755, connectedness=1.00 Leaf 2 has 4 layers Leaf 2 has 1114649 documents Graph level=3 size=60, Fanout min=2, mean=9.13, max=18, meandelta=84423.24 % 0 10 20 30 40 50 60 70 80 90 100 0 5 6 7 7 8 9 11 12 14 18 Graph level=2 size=1026, Fanout min=7, mean=23.69, max=32, meandelta=42581.94 % 0 10 20 30 40 50 60 70 80 90 100 0 15 17 19 21 24 27 29 32 32 32 Graph level=1 size=33997, Fanout min=3, mean=28.09, max=32, meandelta=36286.36 % 0 10 20 30 40 50 60 70 80 90 100 0 19 23 26 30 32 32 32 32 32 32 Graph level=0 size=1114649, Fanout min=1, mean=39.54, max=64, meandelta=26089.96 % 0 10 20 30 40 50 60 70 80 90 100 0 20 24 28 32 37 42 49 60 64 64 Graph level=3 size=60, connectedness=1.00 Graph level=2 size=1026, connectedness=1.00 Graph level=1 size=33997, connectedness=1.00 Graph level=0 size=1114649, connectedness=1.00 Leaf 3 has 4 layers Leaf 3 has 1110577 documents Graph level=3 size=79, Fanout min=4, mean=10.25, max=22, meandelta=90334.05 % 0 10 20 30 40 50 60 70 80 90 100 0 5 8 8 9 10 11 12 13 15 22 Graph level=2 size=1012, Fanout min=9, mean=23.86, max=32, meandelta=42715.74 % 0 10 20 30 40 50 60 70 80 90 100 0 15 17 19 21 24 26 30 32 32 32 Graph level=1 size=33887, Fanout min=3, mean=28.07, max=32, meandelta=36238.66 % 0 10 20 30 40 50 60 70 80 90 100 0 19 23 26 29 32 32 32 32 32 32 Graph level=0 size=1110577, Fanout min=1, mean=39.55, max=64, meandelta=25991.34 % 0 10 20 30 40 50 60 70 80 90 100 0 20 24 28 32 37 42 49 60 64 64 Graph level=3 size=79, connectedness=1.00 Graph level=2 size=1012, connectedness=1.00 Graph level=1 size=33887, connectedness=1.00 Graph level=0 size=1110577, connectedness=1.00 Leaf 4 has 4 layers Leaf 4 has 463945 documents Graph level=3 size=19, Fanout min=3, mean=4.84, max=11, meandelta=39046.45 % 0 10 20 30 40 50 60 70 80 90 100 0 3 3 3 4 4 4 6 6 6 11 Graph level=2 size=319, Fanout min=6, mean=17.24, max=32, meandelta=23518.23 % 0 10 20 30 40 50 60 70 80 90 100 0 10 12 14 15 16 18 20 22 25 32 Graph level=1 size=14078, Fanout min=5, mean=27.64, max=32, meandelta=15373.96 % 0 10 20 30 40 50 60 70 80 90 100 0 19 22 25 28 32 32 32 32 32 32 Graph level=0 size=463945, Fanout min=1, mean=39.65, max=64, meandelta=10854.18 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 37 42 49 60 64 64 Graph level=3 size=19, connectedness=1.00 Graph level=2 size=319, connectedness=1.00 Graph level=1 size=14078, connectedness=1.00 Graph level=0 size=463945, connectedness=1.00 Leaf 5 has 4 layers Leaf 5 has 373694 documents Graph level=3 size=21, Fanout min=3, mean=6.00, max=9, meandelta=32886.55 % 0 10 20 30 40 50 60 70 80 90 100 0 3 4 5 5 6 6 7 7 8 9 Graph level=2 size=262, Fanout min=5, mean=16.39, max=32, meandelta=19170.33 % 0 10 20 30 40 50 60 70 80 90 100 0 10 12 13 14 16 17 19 20 24 32 Graph level=1 size=11232, Fanout min=8, mean=27.54, max=32, meandelta=12409.77 % 0 10 20 30 40 50 60 70 80 90 100 0 19 22 25 28 31 32 32 32 32 32 Graph level=0 size=373694, Fanout min=1, mean=39.58, max=64, meandelta=8763.04 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 37 42 49 59 64 64 Graph level=3 size=21, connectedness=1.00 Graph level=2 size=262, connectedness=1.00 Graph level=1 size=11232, connectedness=1.00 Graph level=0 size=373694, connectedness=1.00 Leaf 6 has 4 layers Leaf 6 has 525707 documents Graph level=3 size=24, Fanout min=3, mean=5.75, max=9, meandelta=39321.77 % 0 10 20 30 40 50 60 70 80 90 100 0 4 4 4 5 5 6 7 7 8 9 Graph level=2 size=387, Fanout min=8, mean=19.15, max=32, meandelta=24119.62 % 0 10 20 30 40 50 60 70 80 90 100 0 12 14 15 17 18 20 22 24 28 32 Graph level=1 size=15914, Fanout min=6, mean=27.74, max=32, meandelta=17332.25 % 0 10 20 30 40 50 60 70 80 90 100 0 19 22 25 29 32 32 32 32 32 32 Graph level=0 size=525707, Fanout min=1, mean=39.60, max=64, meandelta=12311.99 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 37 42 49 60 64 64 Graph level=3 size=24, connectedness=1.00 Graph level=2 size=387, connectedness=1.00 Graph level=1 size=15914, connectedness=1.00 Graph level=0 size=525707, connectedness=1.00 Leaf 7 has 4 layers Leaf 7 has 390011 documents Graph level=3 size=21, Fanout min=2, mean=5.62, max=9, meandelta=35612.80 % 0 10 20 30 40 50 60 70 80 90 100 0 3 4 4 5 5 6 6 7 8 9 Graph level=2 size=322, Fanout min=6, mean=17.86, max=32, meandelta=17785.80 % 0 10 20 30 40 50 60 70 80 90 100 0 11 13 14 16 17 19 20 23 26 32 Graph level=1 size=11882, Fanout min=8, mean=27.64, max=32, meandelta=12813.99 % 0 10 20 30 40 50 60 70 80 90 100 0 19 22 25 28 32 32 32 32 32 32 Graph level=0 size=390011, Fanout min=1, mean=39.65, max=64, meandelta=9127.80 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 29 32 37 42 49 60 64 64 Graph level=3 size=21, connectedness=1.00 Graph level=2 size=322, connectedness=1.00 Graph level=1 size=11882, connectedness=1.00 Graph level=0 size=390011, connectedness=1.00 Leaf 8 has 4 layers Leaf 8 has 330937 documents Graph level=3 size=19, Fanout min=2, mean=4.84, max=9, meandelta=26060.38 % 0 10 20 30 40 50 60 70 80 90 100 0 2 3 4 4 5 5 5 6 6 9 Graph level=2 size=278, Fanout min=7, mean=17.69, max=32, meandelta=15208.01 % 0 10 20 30 40 50 60 70 80 90 100 0 11 13 14 16 17 18 20 22 25 32 Graph level=1 size=10153, Fanout min=7, mean=27.63, max=32, meandelta=10882.97 % 0 10 20 30 40 50 60 70 80 90 100 0 19 22 25 28 32 32 32 32 32 32 Graph level=0 size=330937, Fanout min=1, mean=39.61, max=64, meandelta=7755.66 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 29 32 37 42 49 59 64 64 Graph level=3 size=19, connectedness=1.00 Graph level=2 size=278, connectedness=1.00 Graph level=1 size=10153, connectedness=1.00 Graph level=0 size=330937, connectedness=1.00 Leaf 9 has 4 layers Leaf 9 has 199431 documents Graph level=3 size=5, Fanout min=1, mean=1.60, max=3, meandelta=13821.38 % 0 10 20 30 40 50 60 70 80 90 100 0 1 1 1 1 1 1 1 2 2 3 Graph level=2 size=182, Fanout min=5, mean=14.81, max=32, meandelta=11298.43 % 0 10 20 30 40 50 60 70 80 90 100 0 8 10 12 13 14 15 17 18 22 32 Graph level=1 size=6228, Fanout min=8, mean=27.26, max=32, meandelta=6679.94 % 0 10 20 30 40 50 60 70 80 90 100 0 18 21 24 27 31 32 32 32 32 32 Graph level=0 size=199431, Fanout min=1, mean=39.37, max=64, meandelta=4703.36 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 36 42 49 58 64 64 Graph level=3 size=5, connectedness=1.00 Graph level=2 size=182, connectedness=1.00 Graph level=1 size=6228, connectedness=1.00 Graph level=0 size=199431, connectedness=1.00 Leaf 10 has 4 layers Leaf 10 has 569096 documents Graph level=3 size=23, Fanout min=2, mean=4.78, max=9, meandelta=42312.36 % 0 10 20 30 40 50 60 70 80 90 100 0 2 3 4 4 4 5 5 5 7 9 Graph level=2 size=425, Fanout min=6, mean=19.17, max=32, meandelta=25809.49 % 0 10 20 30 40 50 60 70 80 90 100 0 12 14 15 17 19 20 22 25 28 32 Graph level=1 size=17323, Fanout min=4, mean=27.79, max=32, meandelta=18777.98 % 0 10 20 30 40 50 60 70 80 90 100 0 19 22 25 29 32 32 32 32 32 32 Graph level=0 size=569096, Fanout min=1, mean=39.63, max=64, meandelta=13311.96 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 37 42 49 60 64 64 Graph level=3 size=23, connectedness=1.00 Graph level=2 size=425, connectedness=1.00 Graph level=1 size=17323, connectedness=1.00 Graph level=0 size=569096, connectedness=1.00 Leaf 11 has 4 layers Leaf 11 has 369746 documents Graph level=3 size=20, Fanout min=3, mean=5.30, max=8, meandelta=28683.32 % 0 10 20 30 40 50 60 70 80 90 100 0 3 4 4 5 5 5 6 7 7 8 Graph level=2 size=268, Fanout min=7, mean=16.91, max=32, meandelta=18524.91 % 0 10 20 30 40 50 60 70 80 90 100 0 11 13 14 15 16 17 19 20 24 32 Graph level=1 size=11126, Fanout min=8, mean=27.62, max=32, meandelta=12214.02 % 0 10 20 30 40 50 60 70 80 90 100 0 19 22 25 28 32 32 32 32 32 32 Graph level=0 size=369746, Fanout min=1, mean=39.60, max=64, meandelta=8667.96 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 37 42 49 59 64 64 Graph level=3 size=20, connectedness=1.00 Graph level=2 size=268, connectedness=1.00 Graph level=1 size=11126, connectedness=1.00 Graph level=0 size=369746, connectedness=1.00 Leaf 12 has 4 layers Leaf 12 has 192001 documents Graph level=3 size=5, Fanout min=2, mean=2.40, max=3, meandelta=24312.33 % 0 10 20 30 40 50 60 70 80 90 100 0 1 2 2 2 2 2 2 3 3 3 Graph level=2 size=169, Fanout min=4, mean=13.94, max=28, meandelta=11201.36 % 0 10 20 30 40 50 60 70 80 90 100 0 9 10 11 12 13 15 16 18 20 28 Graph level=1 size=5974, Fanout min=6, mean=27.07, max=32, meandelta=6473.51 % 0 10 20 30 40 50 60 70 80 90 100 0 18 21 24 27 30 32 32 32 32 32 Graph level=0 size=192001, Fanout min=1, mean=39.33, max=64, meandelta=4533.75 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 36 42 48 58 64 64 Graph level=3 size=5, connectedness=1.00 Graph level=2 size=169, connectedness=1.00 Graph level=1 size=5974, connectedness=1.00 Graph level=0 size=192001, connectedness=1.00 Leaf 13 has 4 layers Leaf 13 has 80503 documents Graph level=3 size=2, Fanout min=1, mean=1.00, max=1, meandelta=0.00 % 0 10 20 30 40 50 60 70 80 90 100 0 1 1 1 1 1 1 1 1 1 1 Graph level=2 size=61, Fanout min=4, mean=8.75, max=18, meandelta=7458.39 % 0 10 20 30 40 50 60 70 80 90 100 0 5 6 7 8 8 9 9 11 12 18 Graph level=1 size=2498, Fanout min=8, mean=25.89, max=32, meandelta=2829.74 % 0 10 20 30 40 50 60 70 80 90 100 0 16 19 22 25 27 31 32 32 32 32 Graph level=0 size=80503, Fanout min=3, mean=38.75, max=64, meandelta=1929.53 % 0 10 20 30 40 50 60 70 80 90 100 0 20 24 28 32 36 41 47 57 64 64 Graph level=3 size=2, connectedness=1.00 Graph level=2 size=61, connectedness=1.00 Graph level=1 size=2498, connectedness=1.00 Graph level=0 size=80503, connectedness=1.00 Leaf 14 has 4 layers Leaf 14 has 117151 documents Graph level=3 size=5, Fanout min=1, mean=2.40, max=4, meandelta=16021.17 % 0 10 20 30 40 50 60 70 80 90 100 0 1 1 1 2 2 2 2 3 3 4 Graph level=2 size=112, Fanout min=5, mean=11.98, max=26, meandelta=8202.99 % 0 10 20 30 40 50 60 70 80 90 100 0 7 8 9 10 11 13 14 15 17 26 Graph level=1 size=3631, Fanout min=7, mean=26.47, max=32, meandelta=4037.23 % 0 10 20 30 40 50 60 70 80 90 100 0 17 20 23 26 29 32 32 32 32 32 Graph level=0 size=117151, Fanout min=3, mean=39.07, max=64, meandelta=2782.83 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 36 41 48 58 64 64 Graph level=3 size=5, connectedness=1.00 Graph level=2 size=112, connectedness=1.00 Graph level=1 size=3631, connectedness=1.00 Graph level=0 size=117151, connectedness=1.00 Leaf 15 has 4 layers Leaf 15 has 80650 documents Graph level=3 size=4, Fanout min=2, mean=2.00, max=2, meandelta=18355.00 % 0 10 20 30 40 50 60 70 80 90 100 0 1 1 2 2 2 2 2 2 2 2 Graph level=2 size=71, Fanout min=4, mean=9.21, max=18, meandelta=7012.95 % 0 10 20 30 40 50 60 70 80 90 100 0 6 6 7 8 9 9 10 12 12 18 Graph level=1 size=2447, Fanout min=8, mean=26.09, max=32, meandelta=2814.50 % 0 10 20 30 40 50 60 70 80 90 100 0 17 20 22 25 28 31 32 32 32 32 Graph level=0 size=80650, Fanout min=3, mean=38.74, max=64, meandelta=1930.88 % 0 10 20 30 40 50 60 70 80 90 100 0 20 24 28 32 36 41 47 57 64 64 Graph level=3 size=4, connectedness=1.00 Graph level=2 size=71, connectedness=1.00 Graph level=1 size=2447, connectedness=1.00 Graph level=0 size=80650, connectedness=1.00 Leaf 16 has 4 layers Leaf 16 has 338995 documents Graph level=3 size=22, Fanout min=2, mean=5.45, max=9, meandelta=30547.47 % 0 10 20 30 40 50 60 70 80 90 100 0 3 4 4 4 5 6 6 7 8 9 Graph level=2 size=262, Fanout min=7, mean=16.36, max=32, meandelta=15246.68 % 0 10 20 30 40 50 60 70 80 90 100 0 10 11 13 14 16 17 19 20 24 32 Graph level=1 size=10183, Fanout min=6, mean=27.53, max=32, meandelta=11241.36 % 0 10 20 30 40 50 60 70 80 90 100 0 19 22 25 28 32 32 32 32 32 32 Graph level=0 size=338995, Fanout min=1, mean=39.63, max=64, meandelta=7939.39 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 29 32 37 42 49 59 64 64 Graph level=3 size=22, connectedness=1.00 Graph level=2 size=262, connectedness=1.00 Graph level=1 size=10183, connectedness=1.00 Graph level=0 size=338995, connectedness=1.00 Leaf 17 has 4 layers Leaf 17 has 53257 documents Graph level=3 size=4, Fanout min=1, mean=1.50, max=2, meandelta=8775.67 % 0 10 20 30 40 50 60 70 80 90 100 0 1 1 1 1 1 1 1 2 2 2 Graph level=2 size=49, Fanout min=3, mean=8.65, max=15, meandelta=4911.87 % 0 10 20 30 40 50 60 70 80 90 100 0 5 6 7 8 8 9 10 10 13 15 Graph level=1 size=1627, Fanout min=8, mean=24.91, max=32, meandelta=1937.78 % 0 10 20 30 40 50 60 70 80 90 100 0 16 18 21 23 26 28 32 32 32 32 Graph level=0 size=53257, Fanout min=2, mean=38.39, max=64, meandelta=1286.09 % 0 10 20 30 40 50 60 70 80 90 100 0 20 24 28 31 35 40 47 56 64 64 Graph level=3 size=4, connectedness=1.00 Graph level=2 size=49, connectedness=1.00 Graph level=1 size=1627, connectedness=1.00 Graph level=0 size=53257, connectedness=1.00 Performance counter stats for '/usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build:/l/util.nightly/build --add-modules jdk.incubator.vector --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmFalse.jfr knn.KnnGraphTester -maxConn 32 -dim 1024 -docs /big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec -ndoc 8000000 -topK 100 -numIndexThreads 8 -beamWidthIndex 100 -search-and-stats /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -metric dot_product -numMergeThread 16 -numMergeWorker 48 -reindex -quantize -quantizeBits 4 -quantizeCompress': 30,946,362.07 msec task-clock:u 117,231,128,231,589 cycles:u (36.36%) 122,572,054,467,188 instructions:u (36.36%) 2,740,602,162,636 cache-references:u (36.36%) 1,217,174,141,795 cache-misses:u (36.36%) 44,408,409,339,173 L1-dcache-loads:u (36.36%) 1,470,994,544,661 L1-dcache-load-misses:u (36.36%) 4,341,570,461,446 L1-icache-loads:u (36.36%) 11,202,872,478 L1-icache-load-misses:u (36.36%) LLC-loads:u LLC-load-misses:u LLC-stores:u LLC-store-misses:u LLC-prefetches:u LLC-prefetch-misses:u 23,589,149 faults:u 22,866,083 minor-faults:u 4,049 major-faults:u 10,485,329,522,871 branches:u (36.36%) 88,193,476,881 branch-misses:u (36.36%) 1,891,342,206,063 stalled-cycles-frontend:u (36.36%) stalled-cycles-backend:u 1108.268121099 seconds time elapsed 30515.009918000 seconds user 422.231824000 seconds sys took 0:18:28.295852 to run KnnGraphTester result: KNNResultV1(lucene_git_rev='de92f115a3125624bf7c7141b8e700efa9a89427', luceneutil_git_rev='63c1b2b252f377e272313c1ac0f182be79ad78b6', index_vectors_file='/big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec', search_vectors_file='/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec', vector_dims=1024, do_force_merge=False, recall=0.897, cpu_time_ms=14.205, net_cpu_ms=14.875, avg_cpu_core_count=1.047, num_docs=8000000, top_k=100, fanout=100, max_conn=32, beam_width=100, quantize_desc='4 bits', total_visited=68532, index_time_sec=898.02, index_docs_per_sec=8908.54, force_merge_time_sec=0.0, index_num_segments=18, index_size_on_disk_mb=36035.75, selectivity=None, pre_post_filter='null', vec_disk_mb=35278.32, vec_ram_mb=4028.32, graph_level_conn_p_values={3: (4, {0: 0, 10: 1, 20: 1, 30: 1, 40: 1, 50: 1, 60: 1, 70: 1, 80: 2, 90: 2, 100: 2}), 2: (49, {0: 0, 10: 5, 20: 6, 30: 7, 40: 8, 50: 8, 60: 9, 70: 10, 80: 10, 90: 13, 100: 15}), 1: (1627, {0: 0, 10: 16, 20: 18, 30: 21, 40: 23, 50: 26, 60: 28, 70: 32, 80: 32, 90: 32, 100: 32}), 0: (53257, {0: 0, 10: 20, 20: 24, 30: 28, 40: 31, 50: 35, 60: 40, 70: 47, 80: 56, 90: 64, 100: 64})}, combined_run_time=datetime.timedelta(seconds=1108, microseconds=295852)) Profiler summary for /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmFalse.jfr Version: 2.1 Chunks: 84 Start: 2026-05-15 20:05:39 (UTC) Duration: 1099 s Event Type Count Size (bytes) ============================================================= jdk.CPUTimeSample 29654766 507680362 jdk.FileWrite 17524599 365034936 jdk.FileRead 8003666 182168551 jdk.ObjectAllocationInNewTLAB 59688 1186235 jdk.BooleanFlag 41664 1317572 jdk.CPULoad 20403 407424 jdk.Compilation 6357 164006 jdk.Checkpoint 5099 26490647 jdk.UnsignedIntFlag 4032 136728 jdk.IntFlag 3696 134812 jdk.StringFlag 2856 110735 jdk.ObjectAllocationOutsideTLAB 1166 20918 jdk.CPUInformation 84 126164 jdk.GCConfiguration 84 2180 jdk.JVMInformation 84 79628 jdk.Metadata 84 9284265 jdk.GarbageCollection 46 1103 jdk.ActiveRecording 0 0 jdk.ActiveSetting 0 0 jdk.AllocationRequiringGC 0 0 jdk.BooleanFlagChanged 0 0 jdk.CPUTimeSamplesLost 0 0 jdk.CPUTimeStampCounter 0 0 jdk.ClassDefine 0 0 jdk.ClassLoad 0 0 jdk.ClassLoaderStatistics 0 0 jdk.ClassLoadingStatistics 0 0 jdk.ClassRedefinition 0 0 jdk.ClassUnload 0 0 jdk.CodeCacheConfiguration 0 0 jdk.CodeCacheFull 0 0 jdk.CodeCacheStatistics 0 0 jdk.CompilationFailure 0 0 jdk.CompilerConfiguration 0 0 jdk.CompilerInlining 0 0 jdk.CompilerPhase 0 0 jdk.CompilerQueueUtilization 0 0 jdk.CompilerStatistics 0 0 jdk.ConcurrentModeFailure 0 0 jdk.ContainerCPUThrottling 0 0 jdk.ContainerCPUUsage 0 0 jdk.ContainerConfiguration 0 0 jdk.ContainerIOUsage 0 0 jdk.ContainerMemoryUsage 0 0 jdk.ContinuationFreeze 0 0 jdk.ContinuationFreezeFast 0 0 jdk.ContinuationFreezeSlow 0 0 jdk.ContinuationThaw 0 0 jdk.ContinuationThawFast 0 0 jdk.ContinuationThawSlow 0 0 jdk.DataLoss 0 0 jdk.Deoptimization 0 0 jdk.DeprecatedInvocation 0 0 jdk.Deserialization 0 0 jdk.DirectBufferStatistics 0 0 jdk.DoubleFlag 0 0 jdk.DoubleFlagChanged 0 0 jdk.DumpReason 0 0 jdk.EvacuationFailed 0 0 jdk.EvacuationInformation 0 0 jdk.ExceptionStatistics 0 0 jdk.ExecuteVMOperation 0 0 jdk.ExecutionSample 0 0 jdk.FileForce 0 0 jdk.FinalizerStatistics 0 0 jdk.Flush 0 0 jdk.G1AdaptiveIHOP 0 0 jdk.G1BasicIHOP 0 0 jdk.G1EvacuationOldStatistics 0 0 jdk.G1EvacuationYoungStatistics 0 0 jdk.G1GarbageCollection 0 0 jdk.G1HeapRegionInformation 0 0 jdk.G1HeapRegionTypeChange 0 0 jdk.G1HeapSummary 0 0 jdk.G1MMU 0 0 jdk.GCCPUTime 0 0 jdk.GCHeapConfiguration 0 0 jdk.GCHeapMemoryPoolUsage 0 0 jdk.GCHeapMemoryUsage 0 0 jdk.GCHeapSummary 0 0 jdk.GCPhaseConcurrent 0 0 jdk.GCPhaseConcurrentLevel1 0 0 jdk.GCPhaseConcurrentLevel2 0 0 jdk.GCPhaseParallel 0 0 jdk.GCPhasePause 0 0 jdk.GCPhasePauseLevel1 0 0 jdk.GCPhasePauseLevel2 0 0 jdk.GCPhasePauseLevel3 0 0 jdk.GCPhasePauseLevel4 0 0 jdk.GCReferenceStatistics 0 0 jdk.GCSurvivorConfiguration 0 0 jdk.GCTLABConfiguration 0 0 jdk.HeapDump 0 0 jdk.InitialEnvironmentVariable 0 0 jdk.InitialSecurityProperty 0 0 jdk.InitialSystemProperty 0 0 jdk.IntFlagChanged 0 0 jdk.JITRestart 0 0 jdk.JavaAgent 0 0 jdk.JavaErrorThrow 0 0 jdk.JavaExceptionThrow 0 0 jdk.JavaMonitorDeflate 0 0 jdk.JavaMonitorEnter 0 0 jdk.JavaMonitorInflate 0 0 jdk.JavaMonitorNotify 0 0 jdk.JavaMonitorStatistics 0 0 jdk.JavaMonitorWait 0 0 jdk.JavaThreadStatistics 0 0 jdk.LongFlag 0 0 jdk.LongFlagChanged 0 0 jdk.MetaspaceAllocationFailure 0 0 jdk.MetaspaceChunkFreeListSummary 0 0 jdk.MetaspaceGCThreshold 0 0 jdk.MetaspaceOOM 0 0 jdk.MetaspaceSummary 0 0 jdk.MethodTiming 0 0 jdk.MethodTrace 0 0 jdk.ModuleExport 0 0 jdk.ModuleRequire 0 0 jdk.NativeAgent 0 0 jdk.NativeLibrary 0 0 jdk.NativeLibraryLoad 0 0 jdk.NativeLibraryUnload 0 0 jdk.NativeMemoryUsage 0 0 jdk.NativeMemoryUsageTotal 0 0 jdk.NativeMethodSample 0 0 jdk.NetworkUtilization 0 0 jdk.OSInformation 0 0 jdk.ObjectAllocationSample 0 0 jdk.ObjectCount 0 0 jdk.ObjectCountAfterGC 0 0 jdk.OldGarbageCollection 0 0 jdk.OldObjectSample 0 0 jdk.PSHeapSummary 0 0 jdk.ParallelOldGarbageCollection 0 0 jdk.PhysicalMemory 0 0 jdk.ProcessStart 0 0 jdk.PromoteObjectInNewPLAB 0 0 jdk.PromoteObjectOutsidePLAB 0 0 jdk.PromotionFailed 0 0 jdk.RedefineClasses 0 0 jdk.ReservedStackActivation 0 0 jdk.ResidentSetSize 0 0 jdk.RetransformClasses 0 0 jdk.SafepointBegin 0 0 jdk.SafepointEnd 0 0 jdk.SafepointLatency 0 0 jdk.SafepointStateSynchronization 0 0 jdk.SecurityPropertyModification 0 0 jdk.SecurityProviderService 0 0 jdk.SerializationMisdeclaration 0 0 jdk.ShenandoahEvacuationInformation 0 0 jdk.ShenandoahHeapRegionInformation 0 0 jdk.ShenandoahHeapRegionStateChange 0 0 jdk.Shutdown 0 0 jdk.SocketRead 0 0 jdk.SocketWrite 0 0 jdk.StringFlagChanged 0 0 jdk.StringTableStatistics 0 0 jdk.SwapSpace 0 0 jdk.SymbolTableStatistics 0 0 jdk.SyncOnValueBasedClass 0 0 jdk.SystemGC 0 0 jdk.SystemProcess 0 0 jdk.TLSHandshake 0 0 jdk.TenuringDistribution 0 0 jdk.ThreadAllocationStatistics 0 0 jdk.ThreadCPULoad 0 0 jdk.ThreadContextSwitchRate 0 0 jdk.ThreadDump 0 0 jdk.ThreadEnd 0 0 jdk.ThreadPark 0 0 jdk.ThreadSleep 0 0 jdk.ThreadStart 0 0 jdk.UnsignedIntFlagChanged 0 0 jdk.UnsignedLongFlag 0 0 jdk.UnsignedLongFlagChanged 0 0 jdk.VirtualThreadEnd 0 0 jdk.VirtualThreadPinned 0 0 jdk.VirtualThreadStart 0 0 jdk.VirtualThreadSubmitFailed 0 0 jdk.VirtualizationInformation 0 0 jdk.X509Certificate 0 0 jdk.X509Validation 0 0 jdk.YoungGarbageCollection 0 0 jdk.YoungGenerationConfiguration 0 0 jdk.ZAllocationStall 0 0 jdk.ZOldGarbageCollection 0 0 jdk.ZPageAllocation 0 0 jdk.ZRelocationSet 0 0 jdk.ZRelocationSetGroup 0 0 jdk.ZStatisticsCounter 0 0 jdk.ZStatisticsSampler 0 0 jdk.ZThreadPhase 0 0 jdk.ZUncommit 0 0 jdk.ZYoungGarbageCollection 0 0 profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmFalse.jfr Profiler for cpu at stackSize=1 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmFalse.jfr is 1043.66 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 29654766 events (total: 29M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 36.76% 10M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] 28.50% 8M jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] 14.36% 4M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] 4.69% 1M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] 4.01% 1M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] 2.57% 760720 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] 1.35% 400437 org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] 1.04% 309556 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] 0.84% 247873 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():739 [Inlined code] 0.60% 177396 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] 0.55% 162192 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] 0.34% 101251 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] 0.31% 91067 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] 0.30% 89059 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():193 [JIT compiled code] 0.28% 84327 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] 0.27% 81095 java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():499 [Inlined code] 0.23% 67687 org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] 0.16% 47871 jdk.jfr.internal.JVM#emitEvent() [Native code] 0.15% 44098 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] 0.14% 42754 org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():512 [JIT compiled code] 0.14% 41083 sun.nio.ch.NativeThread#current0() [Native code] 0.14% 41022 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] 0.12% 36669 org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] 0.12% 35467 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] 0.11% 34068 org.apache.lucene.store.ChecksumIndexInput#skipByReading():81 [JIT compiled code] 0.10% 30867 org.apache.lucene.util.hnsw.NeighborArray#sort():171 [Inlined code] 0.10% 30393 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():363 [JIT compiled code] 0.10% 28212 org.apache.lucene.store.RateLimitedIndexOutput#writeBytes():55 [Inlined code] 0.09% 28089 org.apache.lucene.util.TernaryLongHeap#downHeap():246 [Inlined code] 0.09% 26235 sun.nio.ch.UnixFileDispatcherImpl#read0() [Native code] 0.09% 25416 org.apache.lucene.util.TernaryLongHeap#downHeap():235 [Inlined code] 0.08% 23914 jdk.jfr.internal.event.EventWriter#reserveEventSizeField():199 [Inlined code] 0.07% 21212 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#calculateCentroid():488 [JIT compiled code] 0.07% 20097 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] 0.05% 15593 jdk.jfr.internal.event.EventWriter#putUncheckedLong():331 [Inlined code] 0.05% 14654 org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] 0.05% 13902 java.util.concurrent.atomic.LongAdder#add():93 [Inlined code] 0.05% 13413 org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] 0.05% 13359 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$1#score():93 [JIT compiled code] 0.04% 13006 java.util.DualPivotQuicksort#sort():238 [Inlined code] 0.04% 10715 java.util.DualPivotQuicksort#sort():368 [JIT compiled code] 0.04% 10599 org.apache.lucene.store.RateLimitedIndexOutput#writeBytes():60 [Inlined code] 0.03% 8449 org.apache.lucene.util.hnsw.NeighborArray#clear():233 [Inlined code] 0.03% 8412 org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] 0.03% 8168 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] 0.02% 6989 org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter#writeFloat32Vectors():172 [JIT compiled code] 0.02% 6841 knn.IndexerThread#_run():105 [JIT compiled code] 0.02% 6711 org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] 0.02% 6286 org.apache.lucene.search.TopScoreDocCollector#topDocsSize():179 [JIT compiled code] 0.02% 5933 org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmFalse.jfr Profiler for cpu at stackSize=4 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmFalse.jfr is 1043.66 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 29654766 events (total: 29M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 34.61% 10M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 28.47% 8M jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnalignedInternal():3169 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnaligned():3159 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():60 [Inlined code] 14.36% 4M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] 4.69% 1M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] 2.95% 874114 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [JIT compiled code] 2.33% 691430 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#releaseShared():807 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#unlock():903 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():256 [JIT compiled code] 1.35% 400316 org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#collect():713 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():350 [JIT compiled code] 1.01% 300504 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] 0.99% 292134 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] 0.96% 285699 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] 0.84% 247873 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():739 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] 0.66% 195532 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] 0.49% 146552 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.45% 132798 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] 0.38% 112511 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():101 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] 0.28% 84304 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] 0.27% 80910 java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():499 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] 0.25% 74577 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.23% 69280 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#release():720 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$WriteLock#unlock():1154 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():422 [JIT compiled code] 0.22% 65321 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():193 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] 0.17% 49000 org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] 0.15% 44157 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#updateTop():153 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] 0.15% 43934 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] 0.14% 42706 org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():512 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] 0.14% 41076 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#flush():156 [JIT compiled code] 0.13% 38096 jdk.jfr.internal.JVM#emitEvent() [Native code] at jdk.jfr.internal.periodic.JVMEventTask#execute():54 [Inlined code] at jdk.jfr.internal.periodic.PeriodicTask#run():125 [Inlined code] at jdk.jfr.internal.periodic.PeriodicEvents#doPeriodic():145 [JIT compiled code] 0.12% 35426 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.11% 33389 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.10% 30847 org.apache.lucene.util.hnsw.NeighborArray#sort():171 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.10% 28872 sun.nio.ch.NativeThread#current0() [Native code] at sun.nio.ch.NativeThread#current():51 [Inlined code] at sun.nio.ch.NativeThreadSet#add():48 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():349 [Inlined code] 0.09% 26673 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.09% 26228 sun.nio.ch.UnixFileDispatcherImpl#read0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#read():51 [Inlined code] at sun.nio.ch.IOUtil#readIntoNativeBuffer():341 [Inlined code] at sun.nio.ch.IOUtil#read():307 [Inlined code] 0.09% 25917 org.apache.lucene.store.RateLimitedIndexOutput#writeBytes():55 [Inlined code] at org.apache.lucene.store.DataOutput#writeBytes():54 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter#writeVectorData():302 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter#mergeOneFlatVectorField():235 [Interpreted code] 0.08% 23908 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#insertSortedInternal():184 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#sort():164 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] 0.08% 23906 jdk.jfr.internal.event.EventWriter#reserveEventSizeField():199 [Inlined code] at jdk.jfr.internal.event.EventWriter#beginEvent():245 [Inlined code] at jdk.internal.event.FileWriteEvent#commit() [JIT compiled code] at jdk.internal.event.FileWriteEvent#offer():69 [Inlined code] 0.08% 22411 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] 0.07% 21749 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():193 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#flush():156 [JIT compiled code] 0.07% 21212 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#calculateCentroid():488 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeAndRecalculateCentroids():459 [Interpreted code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():331 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] 0.07% 20450 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Interpreted code] 0.07% 19630 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#pop():124 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#pop():129 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():322 [JIT compiled code] 0.07% 19558 org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] 0.06% 18339 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():363 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.06% 16573 org.apache.lucene.util.TernaryLongHeap#downHeap():235 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#updateTop():153 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] 0.06% 16326 org.apache.lucene.store.ChecksumIndexInput#skipByReading():81 [JIT compiled code] at org.apache.lucene.store.ChecksumIndexInput#seek():64 [JIT compiled code] at org.apache.lucene.codecs.CodecUtil#checksumEntireFile():619 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsReader#checkIntegrity():194 [JIT compiled code] 0.05% 15966 org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.05% 15461 jdk.jfr.internal.event.EventWriter#putUncheckedLong():331 [Inlined code] at jdk.jfr.internal.event.EventWriter#putLong():121 [Inlined code] at jdk.internal.event.FileReadEvent#commit() [JIT compiled code] at jdk.internal.event.FileReadEvent#offer():71 [Inlined code] 0.05% 15097 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.05% 13788 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#pop():124 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#pop():129 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popNode():667 [Inlined code] 0.04% 12163 sun.nio.ch.NativeThread#current0() [Native code] at sun.nio.ch.NativeThread#current():51 [Inlined code] at sun.nio.ch.NativeThreadSet#add():48 [Inlined code] at sun.nio.ch.FileChannelImpl#implRead():245 [Inlined code] 0.04% 11863 org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmFalse.jfr Profiler for cpu at stackSize=12 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmFalse.jfr is 1043.66 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 29654766 events (total: 29M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 22.66% 6M jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnalignedInternal():3169 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnaligned():3159 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():60 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():53 [Inlined code] at java.lang.invoke.VarHandleGuards#guard_LJ_I():251 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#get():742 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#readInt():270 [Inlined code] at org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#vectorValue():131 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():245 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] 16.24% 4M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] 12.55% 3M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 9.97% 2M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Inlined code] 8.13% 2M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] 3.76% 1M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 2.96% 878722 jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnalignedInternal():3169 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnaligned():3159 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():60 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():53 [Inlined code] at java.lang.invoke.VarHandleGuards#guard_LJ_I():251 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#get():742 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#readInt():270 [Inlined code] at org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#vectorValue():131 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():199 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 1.92% 569925 jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnalignedInternal():3169 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnaligned():3159 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():60 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():53 [Inlined code] at java.lang.invoke.VarHandleGuards#guard_LJ_I():251 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#get():742 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#readInt():270 [Inlined code] at org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#vectorValue():131 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():199 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] 1.44% 425752 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x0000000072197b80#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] 1.38% 410530 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] 1.20% 354572 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x0000000072197b80#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] 1.17% 346303 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#releaseShared():807 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#unlock():903 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():256 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] 1.04% 309391 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#releaseShared():807 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#unlock():903 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():256 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] 0.67% 197817 org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#collect():713 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():350 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 0.61% 179774 org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#collect():713 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():350 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 0.58% 171528 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] 0.56% 164960 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#flush():156 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#flush():209 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#flush():123 [JIT compiled code] at org.apache.lucene.index.VectorValuesConsumer#flush():76 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():325 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] 0.48% 141538 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] 0.46% 137728 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] 0.45% 133551 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] 0.40% 118630 jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnalignedInternal():3169 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnaligned():3159 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():60 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():53 [Inlined code] at java.lang.invoke.VarHandleGuards#guard_LJ_I():251 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#get():742 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#readInt():270 [Inlined code] at org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#vectorValue():131 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():245 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] 0.40% 117205 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():739 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] 0.38% 112585 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():739 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] 0.31% 91312 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x0000000072197b80#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] 0.30% 87620 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Inlined code] 0.28% 84255 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] at sun.nio.ch.IOUtil#write():72 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():355 [Inlined code] at sun.nio.ch.FileChannelImpl#traceImplWrite():374 [Inlined code] at sun.nio.ch.FileChannelImpl#write():333 [Inlined code] at sun.nio.ch.ChannelOutputStream#writeFully():68 [Inlined code] at sun.nio.ch.ChannelOutputStream#write():105 [Inlined code] at org.apache.lucene.store.FSDirectory$FSIndexOutput$1#write():391 [Inlined code] at java.util.zip.CheckedOutputStream#write():73 [Inlined code] 0.25% 73306 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] 0.25% 72682 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 0.24% 72030 jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnalignedInternal():3169 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnaligned():3159 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():60 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():53 [Inlined code] at java.lang.invoke.VarHandleGuards#guard_LJ_I():251 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#get():742 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#readInt():270 [Inlined code] at org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#vectorValue():131 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():245 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] 0.24% 71337 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():101 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#collect():713 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():350 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.23% 67908 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#flush():156 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#flush():209 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#flush():123 [JIT compiled code] at org.apache.lucene.index.VectorValuesConsumer#flush():76 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():325 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#postUpdate():404 [JIT compiled code] 0.22% 65830 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 0.22% 65094 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x0000000072197b80#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#merge():159 [Interpreted code] 0.18% 54217 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x0000000072197b80#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():159 [Interpreted code] 0.17% 50219 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.17% 50032 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Interpreted code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] 0.16% 46438 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.15% 45668 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x000000007219f288#run() [JIT compiled code] 0.13% 39812 jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnalignedInternal():3169 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnaligned():3159 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():60 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():53 [Inlined code] at java.lang.invoke.VarHandleGuards#guard_LJ_I():251 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#get():742 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#readInt():270 [Inlined code] at org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#vectorValue():131 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():199 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.13% 38751 java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():499 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.13% 38096 jdk.jfr.internal.JVM#emitEvent() [Native code] at jdk.jfr.internal.periodic.JVMEventTask#execute():54 [Inlined code] at jdk.jfr.internal.periodic.PeriodicTask#run():125 [Inlined code] at jdk.jfr.internal.periodic.PeriodicEvents#doPeriodic():145 [JIT compiled code] at jdk.jfr.internal.PlatformRecorder#periodicTask():502 [Interpreted code] at jdk.jfr.internal.PlatformRecorder#lambda$startDiskMonitor$0():428 [Interpreted code] at jdk.jfr.internal.PlatformRecorder$$Lambda.0x000000007207aa58#run() [Interpreted code] at java.lang.Thread#runWith():1487 [Interpreted code] at java.lang.Thread#run():1474 [Interpreted code] 0.13% 37587 org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():512 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 0.13% 37316 java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():499 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.12% 34245 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#release():720 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$WriteLock#unlock():1154 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():422 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 0.11% 33240 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#release():720 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$WriteLock#unlock():1154 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():422 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 0.11% 31777 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():193 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x0000000072197b80#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#merge():159 [Interpreted code] 0.11% 31332 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Inlined code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x000000007219f288#run() [JIT compiled code] 0.10% 30954 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#replayBufferedVectors():771 [JIT compiled code] 0.10% 30786 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#build():101 [JIT compiled code] 0.10% 28779 sun.nio.ch.NativeThread#current0() [Native code] at sun.nio.ch.NativeThread#current():51 [Inlined code] at sun.nio.ch.NativeThreadSet#add():48 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():349 [Inlined code] at sun.nio.ch.FileChannelImpl#traceImplWrite():374 [Inlined code] at sun.nio.ch.FileChannelImpl#write():333 [Inlined code] at sun.nio.ch.ChannelOutputStream#writeFully():68 [Inlined code] at sun.nio.ch.ChannelOutputStream#write():105 [Inlined code] at org.apache.lucene.store.FSDirectory$FSIndexOutput$1#write():391 [Inlined code] at java.util.zip.CheckedOutputStream#write():73 [Inlined code] at java.io.BufferedOutputStream#flushBuffer():123 [Inlined code] at java.io.BufferedOutputStream#write():188 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmFalse.jfr Profiler for heap at stackSize=1 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmFalse.jfr is 1043.66 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 60829 events (total: 449458M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 22.70% 102016M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] 22.40% 100667M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] 18.94% 85113M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] 14.32% 64355M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] 7.29% 32770M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] 4.01% 18022M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] 1.60% 7177M java.lang.Integer#valueOf():1006 [Inlined code] 0.72% 3232M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] 0.70% 3124M java.util.Arrays#copyOf():3478 [Inlined code] 0.62% 2773M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] 0.59% 2642M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] 0.57% 2564M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] 0.50% 2252M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():204 [JIT compiled code] 0.39% 1770M knn.KnnIndexer$TrackingConcurrentMergeScheduler#doMerge():355 [Interpreted code] 0.31% 1374M knn.IndexerThread#_run():86 [Interpreted code] 0.29% 1303M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] 0.29% 1293M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [Inlined code] 0.23% 1023M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():232 [JIT compiled code] 0.22% 995M java.util.DualPivotQuicksort#tryMergeRuns():816 [JIT compiled code] 0.20% 902M org.apache.lucene.util.SparseFixedBitSet#insertLong():230 [Inlined code] 0.20% 876M java.util.ArrayList#grow():240 [Inlined code] 0.19% 857M org.apache.lucene.search.AbstractKnnVectorQuery#getKnnCollectorManager():248 [Inlined code] 0.17% 784M java.lang.invoke.DirectMethodHandle#allocateInstance():500 [Inlined code] 0.16% 734M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():320 [JIT compiled code] 0.15% 688M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():193 [JIT compiled code] 0.12% 542M knn.IndexerThread#_run():125 [JIT compiled code] 0.12% 533M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():158 [Inlined code] 0.11% 485M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():306 [JIT compiled code] 0.10% 430M java.lang.reflect.Array#newInstance():76 [Inlined code] 0.09% 404M org.apache.lucene.internal.hppc.IntIntHashMap#allocateBuffers():744 [Interpreted code] 0.08% 368M java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquire():389 [JIT compiled code] 0.08% 360M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():618 [JIT compiled code] 0.08% 357M java.util.ArrayList#iterator():1030 [JIT compiled code] 0.08% 343M org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Interpreted code] 0.08% 343M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] 0.08% 341M knn.IndexerThread#_run():108 [JIT compiled code] 0.07% 329M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():556 [JIT compiled code] 0.07% 308M java.util.DualPivotQuicksort#sort():354 [JIT compiled code] 0.06% 278M org.apache.lucene.document.Document#():42 [Inlined code] 0.06% 270M jdk.internal.misc.Unsafe#allocateUninitializedArray():1396 [Inlined code] 0.06% 258M java.util.HashMap#newNode():1910 [Inlined code] 0.05% 241M java.util.List#of():935 [Inlined code] 0.05% 232M knn.IndexerThread#_run():86 [JIT compiled code] 0.05% 220M org.apache.lucene.util.ArrayUtil#growExact():400 [Inlined code] 0.05% 214M java.lang.reflect.Array#newArray() [Native code] 0.05% 208M org.apache.lucene.util.SparseFixedBitSet#insertBlock():211 [JIT compiled code] 0.04% 202M java.util.concurrent.locks.ReentrantReadWriteLock$Sync$ThreadLocalHoldCounter#initialValue():291 [Inlined code] 0.04% 186M knn.KnnGraphTester#printGraphFanout():1147 [JIT compiled code] 0.04% 171M java.util.concurrent.atomic.AtomicBoolean#compareAndSet():98 [Interpreted code] 0.04% 170M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():158 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmFalse.jfr Profiler for heap at stackSize=4 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmFalse.jfr is 1043.66 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 60829 events (total: 449458M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 18.25% 82022M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] 18.08% 81241M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] 11.18% 50240M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 8.83% 39665M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollector#():44 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [JIT compiled code] 7.29% 32770M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():335 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] 7.11% 31953M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] 5.49% 24676M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollector#():44 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [Interpreted code] 4.40% 19781M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] 4.32% 19426M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] 2.63% 11801M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 1.57% 7035M java.lang.Integer#valueOf():1006 [Inlined code] at knn.KnnGraphTester#printGraphConnectedNess():1131 [JIT compiled code] at knn.KnnGraphTester#printFanoutHist():1086 [Interpreted code] at knn.KnnGraphTester#printFanoutHist():1061 [Interpreted code] 1.38% 6220M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.67% 2994M java.util.Arrays#copyOf():3478 [Inlined code] at java.util.ArrayDeque#grow():146 [JIT compiled code] at java.util.ArrayDeque#addFirst():288 [Inlined code] at java.util.ArrayDeque#push():577 [Inlined code] 0.59% 2642M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.51% 2277M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.46% 2061M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():204 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Interpreted code] 0.39% 1770M knn.KnnIndexer$TrackingConcurrentMergeScheduler#doMerge():355 [Interpreted code] at org.apache.lucene.index.ConcurrentMergeScheduler$MergeThread#run():726 [Interpreted code] 0.38% 1705M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.31% 1374M knn.IndexerThread#_run():86 [Interpreted code] at knn.IndexerThread#run():77 [Interpreted code] 0.26% 1159M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.22% 995M java.util.DualPivotQuicksort#tryMergeRuns():816 [JIT compiled code] at java.util.DualPivotQuicksort#sort():277 [JIT compiled code] at java.util.DualPivotQuicksort#sort():238 [Inlined code] at java.util.Arrays#sort():123 [Inlined code] 0.22% 979M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.21% 927M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.20% 902M org.apache.lucene.util.SparseFixedBitSet#insertLong():230 [Inlined code] at org.apache.lucene.util.SparseFixedBitSet#getAndSet():170 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] at org.apache.lucene.util.hnsw.AbstractHnswGraphSearcher#search():83 [Inlined code] 0.20% 876M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] 0.19% 869M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.19% 858M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.17% 779M org.apache.lucene.search.AbstractKnnVectorQuery#getKnnCollectorManager():248 [Inlined code] at org.apache.lucene.search.AbstractKnnVectorQuery#rewrite():106 [JIT compiled code] at org.apache.lucene.search.KnnFloatVectorQuery#rewrite():48 [Inlined code] at knn.KnnGraphTester$ProfiledKnnFloatVectorQuery#rewrite():2274 [JIT compiled code] 0.16% 721M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.14% 635M java.lang.invoke.DirectMethodHandle#allocateInstance():500 [Inlined code] at java.lang.invoke.DirectMethodHandle$Holder#newInvokeSpecial() [Inlined code] at java.lang.invoke.Invokers$Holder#linkToTargetMethod() [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [Inlined code] 0.13% 606M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():232 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] 0.12% 542M knn.IndexerThread#_run():125 [JIT compiled code] at knn.IndexerThread#run():77 [Interpreted code] 0.12% 522M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] 0.11% 514M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.10% 434M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.10% 430M java.lang.reflect.Array#newInstance():76 [Inlined code] at org.apache.lucene.util.ArrayUtil#growExact():216 [Inlined code] at org.apache.lucene.util.ArrayUtil#grow():234 [JIT compiled code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():152 [Inlined code] 0.09% 424M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():193 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] 0.09% 418M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.09% 417M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():232 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#flush():156 [JIT compiled code] 0.09% 410M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.09% 404M org.apache.lucene.internal.hppc.IntIntHashMap#allocateBuffers():744 [Interpreted code] at org.apache.lucene.internal.hppc.IntIntHashMap#ensureCapacity():450 [Inlined code] at org.apache.lucene.internal.hppc.IntIntHashMap#():107 [Inlined code] at org.apache.lucene.internal.hppc.IntIntHashMap#():93 [Inlined code] 0.09% 384M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.08% 379M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():238 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] 0.08% 360M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():618 [JIT compiled code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader#serializedDocument():645 [Inlined code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#copyOneDoc():508 [Inlined code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#merge():630 [JIT compiled code] 0.08% 353M java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquire():389 [JIT compiled code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():739 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] 0.08% 343M org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Interpreted code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x000000007219f288#run() [Interpreted code] at java.util.concurrent.ThreadPoolExecutor#runWorker():1090 [Interpreted code] at java.util.concurrent.ThreadPoolExecutor$Worker#run():614 [Interpreted code] 0.08% 343M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] 0.08% 343M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():238 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] 0.08% 341M knn.IndexerThread#_run():108 [JIT compiled code] at knn.IndexerThread#run():77 [Interpreted code] 0.07% 333M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmFalse.jfr Profiler for heap at stackSize=12 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmFalse.jfr is 1043.66 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 60829 events (total: 449458M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 8.81% 39601M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollector#():44 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():28 [Inlined code] at org.apache.lucene.search.IndexSearcher#search():752 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#searchAfter():601 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#search():624 [Inlined code] at knn.KnnGraphTester#doFloatVectorQuery():1527 [JIT compiled code] at knn.KnnGraphTester#testSearch():1253 [Interpreted code] at knn.KnnGraphTester#run():770 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] 7.29% 32770M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():335 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$FieldWriter#addValue():568 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$FieldWriter#addValue():518 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():783 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 5.79% 26003M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] 5.75% 25858M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 5.56% 25006M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] 5.33% 23947M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 5.31% 23874M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] 5.23% 23487M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] 4.92% 22126M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 4.87% 21896M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 3.88% 17448M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 3.64% 16377M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollector#():44 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():28 [Interpreted code] at org.apache.lucene.search.IndexSearcher#search():752 [Interpreted code] at org.apache.lucene.search.IndexSearcher#searchAfter():601 [Interpreted code] at org.apache.lucene.search.IndexSearcher#search():624 [Interpreted code] at knn.KnnGraphTester#doFloatVectorQuery():1527 [Interpreted code] at knn.KnnGraphTester#testSearch():1253 [Interpreted code] at knn.KnnGraphTester#run():770 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] 3.14% 14115M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 1.85% 8298M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollector#():44 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():28 [Interpreted code] at org.apache.lucene.search.IndexSearcher#search():752 [Interpreted code] at org.apache.lucene.search.IndexSearcher#searchAfter():601 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#search():624 [Inlined code] at knn.KnnGraphTester#doFloatVectorQuery():1527 [JIT compiled code] at knn.KnnGraphTester#testSearch():1253 [Interpreted code] at knn.KnnGraphTester#run():770 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] 1.57% 7035M java.lang.Integer#valueOf():1006 [Inlined code] at knn.KnnGraphTester#printGraphConnectedNess():1131 [JIT compiled code] at knn.KnnGraphTester#printFanoutHist():1086 [Interpreted code] at knn.KnnGraphTester#printFanoutHist():1061 [Interpreted code] at knn.KnnGraphTester#run():775 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] at knn.KnnGraphTester#main():275 [Interpreted code] 1.46% 6560M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():255 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initGraph():148 [Interpreted code] at org.apache.lucene.util.hnsw.ConcurrentHnswMerger#createBuilder():81 [Interpreted code] at org.apache.lucene.util.hnsw.IncrementalHnswGraphMerger#merge():212 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#buildAndWriteGraph():485 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#lambda$mergeOneField$0():440 [Interpreted code] 1.38% 6202M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():255 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initGraph():148 [Interpreted code] at org.apache.lucene.util.hnsw.ConcurrentHnswMerger#createBuilder():81 [Interpreted code] at org.apache.lucene.util.hnsw.IncrementalHnswGraphMerger#merge():212 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#buildAndWriteGraph():485 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#lambda$mergeOneField$0():440 [Interpreted code] 1.24% 5577M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 1.02% 4602M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 1.00% 4480M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] 0.98% 4397M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.97% 4380M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] 0.92% 4145M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 0.90% 4058M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.82% 3694M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.67% 2994M java.util.Arrays#copyOf():3478 [Inlined code] at java.util.ArrayDeque#grow():146 [JIT compiled code] at java.util.ArrayDeque#addFirst():288 [Inlined code] at java.util.ArrayDeque#push():577 [Inlined code] at knn.KnnGraphTester#printGraphConnectedNess():1131 [JIT compiled code] at knn.KnnGraphTester#printFanoutHist():1086 [Interpreted code] at knn.KnnGraphTester#printFanoutHist():1061 [Interpreted code] at knn.KnnGraphTester#run():775 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] at knn.KnnGraphTester#main():275 [Interpreted code] 0.63% 2835M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.62% 2778M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.62% 2776M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.58% 2625M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#replayBufferedVectors():771 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():787 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.58% 2585M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.55% 2479M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#replayBufferedVectors():771 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():787 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.51% 2282M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Inlined code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.46% 2061M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():204 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Interpreted code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Interpreted code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x000000007219f288#run() [Interpreted code] at java.util.concurrent.ThreadPoolExecutor#runWorker():1090 [Interpreted code] 0.40% 1804M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [JIT compiled code] 0.39% 1770M knn.KnnIndexer$TrackingConcurrentMergeScheduler#doMerge():355 [Interpreted code] at org.apache.lucene.index.ConcurrentMergeScheduler$MergeThread#run():726 [Interpreted code] 0.39% 1766M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.36% 1604M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.31% 1374M knn.IndexerThread#_run():86 [Interpreted code] at knn.IndexerThread#run():77 [Interpreted code] 0.29% 1286M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] 0.27% 1194M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [Interpreted code] 0.26% 1154M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] 0.26% 1153M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] 0.25% 1114M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] 0.20% 902M org.apache.lucene.util.SparseFixedBitSet#insertLong():230 [Inlined code] at org.apache.lucene.util.SparseFixedBitSet#getAndSet():170 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] at org.apache.lucene.util.hnsw.AbstractHnswGraphSearcher#search():83 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#search():36 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#search():162 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsReader#search():352 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsReader#search():307 [Inlined code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsReader#search():305 [Inlined code] at org.apache.lucene.index.CodecReader#searchNearestVectors():273 [Inlined code] at org.apache.lucene.search.KnnFloatVectorQuery#approximateSearch():118 [JIT compiled code] at org.apache.lucene.search.AbstractKnnVectorQuery#getLeafResults():196 [Inlined code] 0.17% 784M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 0.17% 779M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Interpreted code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Interpreted code] 0.15% 696M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] at org.apache.lucene.document.Document#add():62 [Inlined code] at knn.IndexerThread#_run():108 [JIT compiled code] at knn.IndexerThread#run():77 [Interpreted code] 0.15% 662M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000007219ed30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Interpreted code] 0.15% 660M org.apache.lucene.search.AbstractKnnVectorQuery#getKnnCollectorManager():248 [Inlined code] at org.apache.lucene.search.AbstractKnnVectorQuery#rewrite():106 [JIT compiled code] at org.apache.lucene.search.KnnFloatVectorQuery#rewrite():48 [Inlined code] at knn.KnnGraphTester$ProfiledKnnFloatVectorQuery#rewrite():2274 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#rewrite():873 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#rewrite():884 [Inlined code] at org.apache.lucene.search.IndexSearcher#search():753 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#searchAfter():601 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#search():624 [Inlined code] at knn.KnnGraphTester#doFloatVectorQuery():1527 [JIT compiled code] at knn.KnnGraphTester#testSearch():1253 [Interpreted code] at knn.KnnGraphTester#run():770 [Interpreted code] cmd: ['/usr/sbin/perf', 'stat', '-dd', '-e', 'task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend', '/usr/lib/jvm/java-25-openjdk/bin/java', '--add-modules', 'jdk.incubator.vector', '-Xmx32g', '-Xms32g', '-server', '-XX:+UseParallelGC', '-Djava.io.tmpdir=/l/tmp', '--enable-native-access=ALL-UNNAMED', '-cp', '/l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build:/l/util.nightly/build', '--add-modules', 'jdk.incubator.vector', '--enable-native-access=ALL-UNNAMED', '-XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmTrue.jfr', 'knn.KnnGraphTester', '-maxConn', '32', '-dim', '1024', '-docs', '/big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec', '-ndoc', '8000000', '-topK', '100', '-numIndexThreads', '8', '-beamWidthIndex', '100', '-search-and-stats', '/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec', '-metric', 'dot_product', '-numMergeThread', '16', '-numMergeWorker', '48', '-forceMerge', '-quantize', '-quantizeBits', '4', '-quantizeCompress'] WARNING: Using incubator modules: jdk.incubator.vector [0.216s][info][jfr,startup] Started recording 1. [0.216s][info][jfr,startup] [0.216s][info][jfr,startup] Use jcmd 2092793 JFR.dump name=1 to copy recording data to file. maxConn = 32 Vector Dimensions: 1024 numDocs = 8000000 beamWidth = 100 similarity = DOT_PRODUCT Seed = 2363432498436893 index key = dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-4-compressed-fm Index Path = knn-reuse/indices/dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-4-compressed-fm will now reindex: index does not exist May 15, 2026 4:32:20 PM org.apache.lucene.internal.vectorization.PanamaVectorizationProvider logIncubatorSetup INFO: Java vector incubator API enabled; uses preferredBitSize=256; FMA enabled creating index in knn-reuse/indices/dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-4-compressed-fm 39709371 doc vectors in docsPath "/big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec" parentJoin=false Done indexing 25000 documents. Done indexing 50000 documents. Done indexing 75000 documents. Done indexing 100000 documents. Done indexing 125000 documents. Done indexing 150000 documents. Done indexing 175000 documents. Done indexing 200000 documents. Done indexing 225000 documents. Done indexing 250000 documents. Done indexing 275000 documents. Done indexing 300000 documents. Done indexing 325000 documents. Done indexing 350000 documents. Done indexing 375000 documents. Done indexing 400000 documents. Done indexing 425000 documents. Done indexing 450000 documents. Done indexing 475000 documents. Done indexing 500000 documents. Done indexing 525000 documents. Done indexing 550000 documents. Done indexing 575000 documents. Done indexing 600000 documents. Done indexing 625000 documents. Done indexing 650000 documents. Done indexing 675000 documents. Done indexing 700000 documents. Done indexing 725000 documents. Done indexing 750000 documents. Done indexing 775000 documents. Done indexing 800000 documents. Done indexing 825000 documents. Done indexing 850000 documents. Done indexing 875000 documents. Done indexing 900000 documents. Done indexing 925000 documents. Done indexing 950000 documents. Done indexing 975000 documents. Done indexing 1000000 documents. Done indexing 1025000 documents. Done indexing 1050000 documents. Done indexing 1075000 documents. Done indexing 1100000 documents. Done indexing 1125000 documents. Done indexing 1150000 documents. Done indexing 1175000 documents. Done indexing 1200000 documents. Done indexing 1225000 documents. Done indexing 1250000 documents. Done indexing 1275000 documents. Done indexing 1300000 documents. Done indexing 1325000 documents. Done indexing 1350000 documents. Done indexing 1375000 documents. Done indexing 1400000 documents. Done indexing 1425000 documents. Done indexing 1450000 documents. Done indexing 1475000 documents. Done indexing 1500000 documents. Done indexing 1525000 documents. Done indexing 1550000 documents. Done indexing 1575000 documents. Done indexing 1600000 documents. Done indexing 1625000 documents. Done indexing 1650000 documents. Done indexing 1675000 documents. Done indexing 1700000 documents. Done indexing 1725000 documents. Done indexing 1750000 documents. Done indexing 1775000 documents. Done indexing 1800000 documents. Done indexing 1825000 documents. Done indexing 1850000 documents. Done indexing 1875000 documents. Done indexing 1900000 documents. Done indexing 1925000 documents. Done indexing 1950000 documents. Done indexing 1975000 documents. Done indexing 2000000 documents. Done indexing 2025000 documents. Done indexing 2050000 documents. Done indexing 2075000 documents. Done indexing 2100000 documents. Done indexing 2125000 documents. Done indexing 2150000 documents. Done indexing 2175000 documents. Done indexing 2200000 documents. Done indexing 2225000 documents. Done indexing 2250000 documents. Done indexing 2275000 documents. Done indexing 2300000 documents. Done indexing 2325000 documents. Done indexing 2350000 documents. Done indexing 2375000 documents. Done indexing 2400000 documents. Done indexing 2425000 documents. Done indexing 2450000 documents. Done indexing 2475000 documents. Done indexing 2500000 documents. Done indexing 2525000 documents. Done indexing 2550000 documents. Done indexing 2575000 documents. Done indexing 2600000 documents. Done indexing 2625000 documents. Done indexing 2650000 documents. Done indexing 2675000 documents. Done indexing 2700000 documents. Done indexing 2725000 documents. Done indexing 2750000 documents. Done indexing 2775000 documents. Done indexing 2800000 documents. Done indexing 2825000 documents. Done indexing 2850000 documents. Done indexing 2875000 documents. Done indexing 2900000 documents. Done indexing 2925000 documents. Done indexing 2950000 documents. Done indexing 2975000 documents. Done indexing 3000000 documents. Done indexing 3025000 documents. Done indexing 3050000 documents. Done indexing 3075000 documents. Done indexing 3100000 documents. Done indexing 3125000 documents. Done indexing 3150000 documents. Done indexing 3175000 documents. Done indexing 3200000 documents. Done indexing 3225000 documents. Done indexing 3250000 documents. Done indexing 3275000 documents. Done indexing 3300000 documents. Done indexing 3325000 documents. Done indexing 3350000 documents. Done indexing 3375000 documents. Done indexing 3400000 documents. Done indexing 3425000 documents. Done indexing 3450000 documents. Done indexing 3475000 documents. Done indexing 3500000 documents. Done indexing 3525000 documents. Done indexing 3550000 documents. Done indexing 3575000 documents. Done indexing 3600000 documents. Done indexing 3625000 documents. Done indexing 3650000 documents. Done indexing 3675000 documents. Done indexing 3700000 documents. Done indexing 3725000 documents. Done indexing 3750000 documents. Done indexing 3775000 documents. Done indexing 3800000 documents. Done indexing 3825000 documents. Done indexing 3850000 documents. Done indexing 3875000 documents. Done indexing 3900000 documents. Done indexing 3925000 documents. Done indexing 3950000 documents. Done indexing 3975000 documents. Done indexing 4000000 documents. Done indexing 4025000 documents. Done indexing 4050000 documents. Done indexing 4075000 documents. Done indexing 4100000 documents. Done indexing 4125000 documents. Done indexing 4150000 documents. Done indexing 4175000 documents. Done indexing 4200000 documents. Done indexing 4225000 documents. Done indexing 4250000 documents. Done indexing 4275000 documents. Done indexing 4300000 documents. Done indexing 4325000 documents. Done indexing 4350000 documents. Done indexing 4375000 documents. Done indexing 4400000 documents. Done indexing 4425000 documents. Done indexing 4450000 documents. Done indexing 4475000 documents. Done indexing 4500000 documents. Done indexing 4525000 documents. Done indexing 4550000 documents. Done indexing 4575000 documents. Done indexing 4600000 documents. Done indexing 4625000 documents. Done indexing 4650000 documents. Done indexing 4675000 documents. Done indexing 4700000 documents. Done indexing 4725000 documents. Done indexing 4750000 documents. Done indexing 4775000 documents. Done indexing 4800000 documents. Done indexing 4825000 documents. Done indexing 4850000 documents. Done indexing 4875000 documents. Done indexing 4900000 documents. Done indexing 4925000 documents. Done indexing 4950000 documents. Done indexing 4975000 documents. Done indexing 5000000 documents. Done indexing 5025000 documents. Done indexing 5050000 documents. Done indexing 5075000 documents. Done indexing 5100000 documents. Done indexing 5125000 documents. Done indexing 5150000 documents. Done indexing 5175000 documents. Done indexing 5200000 documents. Done indexing 5225000 documents. Done indexing 5250000 documents. Done indexing 5275000 documents. Done indexing 5300000 documents. Done indexing 5325000 documents. Done indexing 5350000 documents. Done indexing 5375000 documents. Done indexing 5400000 documents. Done indexing 5425000 documents. Done indexing 5450000 documents. Done indexing 5475000 documents. Done indexing 5500000 documents. Done indexing 5525000 documents. Done indexing 5550000 documents. Done indexing 5575000 documents. Done indexing 5600000 documents. Done indexing 5625000 documents. Done indexing 5650000 documents. Done indexing 5675000 documents. Done indexing 5700000 documents. Done indexing 5725000 documents. Done indexing 5750000 documents. Done indexing 5775000 documents. Done indexing 5800000 documents. Done indexing 5825000 documents. Done indexing 5850000 documents. Done indexing 5875000 documents. Done indexing 5900000 documents. Done indexing 5925000 documents. Done indexing 5950000 documents. Done indexing 5975000 documents. Done indexing 6000000 documents. Done indexing 6025000 documents. Done indexing 6050000 documents. Done indexing 6075000 documents. Done indexing 6100000 documents. Done indexing 6125000 documents. Done indexing 6150000 documents. Done indexing 6175000 documents. Done indexing 6200000 documents. Done indexing 6225000 documents. Done indexing 6250000 documents. Done indexing 6275000 documents. Done indexing 6300000 documents. Done indexing 6325000 documents. Done indexing 6350000 documents. Done indexing 6375000 documents. Done indexing 6400000 documents. Done indexing 6425000 documents. Done indexing 6450000 documents. Done indexing 6475000 documents. Done indexing 6500000 documents. Done indexing 6525000 documents. Done indexing 6550000 documents. Done indexing 6575000 documents. Done indexing 6600000 documents. Done indexing 6625000 documents. Done indexing 6650000 documents. Done indexing 6675000 documents. Done indexing 6700000 documents. Done indexing 6725000 documents. Done indexing 6750000 documents. Done indexing 6775000 documents. Done indexing 6800000 documents. Done indexing 6825000 documents. Done indexing 6850000 documents. Done indexing 6875000 documents. Done indexing 6900000 documents. Done indexing 6925000 documents. Done indexing 6950000 documents. Done indexing 6975000 documents. Done indexing 7000000 documents. Done indexing 7025000 documents. Done indexing 7050000 documents. Done indexing 7075000 documents. Done indexing 7100000 documents. Done indexing 7125000 documents. Done indexing 7150000 documents. Done indexing 7175000 documents. Done indexing 7200000 documents. Done indexing 7225000 documents. Done indexing 7250000 documents. Done indexing 7275000 documents. Done indexing 7300000 documents. Done indexing 7325000 documents. Done indexing 7350000 documents. Done indexing 7375000 documents. Done indexing 7400000 documents. Done indexing 7425000 documents. Done indexing 7450000 documents. Done indexing 7475000 documents. Done indexing 7500000 documents. Done indexing 7525000 documents. Done indexing 7550000 documents. Done indexing 7575000 documents. Done indexing 7600000 documents. Done indexing 7625000 documents. Done indexing 7650000 documents. Done indexing 7675000 documents. Done indexing 7700000 documents. Done indexing 7725000 documents. Done indexing 7750000 documents. Done indexing 7775000 documents. Done indexing 7800000 documents. Done indexing 7825000 documents. Done indexing 7850000 documents. Done indexing 7875000 documents. Done indexing 7900000 documents. Done indexing 7925000 documents. Done indexing 7950000 documents. Done indexing 7975000 documents. Done indexing 8000000 documents. now IndexWriter.commit() now wait for already running merges to finish 0.0 sec: 60 segments, 5 merges 56.9s _198: 8 segs, 1119.9 K docs, 5039.0 MB 23.0s _1an: 8 segs, 296.1 K docs, 1330.1 MB 8.3s _1bj: 8 segs, 123.5 K docs, 553.8 MB 4.6s _1br: 8 segs, 90.8 K docs, 407.0 MB 0.5s _1bw: 12 segs, 49.0 K docs, 218.7 MB 5.0 sec: 60 segments, 5 merges 61.9s _198: 8 segs, 1119.9 K docs, 5039.0 MB 28.0s _1an: 8 segs, 296.1 K docs, 1330.1 MB 13.3s _1bj: 8 segs, 123.5 K docs, 553.8 MB 9.6s _1br: 8 segs, 90.8 K docs, 407.0 MB 5.5s _1bw: 12 segs, 49.0 K docs, 218.7 MB 10.0 sec: 60 segments, 5 merges 66.9s _198: 8 segs, 1119.9 K docs, 5039.0 MB 33.0s _1an: 8 segs, 296.1 K docs, 1330.1 MB 18.3s _1bj: 8 segs, 123.5 K docs, 553.8 MB 14.6s _1br: 8 segs, 90.8 K docs, 407.0 MB 10.5s _1bw: 12 segs, 49.0 K docs, 218.7 MB 15.0 sec: 60 segments, 5 merges 71.9s _198: 8 segs, 1119.9 K docs, 5039.0 MB 38.0s _1an: 8 segs, 296.1 K docs, 1330.1 MB 23.3s _1bj: 8 segs, 123.5 K docs, 553.8 MB 19.6s _1br: 8 segs, 90.8 K docs, 407.0 MB 15.5s _1bw: 12 segs, 49.0 K docs, 218.7 MB 20.0 sec: 53 segments, 4 merges 76.9s _198: 8 segs, 1119.9 K docs, 5039.0 MB 28.4s _1bj: 8 segs, 123.5 K docs, 553.8 MB 24.6s _1br: 8 segs, 90.8 K docs, 407.0 MB 20.5s _1bw: 12 segs, 49.0 K docs, 218.7 MB 25.0 sec: 28 segments, 1 merges 82.0s _198: 8 segs, 1119.9 K docs, 5039.0 MB 30.0 sec: 28 segments, 1 merges 87.0s _198: 8 segs, 1119.9 K docs, 5039.0 MB 35.1 sec: 28 segments, 1 merges 92.0s _198: 8 segs, 1119.9 K docs, 5039.0 MB 40.1 sec: 28 segments, 1 merges 97.0s _198: 8 segs, 1119.9 K docs, 5039.0 MB 45.1 sec: 28 segments, 1 merges 102.0s _198: 8 segs, 1119.9 K docs, 5039.0 MB 50.1 sec: 28 segments, 1 merges 107.0s _198: 8 segs, 1119.9 K docs, 5039.0 MB 55.1 sec: 28 segments, 1 merges 112.0s _198: 8 segs, 1119.9 K docs, 5039.0 MB 60.1 sec: 28 segments, 1 merges 117.0s _198: 8 segs, 1119.9 K docs, 5039.0 MB 65.1 sec: 28 segments, 1 merges 122.0s _198: 8 segs, 1119.9 K docs, 5039.0 MB 70.1 sec: 28 segments, 1 merges 127.0s _198: 8 segs, 1119.9 K docs, 5039.0 MB 75.1 sec: 28 segments, 1 merges 132.0s _198: 8 segs, 1119.9 K docs, 5039.0 MB 80.1 sec: 28 segments, 1 merges 137.0s _198: 8 segs, 1119.9 K docs, 5039.0 MB 85.0 sec: 28 segments, 1 merges 141.9s _198: 8 segs, 1119.9 K docs, 5039.0 MB 90.0 sec: 28 segments, 1 merges 146.9s _198: 8 segs, 1119.9 K docs, 5039.0 MB 95.0 sec: 28 segments, 1 merges 151.9s _198: 8 segs, 1119.9 K docs, 5039.0 MB 100.0 sec: 28 segments, 1 merges 156.9s _198: 8 segs, 1119.9 K docs, 5039.0 MB 105.0 sec: 21 segments, 1 merges 1.3s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 110.0 sec: 21 segments, 1 merges 6.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 115.0 sec: 21 segments, 1 merges 11.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 120.0 sec: 21 segments, 1 merges 16.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 125.0 sec: 21 segments, 1 merges 21.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 130.0 sec: 21 segments, 1 merges 26.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 135.0 sec: 21 segments, 1 merges 31.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 140.0 sec: 21 segments, 1 merges 36.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 145.1 sec: 21 segments, 1 merges 41.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 150.1 sec: 21 segments, 1 merges 46.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 155.1 sec: 21 segments, 1 merges 51.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 160.1 sec: 21 segments, 1 merges 56.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 165.1 sec: 21 segments, 1 merges 61.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 170.1 sec: 21 segments, 1 merges 66.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 175.1 sec: 21 segments, 1 merges 71.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 180.0 sec: 21 segments, 1 merges 76.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 185.0 sec: 21 segments, 1 merges 81.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 190.0 sec: 21 segments, 1 merges 86.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 195.0 sec: 21 segments, 1 merges 91.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 200.1 sec: 21 segments, 1 merges 96.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 205.1 sec: 21 segments, 1 merges 101.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 210.1 sec: 21 segments, 1 merges 106.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 215.1 sec: 21 segments, 1 merges 111.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 220.1 sec: 21 segments, 1 merges 116.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 225.1 sec: 21 segments, 1 merges 121.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 230.1 sec: 21 segments, 1 merges 126.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB 235.1 sec: 21 segments, 1 merges 131.4s _1bx: 5 segs, 1108.1 K docs, 4987.9 MB done first pass waiting for merges done second pass waiting for merges (CMS.sync()) Indexed 8000000 docs in 953 seconds reindex takes 953.03 sec Force merge index in knn-reuse/indices/dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-4-compressed-fm now wait for already running merges to finish 0.0 sec: 17 segments, 1 merges 5.0 sec: 17 segments, 1 merges 5.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 10.0 sec: 17 segments, 1 merges 10.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 15.0 sec: 17 segments, 1 merges 15.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 20.0 sec: 17 segments, 1 merges 20.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 25.0 sec: 17 segments, 1 merges 25.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 30.0 sec: 17 segments, 1 merges 30.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 35.0 sec: 17 segments, 1 merges 35.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 40.0 sec: 17 segments, 1 merges 40.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 45.0 sec: 17 segments, 1 merges 45.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 50.0 sec: 17 segments, 1 merges 50.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 55.0 sec: 17 segments, 1 merges 55.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 60.1 sec: 17 segments, 1 merges 60.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 65.1 sec: 17 segments, 1 merges 65.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 70.1 sec: 17 segments, 1 merges 70.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 75.1 sec: 17 segments, 1 merges 75.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 80.1 sec: 17 segments, 1 merges 80.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 85.1 sec: 17 segments, 1 merges 85.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 90.1 sec: 17 segments, 1 merges 90.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 95.1 sec: 17 segments, 1 merges 95.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 100.1 sec: 17 segments, 1 merges 100.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 105.1 sec: 17 segments, 1 merges 105.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 110.1 sec: 17 segments, 1 merges 110.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 115.0 sec: 17 segments, 1 merges 115.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 120.0 sec: 17 segments, 1 merges 120.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 125.0 sec: 17 segments, 1 merges 125.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 130.0 sec: 17 segments, 1 merges 130.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 135.0 sec: 17 segments, 1 merges 135.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 140.0 sec: 17 segments, 1 merges 140.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 145.0 sec: 17 segments, 1 merges 145.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 150.0 sec: 17 segments, 1 merges 150.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 155.0 sec: 17 segments, 1 merges 155.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 160.0 sec: 17 segments, 1 merges 160.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 165.0 sec: 17 segments, 1 merges 165.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 170.0 sec: 17 segments, 1 merges 170.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 175.1 sec: 17 segments, 1 merges 175.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 180.1 sec: 17 segments, 1 merges 180.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 185.1 sec: 17 segments, 1 merges 185.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 190.1 sec: 17 segments, 1 merges 190.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 195.1 sec: 17 segments, 1 merges 195.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 200.1 sec: 17 segments, 1 merges 200.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 205.1 sec: 17 segments, 1 merges 205.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 210.1 sec: 17 segments, 1 merges 210.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 215.1 sec: 17 segments, 1 merges 215.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 220.1 sec: 17 segments, 1 merges 220.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 225.1 sec: 17 segments, 1 merges 225.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 230.0 sec: 17 segments, 1 merges 230.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 235.0 sec: 17 segments, 1 merges 235.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 240.0 sec: 17 segments, 1 merges 240.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 245.0 sec: 17 segments, 1 merges 245.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 250.0 sec: 17 segments, 1 merges 250.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 255.0 sec: 17 segments, 1 merges 255.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 260.0 sec: 17 segments, 1 merges 260.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 265.0 sec: 17 segments, 1 merges 265.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 270.0 sec: 17 segments, 1 merges 270.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 275.0 sec: 17 segments, 1 merges 275.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 280.0 sec: 17 segments, 1 merges 280.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 285.1 sec: 17 segments, 1 merges 285.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 290.1 sec: 17 segments, 1 merges 290.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 295.1 sec: 17 segments, 1 merges 295.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 300.1 sec: 17 segments, 1 merges 300.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 305.1 sec: 17 segments, 1 merges 305.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 310.1 sec: 17 segments, 1 merges 310.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 315.1 sec: 17 segments, 1 merges 315.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 320.1 sec: 17 segments, 1 merges 320.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 325.1 sec: 17 segments, 1 merges 325.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 330.1 sec: 17 segments, 1 merges 330.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 335.1 sec: 17 segments, 1 merges 335.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 340.1 sec: 17 segments, 1 merges 340.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 345.0 sec: 17 segments, 1 merges 345.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 350.0 sec: 17 segments, 1 merges 350.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 355.0 sec: 17 segments, 1 merges 355.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 360.0 sec: 17 segments, 1 merges 360.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 365.0 sec: 17 segments, 1 merges 365.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 370.0 sec: 17 segments, 1 merges 370.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 375.0 sec: 17 segments, 1 merges 375.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 380.0 sec: 17 segments, 1 merges 380.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 385.0 sec: 17 segments, 1 merges 385.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 390.0 sec: 17 segments, 1 merges 390.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 395.0 sec: 17 segments, 1 merges 395.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 400.0 sec: 17 segments, 1 merges 400.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 405.1 sec: 17 segments, 1 merges 405.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 410.1 sec: 17 segments, 1 merges 410.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 415.1 sec: 17 segments, 1 merges 415.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 420.1 sec: 17 segments, 1 merges 420.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 425.1 sec: 17 segments, 1 merges 425.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 430.1 sec: 17 segments, 1 merges 430.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 435.1 sec: 17 segments, 1 merges 435.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 440.1 sec: 17 segments, 1 merges 440.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 445.1 sec: 17 segments, 1 merges 445.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 450.0 sec: 17 segments, 1 merges 450.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 455.0 sec: 17 segments, 1 merges 455.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 460.0 sec: 17 segments, 1 merges 460.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 465.0 sec: 17 segments, 1 merges 465.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 470.0 sec: 17 segments, 1 merges 470.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 475.0 sec: 17 segments, 1 merges 475.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 480.1 sec: 17 segments, 1 merges 480.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 485.1 sec: 17 segments, 1 merges 485.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 490.1 sec: 17 segments, 1 merges 490.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 495.1 sec: 17 segments, 1 merges 495.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 500.1 sec: 17 segments, 1 merges 500.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 505.0 sec: 17 segments, 1 merges 505.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 510.0 sec: 17 segments, 1 merges 510.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 515.0 sec: 17 segments, 1 merges 515.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 520.1 sec: 17 segments, 1 merges 520.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 525.1 sec: 17 segments, 1 merges 525.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 530.1 sec: 17 segments, 1 merges 530.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 535.1 sec: 17 segments, 1 merges 535.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 540.1 sec: 17 segments, 1 merges 540.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 545.1 sec: 17 segments, 1 merges 545.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 550.1 sec: 17 segments, 1 merges 550.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 555.1 sec: 17 segments, 1 merges 555.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 560.1 sec: 17 segments, 1 merges 560.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 565.1 sec: 17 segments, 1 merges 565.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 570.0 sec: 17 segments, 1 merges 570.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 575.0 sec: 17 segments, 1 merges 575.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 580.0 sec: 17 segments, 1 merges 580.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 585.0 sec: 17 segments, 1 merges 585.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 590.0 sec: 17 segments, 1 merges 590.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 595.0 sec: 17 segments, 1 merges 595.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 600.0 sec: 17 segments, 1 merges 600.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 605.0 sec: 17 segments, 1 merges 605.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 610.0 sec: 17 segments, 1 merges 610.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 615.0 sec: 17 segments, 1 merges 615.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 620.0 sec: 17 segments, 1 merges 620.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 625.0 sec: 17 segments, 1 merges 625.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 630.0 sec: 17 segments, 1 merges 630.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 635.0 sec: 17 segments, 1 merges 635.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 640.0 sec: 17 segments, 1 merges 640.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 645.0 sec: 17 segments, 1 merges 645.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 650.0 sec: 17 segments, 1 merges 650.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 655.0 sec: 17 segments, 1 merges 655.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 660.0 sec: 17 segments, 1 merges 660.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 665.0 sec: 17 segments, 1 merges 665.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 670.0 sec: 17 segments, 1 merges 670.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 675.1 sec: 17 segments, 1 merges 675.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 680.1 sec: 17 segments, 1 merges 680.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 685.1 sec: 17 segments, 1 merges 685.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 690.1 sec: 17 segments, 1 merges 690.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 695.1 sec: 17 segments, 1 merges 695.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 700.1 sec: 17 segments, 1 merges 700.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 705.1 sec: 17 segments, 1 merges 705.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 710.1 sec: 17 segments, 1 merges 710.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 715.1 sec: 17 segments, 1 merges 715.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 720.1 sec: 17 segments, 1 merges 720.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 725.1 sec: 17 segments, 1 merges 725.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 730.0 sec: 17 segments, 1 merges 730.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 735.0 sec: 17 segments, 1 merges 735.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 740.1 sec: 17 segments, 1 merges 740.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 745.1 sec: 17 segments, 1 merges 745.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 750.1 sec: 17 segments, 1 merges 750.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 755.1 sec: 17 segments, 1 merges 755.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 760.1 sec: 17 segments, 1 merges 760.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 765.1 sec: 17 segments, 1 merges 765.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 770.1 sec: 17 segments, 1 merges 770.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 775.1 sec: 17 segments, 1 merges 775.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 780.1 sec: 17 segments, 1 merges 780.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 785.1 sec: 17 segments, 1 merges 785.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 790.0 sec: 17 segments, 1 merges 790.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 795.0 sec: 17 segments, 1 merges 795.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 800.0 sec: 17 segments, 1 merges 800.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 805.0 sec: 17 segments, 1 merges 805.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 810.0 sec: 17 segments, 1 merges 810.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 815.0 sec: 17 segments, 1 merges 815.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 820.0 sec: 17 segments, 1 merges 820.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 825.1 sec: 17 segments, 1 merges 825.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 830.1 sec: 17 segments, 1 merges 830.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 835.1 sec: 17 segments, 1 merges 835.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 840.1 sec: 17 segments, 1 merges 840.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 845.1 sec: 17 segments, 1 merges 845.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 850.0 sec: 17 segments, 1 merges 850.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 855.0 sec: 17 segments, 1 merges 855.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 860.0 sec: 17 segments, 1 merges 860.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 865.0 sec: 17 segments, 1 merges 865.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 870.0 sec: 17 segments, 1 merges 870.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 875.0 sec: 17 segments, 1 merges 875.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 880.0 sec: 17 segments, 1 merges 880.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 885.0 sec: 17 segments, 1 merges 885.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 890.0 sec: 17 segments, 1 merges 890.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 895.1 sec: 17 segments, 1 merges 895.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 900.1 sec: 17 segments, 1 merges 900.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 905.1 sec: 17 segments, 1 merges 905.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 910.1 sec: 17 segments, 1 merges 910.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 915.1 sec: 17 segments, 1 merges 915.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 920.1 sec: 17 segments, 1 merges 920.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 925.1 sec: 17 segments, 1 merges 925.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 930.1 sec: 17 segments, 1 merges 930.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 935.1 sec: 17 segments, 1 merges 935.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 940.1 sec: 17 segments, 1 merges 940.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 945.1 sec: 17 segments, 1 merges 945.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 950.1 sec: 17 segments, 1 merges 950.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 955.1 sec: 17 segments, 1 merges 955.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 960.1 sec: 17 segments, 1 merges 960.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 965.0 sec: 17 segments, 1 merges 965.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 970.1 sec: 17 segments, 1 merges 970.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 975.1 sec: 17 segments, 1 merges 975.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 980.1 sec: 17 segments, 1 merges 980.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 985.1 sec: 17 segments, 1 merges 985.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 990.1 sec: 17 segments, 1 merges 990.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 995.1 sec: 17 segments, 1 merges 995.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 1000.1 sec: 17 segments, 1 merges 1000.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 1005.1 sec: 17 segments, 1 merges 1005.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 1010.1 sec: 17 segments, 1 merges 1010.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 1015.0 sec: 17 segments, 1 merges 1015.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 1020.0 sec: 17 segments, 1 merges 1020.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 1025.0 sec: 17 segments, 1 merges 1025.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 1030.1 sec: 17 segments, 1 merges 1030.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 1035.1 sec: 17 segments, 1 merges 1035.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 1040.1 sec: 17 segments, 1 merges 1040.1s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 1045.0 sec: 17 segments, 1 merges 1045.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 1050.0 sec: 17 segments, 1 merges 1050.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 1055.0 sec: 17 segments, 1 merges 1055.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 1060.0 sec: 17 segments, 1 merges 1060.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 1065.0 sec: 17 segments, 1 merges 1065.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 1070.0 sec: 17 segments, 1 merges 1070.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 1075.0 sec: 17 segments, 1 merges 1075.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 1080.0 sec: 17 segments, 1 merges 1080.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 1085.0 sec: 17 segments, 1 merges 1085.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 1090.0 sec: 17 segments, 1 merges 1090.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 1095.0 sec: 17 segments, 1 merges 1095.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 1100.0 sec: 17 segments, 1 merges 1100.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB 1105.0 sec: 17 segments, 1 merges 1105.0s _1by: 17 segs, 8000.0 K docs, 36043.4 MB done first pass waiting for merges done second pass waiting for merges (CMS.sync()) Force merge done in 1108.93 sec index has 1 segments: segments_3: _1by(11.0.0):C8000000 _1by: 36186.0 MB encodingByteSize=4 origByteSize=4 realEncodingByteSize=0.5 index disk usage is 36185.99 MB vector disk usage is 35278.32 MB vector RAM usage is 4028.32 MB exact nn key = cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100 read pre-cached exact match vectors from cache file "knn-reuse/exact-nn/cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100.bin" read pre-cached exact match scores from cache file "knn-reuse/exact-nn/cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100.scores" EXACT_NN_SCORES_PATH: /l/util.nightly/knn-reuse/exact-nn/cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100.scores EXACT_NN_METRIC: dot_product path=/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec dim=1024 vectorEncoding.byteSize=4 1778739 query vectors in queryPath "/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec" searching 1000 query vectors; topK=100, fanout=100 done warmup thread 3 name=main cpu@start=49266238721 cpu@end=51660380141 deltaMS=2394.14142 thread 14 name=Reference Handler cpu@start=1539791 cpu@end=1539791 deltaMS=0.0 thread 15 name=Finalizer cpu@start=122582 cpu@end=122582 deltaMS=0.0 thread 16 name=Signal Dispatcher cpu@start=70865 cpu@end=70865 deltaMS=0.0 thread 40 name=Common-Cleaner cpu@start=5063357 cpu@end=5063357 deltaMS=0.0 thread 41 name=JFR Recorder Thread cpu@start=15188725401 cpu@end=15189424027 deltaMS=0.698626 thread 42 name=JFR Periodic Tasks cpu@start=124705572904 cpu@end=124819671921 deltaMS=114.099017 thread 45 name=Notification Thread cpu@start=97537 cpu@end=97537 deltaMS=0.0 thread 56 name=hnsw-merge-1-thread-1 cpu@start=1767342417586 cpu@end=1767342417586 deltaMS=0.0 thread 57 name=hnsw-merge-1-thread-2 cpu@start=1764707800750 cpu@end=1764707800750 deltaMS=0.0 thread 58 name=hnsw-merge-1-thread-3 cpu@start=1763740673809 cpu@end=1763740673809 deltaMS=0.0 thread 59 name=hnsw-merge-1-thread-4 cpu@start=1768844221319 cpu@end=1768844221319 deltaMS=0.0 thread 60 name=hnsw-merge-1-thread-5 cpu@start=1769269125772 cpu@end=1769269125772 deltaMS=0.0 thread 61 name=hnsw-merge-1-thread-6 cpu@start=1770683964668 cpu@end=1770683964668 deltaMS=0.0 thread 62 name=hnsw-merge-1-thread-7 cpu@start=1765931070910 cpu@end=1765931070910 deltaMS=0.0 thread 63 name=hnsw-merge-1-thread-8 cpu@start=1767251495981 cpu@end=1767251495981 deltaMS=0.0 thread 64 name=hnsw-merge-1-thread-9 cpu@start=1765157778463 cpu@end=1765157778463 deltaMS=0.0 thread 65 name=hnsw-merge-1-thread-10 cpu@start=1761948406280 cpu@end=1761948406280 deltaMS=0.0 thread 66 name=hnsw-merge-1-thread-11 cpu@start=1762752209592 cpu@end=1762752209592 deltaMS=0.0 thread 67 name=hnsw-merge-1-thread-12 cpu@start=1761577611294 cpu@end=1761577611294 deltaMS=0.0 thread 68 name=hnsw-merge-1-thread-13 cpu@start=1764893442252 cpu@end=1764893442252 deltaMS=0.0 thread 69 name=hnsw-merge-1-thread-14 cpu@start=1766048724071 cpu@end=1766048724071 deltaMS=0.0 thread 70 name=hnsw-merge-1-thread-15 cpu@start=1762921423323 cpu@end=1762921423323 deltaMS=0.0 thread 71 name=hnsw-merge-1-thread-16 cpu@start=1758155185745 cpu@end=1758155185745 deltaMS=0.0 Average CPU cores used: 1.0441983614176185 completed 1000 searches in 2402 ms: 416 QPS CPU time=2508 ms checking results SUMMARY: 0.881 2.402 2.508 1.044 8000000 KNN 100 100 N/A N/A 100.000 32 100 4 bits 5714 953.03 8394.27 1108.93 1 36185.99 null N/A 1.000 35278.320 4028.320 false HNSW no Leaf 0 has 4 layers Leaf 0 has 8000000 documents Graph level=3 size=237, Fanout min=6, mean=16.37, max=32, meandelta=410960.25 % 0 10 20 30 40 50 60 70 80 90 100 0 9 11 13 14 16 18 19 21 24 32 Graph level=2 size=7594, Fanout min=8, mean=27.31, max=32, meandelta=268688.59 % 0 10 20 30 40 50 60 70 80 90 100 0 18 21 24 27 31 32 32 32 32 32 Graph level=1 size=247261, Fanout min=1, mean=28.29, max=32, meandelta=258678.34 % 0 10 20 30 40 50 60 70 80 90 100 0 19 23 27 31 32 32 32 32 32 32 Graph level=0 size=8000000, Fanout min=1, mean=37.74, max=64, meandelta=194161.50 % 0 10 20 30 40 50 60 70 80 90 100 0 17 22 26 30 34 40 47 59 64 64 Graph level=3 size=237, connectedness=1.00 Graph level=2 size=7594, connectedness=1.00 Graph level=1 size=247261, connectedness=1.00 Graph level=0 size=8000000, connectedness=1.00 Performance counter stats for '/usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build:/l/util.nightly/build --add-modules jdk.incubator.vector --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmTrue.jfr knn.KnnGraphTester -maxConn 32 -dim 1024 -docs /big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec -ndoc 8000000 -topK 100 -numIndexThreads 8 -beamWidthIndex 100 -search-and-stats /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -metric dot_product -numMergeThread 16 -numMergeWorker 48 -forceMerge -quantize -quantizeBits 4 -quantizeCompress': 45,716,381.28 msec task-clock:u 176,199,200,539,960 cycles:u (36.36%) 186,689,250,831,280 instructions:u (36.36%) 4,262,104,756,654 cache-references:u (36.36%) 1,717,347,197,279 cache-misses:u (36.36%) 67,569,810,417,274 L1-dcache-loads:u (36.36%) 2,021,484,625,152 L1-dcache-load-misses:u (36.36%) 3,711,549,938,839 L1-icache-loads:u (36.36%) 16,321,796,618 L1-icache-load-misses:u (36.36%) LLC-loads:u LLC-load-misses:u LLC-stores:u LLC-store-misses:u LLC-prefetches:u LLC-prefetch-misses:u 26,194,147 faults:u 25,235,720 minor-faults:u 12,458 major-faults:u 16,381,261,173,917 branches:u (36.36%) 118,300,009,343 branch-misses:u (36.36%) 2,686,270,606,677 stalled-cycles-frontend:u (36.36%) stalled-cycles-backend:u 2380.123151612 seconds time elapsed 45094.466814000 seconds user 609.790310000 seconds sys took 0:39:40.175253 to run KnnGraphTester result: KNNResultV1(lucene_git_rev='de92f115a3125624bf7c7141b8e700efa9a89427', luceneutil_git_rev='63c1b2b252f377e272313c1ac0f182be79ad78b6', index_vectors_file='/big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec', search_vectors_file='/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec', vector_dims=1024, do_force_merge=True, recall=0.881, cpu_time_ms=2.402, net_cpu_ms=2.508, avg_cpu_core_count=1.044, num_docs=8000000, top_k=100, fanout=100, max_conn=32, beam_width=100, quantize_desc='4 bits', total_visited=5714, index_time_sec=953.03, index_docs_per_sec=8394.27, force_merge_time_sec=1108.93, index_num_segments=1, index_size_on_disk_mb=36185.99, selectivity=None, pre_post_filter='null', vec_disk_mb=35278.32, vec_ram_mb=4028.32, graph_level_conn_p_values={3: (237, {0: 0, 10: 9, 20: 11, 30: 13, 40: 14, 50: 16, 60: 18, 70: 19, 80: 21, 90: 24, 100: 32}), 2: (7594, {0: 0, 10: 18, 20: 21, 30: 24, 40: 27, 50: 31, 60: 32, 70: 32, 80: 32, 90: 32, 100: 32}), 1: (247261, {0: 0, 10: 19, 20: 23, 30: 27, 40: 31, 50: 32, 60: 32, 70: 32, 80: 32, 90: 32, 100: 32}), 0: (8000000, {0: 0, 10: 17, 20: 22, 30: 26, 40: 30, 50: 34, 60: 40, 70: 47, 80: 59, 90: 64, 100: 64})}, combined_run_time=datetime.timedelta(seconds=2380, microseconds=175253)) Profiler summary for /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmTrue.jfr Version: 2.1 Chunks: 112 Start: 2026-05-15 20:32:20 (UTC) Duration: 2367 s Event Type Count Size (bytes) ============================================================= jdk.CPUTimeSample 43858811 750814952 jdk.FileWrite 22788136 480944895 jdk.FileRead 8003662 182366048 jdk.ObjectAllocationInNewTLAB 74081 1467438 jdk.BooleanFlag 55552 1757424 jdk.CPULoad 44452 888403 jdk.Checkpoint 7837 29520997 jdk.Compilation 6291 162266 jdk.UnsignedIntFlag 5376 182368 jdk.IntFlag 4928 179808 jdk.StringFlag 3808 147611 jdk.ObjectAllocationOutsideTLAB 1384 24622 jdk.CPUInformation 112 168220 jdk.GCConfiguration 112 2908 jdk.JVMInformation 112 106396 jdk.Metadata 112 12379021 jdk.GarbageCollection 60 1442 jdk.ActiveRecording 0 0 jdk.ActiveSetting 0 0 jdk.AllocationRequiringGC 0 0 jdk.BooleanFlagChanged 0 0 jdk.CPUTimeSamplesLost 0 0 jdk.CPUTimeStampCounter 0 0 jdk.ClassDefine 0 0 jdk.ClassLoad 0 0 jdk.ClassLoaderStatistics 0 0 jdk.ClassLoadingStatistics 0 0 jdk.ClassRedefinition 0 0 jdk.ClassUnload 0 0 jdk.CodeCacheConfiguration 0 0 jdk.CodeCacheFull 0 0 jdk.CodeCacheStatistics 0 0 jdk.CompilationFailure 0 0 jdk.CompilerConfiguration 0 0 jdk.CompilerInlining 0 0 jdk.CompilerPhase 0 0 jdk.CompilerQueueUtilization 0 0 jdk.CompilerStatistics 0 0 jdk.ConcurrentModeFailure 0 0 jdk.ContainerCPUThrottling 0 0 jdk.ContainerCPUUsage 0 0 jdk.ContainerConfiguration 0 0 jdk.ContainerIOUsage 0 0 jdk.ContainerMemoryUsage 0 0 jdk.ContinuationFreeze 0 0 jdk.ContinuationFreezeFast 0 0 jdk.ContinuationFreezeSlow 0 0 jdk.ContinuationThaw 0 0 jdk.ContinuationThawFast 0 0 jdk.ContinuationThawSlow 0 0 jdk.DataLoss 0 0 jdk.Deoptimization 0 0 jdk.DeprecatedInvocation 0 0 jdk.Deserialization 0 0 jdk.DirectBufferStatistics 0 0 jdk.DoubleFlag 0 0 jdk.DoubleFlagChanged 0 0 jdk.DumpReason 0 0 jdk.EvacuationFailed 0 0 jdk.EvacuationInformation 0 0 jdk.ExceptionStatistics 0 0 jdk.ExecuteVMOperation 0 0 jdk.ExecutionSample 0 0 jdk.FileForce 0 0 jdk.FinalizerStatistics 0 0 jdk.Flush 0 0 jdk.G1AdaptiveIHOP 0 0 jdk.G1BasicIHOP 0 0 jdk.G1EvacuationOldStatistics 0 0 jdk.G1EvacuationYoungStatistics 0 0 jdk.G1GarbageCollection 0 0 jdk.G1HeapRegionInformation 0 0 jdk.G1HeapRegionTypeChange 0 0 jdk.G1HeapSummary 0 0 jdk.G1MMU 0 0 jdk.GCCPUTime 0 0 jdk.GCHeapConfiguration 0 0 jdk.GCHeapMemoryPoolUsage 0 0 jdk.GCHeapMemoryUsage 0 0 jdk.GCHeapSummary 0 0 jdk.GCPhaseConcurrent 0 0 jdk.GCPhaseConcurrentLevel1 0 0 jdk.GCPhaseConcurrentLevel2 0 0 jdk.GCPhaseParallel 0 0 jdk.GCPhasePause 0 0 jdk.GCPhasePauseLevel1 0 0 jdk.GCPhasePauseLevel2 0 0 jdk.GCPhasePauseLevel3 0 0 jdk.GCPhasePauseLevel4 0 0 jdk.GCReferenceStatistics 0 0 jdk.GCSurvivorConfiguration 0 0 jdk.GCTLABConfiguration 0 0 jdk.HeapDump 0 0 jdk.InitialEnvironmentVariable 0 0 jdk.InitialSecurityProperty 0 0 jdk.InitialSystemProperty 0 0 jdk.IntFlagChanged 0 0 jdk.JITRestart 0 0 jdk.JavaAgent 0 0 jdk.JavaErrorThrow 0 0 jdk.JavaExceptionThrow 0 0 jdk.JavaMonitorDeflate 0 0 jdk.JavaMonitorEnter 0 0 jdk.JavaMonitorInflate 0 0 jdk.JavaMonitorNotify 0 0 jdk.JavaMonitorStatistics 0 0 jdk.JavaMonitorWait 0 0 jdk.JavaThreadStatistics 0 0 jdk.LongFlag 0 0 jdk.LongFlagChanged 0 0 jdk.MetaspaceAllocationFailure 0 0 jdk.MetaspaceChunkFreeListSummary 0 0 jdk.MetaspaceGCThreshold 0 0 jdk.MetaspaceOOM 0 0 jdk.MetaspaceSummary 0 0 jdk.MethodTiming 0 0 jdk.MethodTrace 0 0 jdk.ModuleExport 0 0 jdk.ModuleRequire 0 0 jdk.NativeAgent 0 0 jdk.NativeLibrary 0 0 jdk.NativeLibraryLoad 0 0 jdk.NativeLibraryUnload 0 0 jdk.NativeMemoryUsage 0 0 jdk.NativeMemoryUsageTotal 0 0 jdk.NativeMethodSample 0 0 jdk.NetworkUtilization 0 0 jdk.OSInformation 0 0 jdk.ObjectAllocationSample 0 0 jdk.ObjectCount 0 0 jdk.ObjectCountAfterGC 0 0 jdk.OldGarbageCollection 0 0 jdk.OldObjectSample 0 0 jdk.PSHeapSummary 0 0 jdk.ParallelOldGarbageCollection 0 0 jdk.PhysicalMemory 0 0 jdk.ProcessStart 0 0 jdk.PromoteObjectInNewPLAB 0 0 jdk.PromoteObjectOutsidePLAB 0 0 jdk.PromotionFailed 0 0 jdk.RedefineClasses 0 0 jdk.ReservedStackActivation 0 0 jdk.ResidentSetSize 0 0 jdk.RetransformClasses 0 0 jdk.SafepointBegin 0 0 jdk.SafepointEnd 0 0 jdk.SafepointLatency 0 0 jdk.SafepointStateSynchronization 0 0 jdk.SecurityPropertyModification 0 0 jdk.SecurityProviderService 0 0 jdk.SerializationMisdeclaration 0 0 jdk.ShenandoahEvacuationInformation 0 0 jdk.ShenandoahHeapRegionInformation 0 0 jdk.ShenandoahHeapRegionStateChange 0 0 jdk.Shutdown 0 0 jdk.SocketRead 0 0 jdk.SocketWrite 0 0 jdk.StringFlagChanged 0 0 jdk.StringTableStatistics 0 0 jdk.SwapSpace 0 0 jdk.SymbolTableStatistics 0 0 jdk.SyncOnValueBasedClass 0 0 jdk.SystemGC 0 0 jdk.SystemProcess 0 0 jdk.TLSHandshake 0 0 jdk.TenuringDistribution 0 0 jdk.ThreadAllocationStatistics 0 0 jdk.ThreadCPULoad 0 0 jdk.ThreadContextSwitchRate 0 0 jdk.ThreadDump 0 0 jdk.ThreadEnd 0 0 jdk.ThreadPark 0 0 jdk.ThreadSleep 0 0 jdk.ThreadStart 0 0 jdk.UnsignedIntFlagChanged 0 0 jdk.UnsignedLongFlag 0 0 jdk.UnsignedLongFlagChanged 0 0 jdk.VirtualThreadEnd 0 0 jdk.VirtualThreadPinned 0 0 jdk.VirtualThreadStart 0 0 jdk.VirtualThreadSubmitFailed 0 0 jdk.VirtualizationInformation 0 0 jdk.X509Certificate 0 0 jdk.X509Validation 0 0 jdk.YoungGarbageCollection 0 0 jdk.YoungGenerationConfiguration 0 0 jdk.ZAllocationStall 0 0 jdk.ZOldGarbageCollection 0 0 jdk.ZPageAllocation 0 0 jdk.ZRelocationSet 0 0 jdk.ZRelocationSetGroup 0 0 jdk.ZStatisticsCounter 0 0 jdk.ZStatisticsSampler 0 0 jdk.ZThreadPhase 0 0 jdk.ZUncommit 0 0 jdk.ZYoungGarbageCollection 0 0 profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmTrue.jfr Profiler for cpu at stackSize=1 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmTrue.jfr is 1393.43 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 43858811 events (total: 43M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 48.84% 21M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():290 [JIT compiled code] 21.46% 9M jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] 10.30% 4M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] 3.46% 1M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] 3.39% 1M java.lang.ThreadLocal#remove():261 [Inlined code] 3.20% 1M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] 1.18% 517951 org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] 0.89% 392046 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] 0.88% 385388 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] 0.69% 303806 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] 0.55% 243106 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] 0.51% 223940 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] 0.35% 151849 java.lang.Math#clamp():2313 [JIT compiled code] 0.29% 128277 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] 0.28% 120669 java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():499 [Inlined code] 0.26% 115844 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] 0.26% 112383 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():193 [JIT compiled code] 0.24% 106502 org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] 0.24% 103436 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] 0.23% 102771 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] 0.22% 94517 jdk.jfr.internal.JVM#emitEvent() [Native code] 0.17% 75546 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] 0.14% 62660 sun.nio.ch.NativeThread#current0() [Native code] 0.11% 50418 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] 0.10% 44640 org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] 0.10% 43222 org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():512 [JIT compiled code] 0.09% 40827 org.apache.lucene.util.hnsw.NeighborArray#sort():171 [Inlined code] 0.09% 40137 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():363 [JIT compiled code] 0.08% 37272 org.apache.lucene.store.ChecksumIndexInput#skipByReading():81 [JIT compiled code] 0.08% 36184 org.apache.lucene.util.TernaryLongHeap#downHeap():246 [Inlined code] 0.07% 31823 org.apache.lucene.util.TernaryLongHeap#downHeap():235 [Inlined code] 0.07% 30476 jdk.jfr.internal.event.EventWriter#reserveEventSizeField():199 [Inlined code] 0.06% 27123 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] 0.06% 26286 org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter#writeVectorData():302 [JIT compiled code] 0.06% 26115 java.util.Arrays#sort():99 [Inlined code] 0.06% 25893 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#calculateCentroid():488 [JIT compiled code] 0.06% 25455 sun.nio.ch.UnixFileDispatcherImpl#read0() [Native code] 0.05% 22367 java.util.concurrent.atomic.LongAdder#add():93 [Inlined code] 0.04% 16133 jdk.jfr.internal.event.EventWriter#putUncheckedLong():331 [Inlined code] 0.03% 15168 org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] 0.03% 15147 java.util.DualPivotQuicksort#sort():238 [Inlined code] 0.03% 14663 org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] 0.03% 13840 java.util.DualPivotQuicksort#sort():368 [JIT compiled code] 0.03% 13186 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] 0.02% 10610 org.apache.lucene.util.hnsw.NeighborArray#clear():233 [Inlined code] 0.02% 10086 org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] 0.02% 8808 org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [Inlined code] 0.02% 8265 org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] 0.02% 7918 org.apache.lucene.internal.hppc.IntIntHashMap#containsKey():297 [Inlined code] 0.02% 7434 knn.IndexerThread#_run():105 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmTrue.jfr Profiler for cpu at stackSize=4 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmTrue.jfr is 1393.43 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 43858811 events (total: 43M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 45.74% 20M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():290 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 21.44% 9M jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnalignedInternal():3169 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnaligned():3159 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():60 [Inlined code] 10.30% 4M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] 3.39% 1M java.lang.ThreadLocal#remove():261 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryReleaseShared():434 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#releaseShared():806 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#unlock():903 [Inlined code] 3.20% 1M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] 2.74% 1M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [JIT compiled code] 2.66% 1M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():290 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] 1.18% 517804 org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#collect():713 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():350 [JIT compiled code] 0.71% 312526 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] 0.67% 295037 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.67% 292035 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] 0.53% 232856 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.46% 200604 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.41% 179282 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] 0.33% 146579 java.lang.Math#clamp():2313 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():290 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] 0.27% 120396 java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():499 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] 0.26% 115834 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.24% 103402 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] 0.23% 102557 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#release():720 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$WriteLock#unlock():1154 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():422 [JIT compiled code] 0.21% 90369 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():290 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] 0.20% 89373 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.20% 89099 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():193 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] 0.19% 85258 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] 0.19% 85093 jdk.jfr.internal.JVM#emitEvent() [Native code] at jdk.jfr.internal.periodic.JVMEventTask#execute():54 [Inlined code] at jdk.jfr.internal.periodic.PeriodicTask#run():125 [Inlined code] at jdk.jfr.internal.periodic.PeriodicEvents#doPeriodic():145 [JIT compiled code] 0.18% 77262 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():101 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] 0.17% 75450 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] 0.15% 65173 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():290 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] 0.14% 63311 org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] 0.14% 62813 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#updateTop():153 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] 0.12% 50630 sun.nio.ch.NativeThread#current0() [Native code] at sun.nio.ch.NativeThread#current():51 [Inlined code] at sun.nio.ch.NativeThreadSet#add():48 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():349 [Inlined code] 0.11% 50418 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.10% 43218 org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():512 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] 0.09% 41184 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#flush():156 [JIT compiled code] 0.09% 40826 org.apache.lucene.util.hnsw.NeighborArray#sort():171 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.07% 30470 jdk.jfr.internal.event.EventWriter#reserveEventSizeField():199 [Inlined code] at jdk.jfr.internal.event.EventWriter#beginEvent():245 [Inlined code] at jdk.internal.event.FileWriteEvent#commit() [JIT compiled code] at jdk.internal.event.FileWriteEvent#offer():69 [Inlined code] 0.07% 28637 org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.06% 27326 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():363 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.06% 27216 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#pop():124 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#pop():129 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():322 [JIT compiled code] 0.06% 27109 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.06% 26286 org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter#writeVectorData():302 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter#mergeOneFlatVectorField():235 [Interpreted code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():325 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] 0.06% 26114 java.util.Arrays#sort():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#sort():173 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] 0.06% 25893 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#calculateCentroid():488 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeAndRecalculateCentroids():459 [Interpreted code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():331 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] 0.06% 25444 sun.nio.ch.UnixFileDispatcherImpl#read0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#read():51 [Inlined code] at sun.nio.ch.IOUtil#readIntoNativeBuffer():341 [Inlined code] at sun.nio.ch.IOUtil#read():307 [Inlined code] 0.06% 24856 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#pop():124 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#pop():129 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popNode():667 [Inlined code] 0.05% 22949 org.apache.lucene.util.TernaryLongHeap#downHeap():235 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#updateTop():153 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] 0.05% 22165 org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] 0.05% 21395 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():193 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#flush():156 [JIT compiled code] 0.05% 21115 org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.05% 19812 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Interpreted code] 0.04% 18286 org.apache.lucene.store.ChecksumIndexInput#skipByReading():81 [JIT compiled code] at org.apache.lucene.store.ChecksumIndexInput#seek():64 [Inlined code] at org.apache.lucene.codecs.CodecUtil#checksumEntireFile():619 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsReader#checkIntegrity():194 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmTrue.jfr Profiler for cpu at stackSize=12 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmTrue.jfr is 1393.43 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 43858811 events (total: 43M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 30.00% 13M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():290 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 15.56% 6M jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnalignedInternal():3169 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnaligned():3159 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():60 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():53 [Inlined code] at java.lang.invoke.VarHandleGuards#guard_LJ_I():251 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#get():742 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#readInt():270 [Inlined code] at org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#vectorValue():131 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():245 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] 13.88% 6M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():290 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 9.08% 3M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 2.95% 1M jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnalignedInternal():3169 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnaligned():3159 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():60 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():53 [Inlined code] at java.lang.invoke.VarHandleGuards#guard_LJ_I():251 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#get():742 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#readInt():270 [Inlined code] at org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#vectorValue():131 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():199 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 2.49% 1M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 2.17% 952994 jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnalignedInternal():3169 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnaligned():3159 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():60 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():53 [Inlined code] at java.lang.invoke.VarHandleGuards#guard_LJ_I():251 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#get():742 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#readInt():270 [Inlined code] at org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#vectorValue():131 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():199 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] 2.14% 936982 java.lang.ThreadLocal#remove():261 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryReleaseShared():434 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#releaseShared():806 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#unlock():903 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():256 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 1.70% 743489 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():290 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 1.22% 535272 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():290 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 1.06% 466127 java.lang.ThreadLocal#remove():261 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryReleaseShared():434 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#releaseShared():806 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#unlock():903 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():256 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 1.00% 438728 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000002a196b58#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] 0.94% 412037 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():290 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.93% 409567 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] 0.90% 393642 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000002a196b58#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] 0.84% 368743 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000002a196b58#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] 0.75% 327108 org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#collect():713 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():350 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 0.59% 258594 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x000000002a19b728#run() [JIT compiled code] 0.43% 187322 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():290 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 0.40% 176858 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] 0.38% 165309 org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#collect():713 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():350 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 0.37% 161282 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#flush():156 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#flush():209 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#flush():123 [JIT compiled code] at org.apache.lucene.index.VectorValuesConsumer#flush():76 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():325 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] 0.31% 135757 jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnalignedInternal():3169 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnaligned():3159 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():60 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():53 [Inlined code] at java.lang.invoke.VarHandleGuards#guard_LJ_I():251 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#get():742 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#readInt():270 [Inlined code] at org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#vectorValue():131 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():245 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] 0.30% 130162 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 0.28% 123060 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] 0.24% 103339 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] at sun.nio.ch.IOUtil#write():72 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():355 [Inlined code] at sun.nio.ch.FileChannelImpl#traceImplWrite():374 [Inlined code] at sun.nio.ch.FileChannelImpl#write():333 [Inlined code] at sun.nio.ch.ChannelOutputStream#writeFully():68 [Inlined code] at sun.nio.ch.ChannelOutputStream#write():105 [Inlined code] at org.apache.lucene.store.FSDirectory$FSIndexOutput$1#write():391 [Inlined code] at java.util.zip.CheckedOutputStream#write():73 [Inlined code] 0.23% 100979 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [Inlined code] 0.23% 99272 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x000000002a19b728#run() [JIT compiled code] 0.21% 93962 jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnalignedInternal():3169 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnaligned():3159 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():60 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():53 [Inlined code] at java.lang.invoke.VarHandleGuards#guard_LJ_I():251 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#get():742 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#readInt():270 [Inlined code] at org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#vectorValue():131 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():245 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] 0.19% 85093 jdk.jfr.internal.JVM#emitEvent() [Native code] at jdk.jfr.internal.periodic.JVMEventTask#execute():54 [Inlined code] at jdk.jfr.internal.periodic.PeriodicTask#run():125 [Inlined code] at jdk.jfr.internal.periodic.PeriodicEvents#doPeriodic():145 [JIT compiled code] at jdk.jfr.internal.PlatformRecorder#periodicTask():502 [Interpreted code] at jdk.jfr.internal.PlatformRecorder#lambda$startDiskMonitor$0():428 [Interpreted code] at jdk.jfr.internal.PlatformRecorder$$Lambda.0x000000002a07aa58#run() [Interpreted code] at java.lang.Thread#runWith():1487 [Interpreted code] at java.lang.Thread#run():1474 [Interpreted code] 0.18% 80743 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x000000002a19b728#run() [JIT compiled code] 0.17% 76561 java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():499 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.16% 71708 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#flush():156 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#flush():209 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#flush():123 [JIT compiled code] at org.apache.lucene.index.VectorValuesConsumer#flush():76 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():325 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#postUpdate():404 [Inlined code] 0.16% 70678 java.lang.Math#clamp():2313 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():290 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] 0.15% 65785 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():290 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] 0.15% 64200 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 0.15% 63919 jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnalignedInternal():3169 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnaligned():3159 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():60 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():53 [Inlined code] at java.lang.invoke.VarHandleGuards#guard_LJ_I():251 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#get():742 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#readInt():270 [Inlined code] at org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#vectorValue():131 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():199 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.15% 63864 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#release():720 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$WriteLock#unlock():1154 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():422 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 0.14% 63134 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000002a196b58#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#merge():159 [Interpreted code] 0.14% 62125 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] 0.14% 61289 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():290 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Interpreted code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] 0.14% 60780 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000002a196b58#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#merge():159 [Interpreted code] 0.13% 56228 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.13% 55368 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000002a196b58#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():159 [Interpreted code] 0.12% 53978 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x000000002a19b728#run() [JIT compiled code] 0.12% 53456 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.12% 50914 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] 0.12% 50526 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 0.11% 50349 sun.nio.ch.NativeThread#current0() [Native code] at sun.nio.ch.NativeThread#current():51 [Inlined code] at sun.nio.ch.NativeThreadSet#add():48 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():349 [Inlined code] at sun.nio.ch.FileChannelImpl#traceImplWrite():374 [Inlined code] at sun.nio.ch.FileChannelImpl#write():333 [Inlined code] at sun.nio.ch.ChannelOutputStream#writeFully():68 [Inlined code] at sun.nio.ch.ChannelOutputStream#write():105 [Inlined code] at org.apache.lucene.store.FSDirectory$FSIndexOutput$1#write():391 [Inlined code] at java.util.zip.CheckedOutputStream#write():73 [Inlined code] at java.io.BufferedOutputStream#flushBuffer():123 [Inlined code] at java.io.BufferedOutputStream#write():188 [Inlined code] 0.11% 50296 java.lang.ThreadLocal#remove():261 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryReleaseShared():434 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#releaseShared():806 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#unlock():903 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():256 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmTrue.jfr Profiler for heap at stackSize=1 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmTrue.jfr is 1393.43 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 75440 events (total: 574477M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 23.75% 136452M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] 23.25% 133553M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] 23.17% 133117M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] 11.04% 63434M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] 5.63% 32356M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] 3.78% 21694M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] 1.03% 5938M java.util.Arrays#copyOf():3478 [Inlined code] 0.94% 5388M java.lang.Integer#valueOf():1006 [Inlined code] 0.68% 3888M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] 0.66% 3807M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] 0.66% 3802M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] 0.66% 3776M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] 0.60% 3451M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():204 [JIT compiled code] 0.39% 2217M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] 0.31% 1752M knn.KnnIndexer$TrackingConcurrentMergeScheduler#doMerge():355 [Interpreted code] 0.30% 1731M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] 0.25% 1446M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():232 [JIT compiled code] 0.24% 1374M knn.IndexerThread#_run():86 [Interpreted code] 0.20% 1136M java.util.DualPivotQuicksort#tryMergeRuns():816 [JIT compiled code] 0.19% 1113M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():320 [JIT compiled code] 0.16% 923M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():193 [JIT compiled code] 0.15% 878M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():158 [JIT compiled code] 0.15% 864M org.apache.lucene.search.AbstractKnnVectorQuery#getKnnCollectorManager():248 [Inlined code] 0.14% 824M java.lang.invoke.DirectMethodHandle#allocateInstance():500 [Inlined code] 0.12% 677M java.util.ArrayList#grow():240 [Inlined code] 0.11% 635M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():306 [JIT compiled code] 0.11% 629M java.lang.reflect.Array#newInstance():76 [Inlined code] 0.10% 548M java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquire():389 [JIT compiled code] 0.09% 515M org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Interpreted code] 0.08% 466M knn.IndexerThread#_run():108 [JIT compiled code] 0.08% 447M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():556 [JIT compiled code] 0.07% 405M java.util.ArrayList#iterator():1030 [JIT compiled code] 0.06% 365M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():618 [JIT compiled code] 0.06% 350M java.util.DualPivotQuicksort#sort():354 [JIT compiled code] 0.06% 327M java.util.HashMap#newNode():1910 [Inlined code] 0.06% 324M org.apache.lucene.document.Document#():42 [Inlined code] 0.05% 292M jdk.internal.misc.Unsafe#allocateUninitializedArray():1396 [Inlined code] 0.05% 259M knn.IndexerThread#_run():125 [JIT compiled code] 0.04% 227M java.util.concurrent.locks.ReentrantReadWriteLock$Sync$ThreadLocalHoldCounter#initialValue():291 [Inlined code] 0.03% 191M knn.IndexerThread#_run():86 [JIT compiled code] 0.03% 182M org.apache.lucene.util.SparseFixedBitSet#insertLong():230 [Inlined code] 0.03% 179M org.apache.lucene.util.SparseFixedBitSet#insertBlock():211 [JIT compiled code] 0.03% 172M java.lang.ThreadLocal$ThreadLocalMap#set():550 [Inlined code] 0.03% 171M java.util.concurrent.atomic.AtomicBoolean#compareAndSet():98 [Interpreted code] 0.03% 167M org.apache.lucene.util.FixedBitSet#():148 [Inlined code] 0.03% 166M org.apache.lucene.util.hnsw.OnHeapHnswGraph#():86 [JIT compiled code] 0.03% 150M java.util.HashMap#resize():711 [JIT compiled code] 0.02% 139M org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#writeGraph():526 [JIT compiled code] 0.02% 137M java.io.BufferedOutputStream#():92 [Inlined code] 0.02% 101M org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#writeGraph():522 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmTrue.jfr Profiler for heap at stackSize=4 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmTrue.jfr is 1393.43 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 75440 events (total: 574477M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 18.93% 108729M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] 18.78% 107887M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] 13.19% 75758M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 9.73% 55923M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] 6.77% 38911M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollector#():44 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [JIT compiled code] 5.63% 32356M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():335 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] 4.42% 25365M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] 4.27% 24512M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollector#():44 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [Interpreted code] 4.25% 24388M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] 3.78% 21694M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.98% 5605M java.util.Arrays#copyOf():3478 [Inlined code] at java.util.ArrayDeque#grow():146 [JIT compiled code] at java.util.ArrayDeque#addFirst():288 [Inlined code] at java.util.ArrayDeque#push():577 [Inlined code] 0.91% 5243M java.lang.Integer#valueOf():1006 [Inlined code] at knn.KnnGraphTester#printGraphConnectedNess():1131 [JIT compiled code] at knn.KnnGraphTester#printFanoutHist():1086 [Interpreted code] at knn.KnnGraphTester#printFanoutHist():1061 [Interpreted code] 0.66% 3807M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.66% 3802M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.65% 3758M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.35% 2017M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.33% 1889M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():204 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Interpreted code] 0.32% 1853M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.31% 1752M knn.KnnIndexer$TrackingConcurrentMergeScheduler#doMerge():355 [Interpreted code] at org.apache.lucene.index.ConcurrentMergeScheduler$MergeThread#run():726 [Interpreted code] 0.26% 1519M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.25% 1460M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.24% 1374M knn.IndexerThread#_run():86 [Interpreted code] at knn.IndexerThread#run():77 [Interpreted code] 0.20% 1136M java.util.DualPivotQuicksort#tryMergeRuns():816 [JIT compiled code] at java.util.DualPivotQuicksort#sort():277 [JIT compiled code] at java.util.DualPivotQuicksort#sort():238 [Inlined code] at java.util.Arrays#sort():123 [Inlined code] 0.20% 1126M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.18% 1039M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():204 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.17% 955M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():232 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] 0.16% 937M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] 0.15% 864M org.apache.lucene.search.AbstractKnnVectorQuery#getKnnCollectorManager():248 [Inlined code] at org.apache.lucene.search.AbstractKnnVectorQuery#rewrite():106 [JIT compiled code] at org.apache.lucene.search.KnnFloatVectorQuery#rewrite():48 [Inlined code] at knn.KnnGraphTester$ProfiledKnnFloatVectorQuery#rewrite():2274 [JIT compiled code] 0.14% 813M java.lang.invoke.DirectMethodHandle#allocateInstance():500 [Inlined code] at java.lang.invoke.DirectMethodHandle$Holder#newInvokeSpecial() [Inlined code] at java.lang.invoke.Invokers$Holder#linkToTargetMethod() [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] 0.13% 736M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.12% 677M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] 0.12% 673M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():193 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] 0.11% 629M java.lang.reflect.Array#newInstance():76 [Inlined code] at org.apache.lucene.util.ArrayUtil#growExact():216 [Inlined code] at org.apache.lucene.util.ArrayUtil#grow():234 [JIT compiled code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():152 [JIT compiled code] 0.09% 530M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():320 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] 0.09% 519M java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquire():389 [JIT compiled code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():739 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] 0.09% 515M org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Interpreted code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x000000002a19b728#run() [Interpreted code] at java.util.concurrent.ThreadPoolExecutor#runWorker():1090 [Interpreted code] at java.util.concurrent.ThreadPoolExecutor$Worker#run():614 [Interpreted code] 0.08% 466M knn.IndexerThread#_run():108 [JIT compiled code] at knn.IndexerThread#run():77 [Interpreted code] 0.08% 456M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] 0.08% 437M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():238 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] 0.07% 429M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():232 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#flush():156 [JIT compiled code] 0.07% 416M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():158 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.07% 414M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.07% 411M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():238 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] 0.07% 403M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():238 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] 0.07% 403M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():556 [JIT compiled code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader#serializedDocument():645 [Inlined code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#copyOneDoc():508 [Inlined code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#merge():630 [JIT compiled code] 0.06% 338M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():618 [JIT compiled code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader#serializedDocument():645 [Inlined code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#copyOneDoc():508 [Inlined code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#merge():630 [JIT compiled code] 0.06% 327M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] 0.06% 324M org.apache.lucene.document.Document#():42 [Inlined code] at knn.IndexerThread#_run():86 [JIT compiled code] at knn.IndexerThread#run():77 [Interpreted code] 0.05% 313M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():204 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.05% 302M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():306 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmTrue.jfr Profiler for heap at stackSize=12 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q4-fmTrue.jfr is 1393.43 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 75440 events (total: 574477M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 8.51% 48911M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 8.33% 47844M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] 8.32% 47770M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] 6.87% 39494M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 6.76% 38847M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollector#():44 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():28 [Inlined code] at org.apache.lucene.search.IndexSearcher#search():752 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#searchAfter():601 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#search():624 [Inlined code] at knn.KnnGraphTester#doFloatVectorQuery():1527 [JIT compiled code] at knn.KnnGraphTester#testSearch():1253 [Interpreted code] at knn.KnnGraphTester#run():770 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] 5.56% 31923M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():335 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$FieldWriter#addValue():568 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$FieldWriter#addValue():518 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():783 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [Inlined code] 4.55% 26153M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 4.45% 25583M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] 4.36% 25043M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] 3.93% 22552M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 3.83% 22015M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 2.85% 16384M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollector#():44 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():28 [Interpreted code] at org.apache.lucene.search.IndexSearcher#search():752 [Interpreted code] at org.apache.lucene.search.IndexSearcher#searchAfter():601 [Interpreted code] at org.apache.lucene.search.IndexSearcher#search():624 [Interpreted code] at knn.KnnGraphTester#doFloatVectorQuery():1527 [Interpreted code] at knn.KnnGraphTester#testSearch():1253 [Interpreted code] at knn.KnnGraphTester#run():770 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] 2.83% 16233M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 1.45% 8332M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] 1.42% 8156M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] 1.41% 8128M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollector#():44 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():28 [Interpreted code] at org.apache.lucene.search.IndexSearcher#search():752 [Interpreted code] at org.apache.lucene.search.IndexSearcher#searchAfter():601 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#search():624 [Inlined code] at knn.KnnGraphTester#doFloatVectorQuery():1527 [JIT compiled code] at knn.KnnGraphTester#testSearch():1253 [Interpreted code] at knn.KnnGraphTester#run():770 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] 1.40% 8036M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():255 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initGraph():148 [Interpreted code] at org.apache.lucene.util.hnsw.ConcurrentHnswMerger#createBuilder():81 [Interpreted code] at org.apache.lucene.util.hnsw.IncrementalHnswGraphMerger#merge():212 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#buildAndWriteGraph():485 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#lambda$mergeOneField$0():440 [Interpreted code] 1.34% 7710M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():255 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initGraph():148 [Interpreted code] at org.apache.lucene.util.hnsw.ConcurrentHnswMerger#createBuilder():81 [Interpreted code] at org.apache.lucene.util.hnsw.IncrementalHnswGraphMerger#merge():212 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#buildAndWriteGraph():485 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#lambda$mergeOneField$0():440 [Interpreted code] 1.17% 6699M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 1.00% 5742M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 0.98% 5605M java.util.Arrays#copyOf():3478 [Inlined code] at java.util.ArrayDeque#grow():146 [JIT compiled code] at java.util.ArrayDeque#addFirst():288 [Inlined code] at java.util.ArrayDeque#push():577 [Inlined code] at knn.KnnGraphTester#printGraphConnectedNess():1131 [JIT compiled code] at knn.KnnGraphTester#printFanoutHist():1086 [Interpreted code] at knn.KnnGraphTester#printFanoutHist():1061 [Interpreted code] at knn.KnnGraphTester#run():775 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] at knn.KnnGraphTester#main():275 [Interpreted code] 0.94% 5404M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.91% 5243M java.lang.Integer#valueOf():1006 [Inlined code] at knn.KnnGraphTester#printGraphConnectedNess():1131 [JIT compiled code] at knn.KnnGraphTester#printFanoutHist():1086 [Interpreted code] at knn.KnnGraphTester#printFanoutHist():1061 [Interpreted code] at knn.KnnGraphTester#run():775 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] at knn.KnnGraphTester#main():275 [Interpreted code] 0.85% 4889M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.82% 4715M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 0.81% 4681M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 0.73% 4173M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.69% 3939M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.59% 3411M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.55% 3140M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.50% 2851M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#replayBufferedVectors():771 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():787 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.46% 2634M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#replayBufferedVectors():771 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():787 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.45% 2585M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] 0.45% 2563M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] 0.45% 2558M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.35% 1998M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [JIT compiled code] 0.33% 1889M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():204 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Interpreted code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Interpreted code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x000000002a19b728#run() [Interpreted code] at java.util.concurrent.ThreadPoolExecutor#runWorker():1090 [Interpreted code] 0.31% 1790M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.31% 1752M knn.KnnIndexer$TrackingConcurrentMergeScheduler#doMerge():355 [Interpreted code] at org.apache.lucene.index.ConcurrentMergeScheduler$MergeThread#run():726 [Interpreted code] 0.28% 1612M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.26% 1492M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.24% 1374M knn.IndexerThread#_run():86 [Interpreted code] at knn.IndexerThread#run():77 [Interpreted code] 0.21% 1230M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [Interpreted code] 0.20% 1173M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] 0.18% 1051M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] 0.18% 1039M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():204 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Interpreted code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Interpreted code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x000000002a19b728#run() [Interpreted code] at java.util.concurrent.ThreadPoolExecutor#runWorker():1090 [Interpreted code] 0.14% 812M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.14% 778M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002a19b1d0#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Interpreted code] 0.13% 766M org.apache.lucene.search.AbstractKnnVectorQuery#getKnnCollectorManager():248 [Inlined code] at org.apache.lucene.search.AbstractKnnVectorQuery#rewrite():106 [JIT compiled code] at org.apache.lucene.search.KnnFloatVectorQuery#rewrite():48 [Inlined code] at knn.KnnGraphTester$ProfiledKnnFloatVectorQuery#rewrite():2274 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#rewrite():873 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#rewrite():884 [Inlined code] at org.apache.lucene.search.IndexSearcher#search():753 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#searchAfter():601 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#search():624 [Inlined code] at knn.KnnGraphTester#doFloatVectorQuery():1527 [JIT compiled code] at knn.KnnGraphTester#testSearch():1253 [Interpreted code] at knn.KnnGraphTester#run():770 [Interpreted code] 0.13% 761M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] now remove KNN index knn-reuse/indices/dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-4-compressed-fm cmd: ['/usr/sbin/perf', 'stat', '-dd', '-e', 'task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend', '/usr/lib/jvm/java-25-openjdk/bin/java', '--add-modules', 'jdk.incubator.vector', '-Xmx32g', '-Xms32g', '-server', '-XX:+UseParallelGC', '-Djava.io.tmpdir=/l/tmp', '--enable-native-access=ALL-UNNAMED', '-cp', '/l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build:/l/util.nightly/build', '--add-modules', 'jdk.incubator.vector', '--enable-native-access=ALL-UNNAMED', '-XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmFalse.jfr', 'knn.KnnGraphTester', '-maxConn', '32', '-dim', '1024', '-docs', '/big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec', '-ndoc', '8000000', '-topK', '100', '-numIndexThreads', '8', '-beamWidthIndex', '100', '-search-and-stats', '/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec', '-metric', 'dot_product', '-numMergeThread', '16', '-numMergeWorker', '48', '-reindex', '-quantize', '-quantizeBits', '7'] WARNING: Using incubator modules: jdk.incubator.vector [0.215s][info][jfr,startup] Started recording 1. [0.215s][info][jfr,startup] [0.215s][info][jfr,startup] Use jcmd 2123704 JFR.dump name=1 to copy recording data to file. maxConn = 32 Vector Dimensions: 1024 numDocs = 8000000 beamWidth = 100 similarity = DOT_PRODUCT Seed = 2366513548752464 index key = dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-7-notfm Index Path = knn-reuse/indices/dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-7-notfm will now reindex: explicitly requested May 15, 2026 5:23:41 PM org.apache.lucene.internal.vectorization.PanamaVectorizationProvider logIncubatorSetup INFO: Java vector incubator API enabled; uses preferredBitSize=256; FMA enabled creating index in knn-reuse/indices/dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-7-notfm 39709371 doc vectors in docsPath "/big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec" parentJoin=false Done indexing 25000 documents. Done indexing 50000 documents. Done indexing 75000 documents. Done indexing 100000 documents. Done indexing 125000 documents. Done indexing 150000 documents. Done indexing 175000 documents. Done indexing 200000 documents. Done indexing 225000 documents. Done indexing 250000 documents. Done indexing 275000 documents. Done indexing 300000 documents. Done indexing 325000 documents. Done indexing 350000 documents. Done indexing 375000 documents. Done indexing 400000 documents. Done indexing 425000 documents. Done indexing 450000 documents. Done indexing 475000 documents. Done indexing 500000 documents. Done indexing 525000 documents. Done indexing 550000 documents. Done indexing 575000 documents. Done indexing 600000 documents. Done indexing 625000 documents. Done indexing 650000 documents. Done indexing 675000 documents. Done indexing 700000 documents. Done indexing 725000 documents. Done indexing 750000 documents. Done indexing 775000 documents. Done indexing 800000 documents. Done indexing 825000 documents. Done indexing 850000 documents. Done indexing 875000 documents. Done indexing 900000 documents. Done indexing 925000 documents. Done indexing 950000 documents. Done indexing 975000 documents. Done indexing 1000000 documents. Done indexing 1025000 documents. Done indexing 1050000 documents. Done indexing 1075000 documents. Done indexing 1100000 documents. Done indexing 1125000 documents. Done indexing 1150000 documents. Done indexing 1175000 documents. Done indexing 1200000 documents. Done indexing 1225000 documents. Done indexing 1250000 documents. Done indexing 1275000 documents. Done indexing 1300000 documents. Done indexing 1325000 documents. Done indexing 1350000 documents. Done indexing 1375000 documents. Done indexing 1400000 documents. Done indexing 1425000 documents. Done indexing 1450000 documents. Done indexing 1475000 documents. Done indexing 1500000 documents. Done indexing 1525000 documents. Done indexing 1550000 documents. Done indexing 1575000 documents. Done indexing 1600000 documents. Done indexing 1625000 documents. Done indexing 1650000 documents. Done indexing 1675000 documents. Done indexing 1700000 documents. Done indexing 1725000 documents. Done indexing 1750000 documents. Done indexing 1775000 documents. Done indexing 1800000 documents. Done indexing 1825000 documents. Done indexing 1850000 documents. Done indexing 1875000 documents. Done indexing 1900000 documents. Done indexing 1925000 documents. Done indexing 1950000 documents. Done indexing 1975000 documents. Done indexing 2000000 documents. Done indexing 2025000 documents. Done indexing 2050000 documents. Done indexing 2075000 documents. Done indexing 2100000 documents. Done indexing 2125000 documents. Done indexing 2150000 documents. Done indexing 2175000 documents. Done indexing 2200000 documents. Done indexing 2225000 documents. Done indexing 2250000 documents. Done indexing 2275000 documents. Done indexing 2300000 documents. Done indexing 2325000 documents. Done indexing 2350000 documents. Done indexing 2375000 documents. Done indexing 2400000 documents. Done indexing 2425000 documents. Done indexing 2450000 documents. Done indexing 2475000 documents. Done indexing 2500000 documents. Done indexing 2525000 documents. Done indexing 2550000 documents. Done indexing 2575000 documents. Done indexing 2600000 documents. Done indexing 2625000 documents. Done indexing 2650000 documents. Done indexing 2675000 documents. Done indexing 2700000 documents. Done indexing 2725000 documents. Done indexing 2750000 documents. Done indexing 2775000 documents. Done indexing 2800000 documents. Done indexing 2825000 documents. Done indexing 2850000 documents. Done indexing 2875000 documents. Done indexing 2900000 documents. Done indexing 2925000 documents. Done indexing 2950000 documents. Done indexing 2975000 documents. Done indexing 3000000 documents. Done indexing 3025000 documents. Done indexing 3050000 documents. Done indexing 3075000 documents. Done indexing 3100000 documents. Done indexing 3125000 documents. Done indexing 3150000 documents. Done indexing 3175000 documents. Done indexing 3200000 documents. Done indexing 3225000 documents. Done indexing 3250000 documents. Done indexing 3275000 documents. Done indexing 3300000 documents. Done indexing 3325000 documents. Done indexing 3350000 documents. Done indexing 3375000 documents. Done indexing 3400000 documents. Done indexing 3425000 documents. Done indexing 3450000 documents. Done indexing 3475000 documents. Done indexing 3500000 documents. Done indexing 3525000 documents. Done indexing 3550000 documents. Done indexing 3575000 documents. Done indexing 3600000 documents. Done indexing 3625000 documents. Done indexing 3650000 documents. Done indexing 3675000 documents. Done indexing 3700000 documents. Done indexing 3725000 documents. Done indexing 3750000 documents. Done indexing 3775000 documents. Done indexing 3800000 documents. Done indexing 3825000 documents. Done indexing 3850000 documents. Done indexing 3875000 documents. Done indexing 3900000 documents. Done indexing 3925000 documents. Done indexing 3950000 documents. Done indexing 3975000 documents. Done indexing 4000000 documents. Done indexing 4025000 documents. Done indexing 4050000 documents. Done indexing 4075000 documents. Done indexing 4100000 documents. Done indexing 4125000 documents. Done indexing 4150000 documents. Done indexing 4175000 documents. Done indexing 4200000 documents. Done indexing 4225000 documents. Done indexing 4250000 documents. Done indexing 4275000 documents. Done indexing 4300000 documents. Done indexing 4325000 documents. Done indexing 4350000 documents. Done indexing 4375000 documents. Done indexing 4400000 documents. Done indexing 4425000 documents. Done indexing 4450000 documents. Done indexing 4475000 documents. Done indexing 4500000 documents. Done indexing 4525000 documents. Done indexing 4550000 documents. Done indexing 4575000 documents. Done indexing 4600000 documents. Done indexing 4625000 documents. Done indexing 4650000 documents. Done indexing 4675000 documents. Done indexing 4700000 documents. Done indexing 4725000 documents. Done indexing 4750000 documents. Done indexing 4775000 documents. Done indexing 4800000 documents. Done indexing 4825000 documents. Done indexing 4850000 documents. Done indexing 4875000 documents. Done indexing 4900000 documents. Done indexing 4925000 documents. Done indexing 4950000 documents. Done indexing 4975000 documents. Done indexing 5000000 documents. Done indexing 5025000 documents. Done indexing 5050000 documents. Done indexing 5075000 documents. Done indexing 5100000 documents. Done indexing 5125000 documents. Done indexing 5150000 documents. Done indexing 5175000 documents. Done indexing 5200000 documents. Done indexing 5225000 documents. Done indexing 5250000 documents. Done indexing 5275000 documents. Done indexing 5300000 documents. Done indexing 5325000 documents. Done indexing 5350000 documents. Done indexing 5375000 documents. Done indexing 5400000 documents. Done indexing 5425000 documents. Done indexing 5450000 documents. Done indexing 5475000 documents. Done indexing 5500000 documents. Done indexing 5525000 documents. Done indexing 5550000 documents. Done indexing 5575000 documents. Done indexing 5600000 documents. Done indexing 5625000 documents. Done indexing 5650000 documents. Done indexing 5675000 documents. Done indexing 5700000 documents. Done indexing 5725000 documents. Done indexing 5750000 documents. Done indexing 5775000 documents. Done indexing 5800000 documents. Done indexing 5825000 documents. Done indexing 5850000 documents. Done indexing 5875000 documents. Done indexing 5900000 documents. Done indexing 5925000 documents. Done indexing 5950000 documents. Done indexing 5975000 documents. Done indexing 6000000 documents. Done indexing 6025000 documents. Done indexing 6050000 documents. Done indexing 6075000 documents. Done indexing 6100000 documents. Done indexing 6125000 documents. Done indexing 6150000 documents. Done indexing 6175000 documents. Done indexing 6200000 documents. Done indexing 6225000 documents. Done indexing 6250000 documents. Done indexing 6275000 documents. Done indexing 6300000 documents. Done indexing 6325000 documents. Done indexing 6350000 documents. Done indexing 6375000 documents. Done indexing 6400000 documents. Done indexing 6425000 documents. Done indexing 6450000 documents. Done indexing 6475000 documents. Done indexing 6500000 documents. Done indexing 6525000 documents. Done indexing 6550000 documents. Done indexing 6575000 documents. Done indexing 6600000 documents. Done indexing 6625000 documents. Done indexing 6650000 documents. Done indexing 6675000 documents. Done indexing 6700000 documents. Done indexing 6725000 documents. Done indexing 6750000 documents. Done indexing 6775000 documents. Done indexing 6800000 documents. Done indexing 6825000 documents. Done indexing 6850000 documents. Done indexing 6875000 documents. Done indexing 6900000 documents. Done indexing 6925000 documents. Done indexing 6950000 documents. Done indexing 6975000 documents. Done indexing 7000000 documents. Done indexing 7025000 documents. Done indexing 7050000 documents. Done indexing 7075000 documents. Done indexing 7100000 documents. Done indexing 7125000 documents. Done indexing 7150000 documents. Done indexing 7175000 documents. Done indexing 7200000 documents. Done indexing 7225000 documents. Done indexing 7250000 documents. Done indexing 7275000 documents. Done indexing 7300000 documents. Done indexing 7325000 documents. Done indexing 7350000 documents. Done indexing 7375000 documents. Done indexing 7400000 documents. Done indexing 7425000 documents. Done indexing 7450000 documents. Done indexing 7475000 documents. Done indexing 7500000 documents. Done indexing 7525000 documents. Done indexing 7550000 documents. Done indexing 7575000 documents. Done indexing 7600000 documents. Done indexing 7625000 documents. Done indexing 7650000 documents. Done indexing 7675000 documents. Done indexing 7700000 documents. Done indexing 7725000 documents. Done indexing 7750000 documents. Done indexing 7775000 documents. Done indexing 7800000 documents. Done indexing 7825000 documents. Done indexing 7850000 documents. Done indexing 7875000 documents. Done indexing 7900000 documents. Done indexing 7925000 documents. Done indexing 7950000 documents. Done indexing 7975000 documents. Done indexing 8000000 documents. now IndexWriter.commit() now wait for already running merges to finish 0.0 sec: 96 segments, 10 merges 93.0s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 56.5s _1cr: 8 segs, 175.3 K docs, 872.8 MB 39.9s _1d9: 8 segs, 40.4 K docs, 199.9 MB 31.5s _1di: 8 segs, 40.7 K docs, 201.7 MB 26.7s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 20.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 15.4s _1e2: 9 segs, 42.9 K docs, 212.6 MB 9.8s _1ea: 8 segs, 76.0 K docs, 377.3 MB 3.5s _1ej: 8 segs, 39.7 K docs, 196.5 MB 0.0s _1el: 9 segs, 35.2 K docs, 174.3 MB 5.0 sec: 82 segments, 8 merges 98.0s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 36.5s _1di: 8 segs, 40.7 K docs, 201.7 MB 31.7s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 25.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 20.4s _1e2: 9 segs, 42.9 K docs, 212.6 MB 14.8s _1ea: 8 segs, 76.0 K docs, 377.3 MB 8.5s _1ej: 8 segs, 39.7 K docs, 196.5 MB 5.0s _1el: 9 segs, 35.2 K docs, 174.3 MB 10.0 sec: 82 segments, 8 merges 103.0s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 41.5s _1di: 8 segs, 40.7 K docs, 201.7 MB 36.7s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 30.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 25.4s _1e2: 9 segs, 42.9 K docs, 212.6 MB 19.8s _1ea: 8 segs, 76.0 K docs, 377.3 MB 13.5s _1ej: 8 segs, 39.7 K docs, 196.5 MB 10.0s _1el: 9 segs, 35.2 K docs, 174.3 MB 15.0 sec: 75 segments, 7 merges 108.0s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 41.7s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 35.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 30.4s _1e2: 9 segs, 42.9 K docs, 212.6 MB 24.8s _1ea: 8 segs, 76.0 K docs, 377.3 MB 18.5s _1ej: 8 segs, 39.7 K docs, 196.5 MB 15.0s _1el: 9 segs, 35.2 K docs, 174.3 MB 20.0 sec: 75 segments, 7 merges 113.0s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 46.7s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 40.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 35.4s _1e2: 9 segs, 42.9 K docs, 212.6 MB 29.8s _1ea: 8 segs, 76.0 K docs, 377.3 MB 23.6s _1ej: 8 segs, 39.7 K docs, 196.5 MB 20.0s _1el: 9 segs, 35.2 K docs, 174.3 MB 25.0 sec: 75 segments, 7 merges 118.0s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 51.7s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 45.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 40.4s _1e2: 9 segs, 42.9 K docs, 212.6 MB 34.8s _1ea: 8 segs, 76.0 K docs, 377.3 MB 28.6s _1ej: 8 segs, 39.7 K docs, 196.5 MB 25.0s _1el: 9 segs, 35.2 K docs, 174.3 MB 30.0 sec: 68 segments, 6 merges 123.0s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 56.7s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 50.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 45.4s _1e2: 9 segs, 42.9 K docs, 212.6 MB 39.8s _1ea: 8 segs, 76.0 K docs, 377.3 MB 30.0s _1el: 9 segs, 35.2 K docs, 174.3 MB 35.1 sec: 52 segments, 4 merges 128.0s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 61.8s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 55.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 44.8s _1ea: 8 segs, 76.0 K docs, 377.3 MB 40.1 sec: 52 segments, 4 merges 133.1s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 66.8s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 60.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 49.8s _1ea: 8 segs, 76.0 K docs, 377.3 MB 45.1 sec: 52 segments, 4 merges 138.1s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 71.8s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 65.3s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 54.8s _1ea: 8 segs, 76.0 K docs, 377.3 MB 50.1 sec: 52 segments, 4 merges 143.1s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 76.8s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 70.3s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 59.9s _1ea: 8 segs, 76.0 K docs, 377.3 MB 55.1 sec: 52 segments, 4 merges 148.1s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 81.8s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 75.3s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 64.9s _1ea: 8 segs, 76.0 K docs, 377.3 MB 60.1 sec: 52 segments, 4 merges 153.1s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 86.8s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 80.3s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 69.9s _1ea: 8 segs, 76.0 K docs, 377.3 MB 65.0 sec: 45 segments, 3 merges 158.0s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 91.7s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 85.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 70.0 sec: 45 segments, 3 merges 163.0s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 96.7s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 90.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 75.0 sec: 45 segments, 3 merges 168.0s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 101.7s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 95.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 80.0 sec: 45 segments, 3 merges 173.0s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 106.7s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 100.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 85.0 sec: 45 segments, 3 merges 178.0s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 111.7s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 105.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 90.0 sec: 45 segments, 3 merges 183.0s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 116.7s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 110.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 95.0 sec: 45 segments, 3 merges 188.0s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 121.7s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 115.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 100.0 sec: 45 segments, 3 merges 193.0s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 126.7s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 120.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 105.0 sec: 45 segments, 3 merges 198.0s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 131.7s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 125.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 110.1 sec: 45 segments, 3 merges 203.0s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 136.7s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 130.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 115.1 sec: 45 segments, 3 merges 208.0s _1bc: 8 segs, 1008.3 K docs, 5030.5 MB 141.8s _1dn: 8 segs, 210.1 K docs, 1046.1 MB 135.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 120.1 sec: 31 segments, 2 merges 140.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 2.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB 125.1 sec: 31 segments, 2 merges 145.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 7.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB 130.1 sec: 31 segments, 2 merges 150.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 12.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB 135.1 sec: 31 segments, 2 merges 155.3s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 17.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB 140.1 sec: 31 segments, 2 merges 160.3s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 22.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB 145.1 sec: 31 segments, 2 merges 165.3s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 27.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB 150.1 sec: 31 segments, 2 merges 170.3s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 32.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB 155.1 sec: 31 segments, 2 merges 175.3s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 37.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB 160.1 sec: 31 segments, 2 merges 180.3s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 42.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB 165.1 sec: 31 segments, 2 merges 185.3s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 47.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB 170.0 sec: 31 segments, 2 merges 190.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 52.5s _1em: 8 segs, 329.6 K docs, 1640.8 MB 175.0 sec: 31 segments, 2 merges 195.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 57.5s _1em: 8 segs, 329.6 K docs, 1640.8 MB 180.0 sec: 31 segments, 2 merges 200.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 62.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB 185.0 sec: 31 segments, 2 merges 205.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 67.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB 190.0 sec: 31 segments, 2 merges 210.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 72.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB 195.0 sec: 31 segments, 2 merges 215.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 77.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB 200.0 sec: 31 segments, 2 merges 220.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 82.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB 205.0 sec: 31 segments, 2 merges 225.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 87.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB 210.0 sec: 31 segments, 2 merges 230.2s _1dw: 8 segs, 726.2 K docs, 3621.1 MB 92.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB 215.0 sec: 24 segments, 1 merges 97.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB 220.0 sec: 24 segments, 1 merges 102.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB 225.0 sec: 24 segments, 1 merges 107.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB 230.0 sec: 24 segments, 1 merges 112.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB 235.0 sec: 24 segments, 1 merges 117.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB 240.0 sec: 24 segments, 1 merges 122.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB 245.0 sec: 24 segments, 1 merges 127.6s _1em: 8 segs, 329.6 K docs, 1640.8 MB done first pass waiting for merges done second pass waiting for merges (CMS.sync()) Indexed 8000000 docs in 1508 seconds reindex takes 1508.64 sec index has 17 segments: segments_2: _9r(11.0.0):C1017768 _kz(11.0.0):C840532 _f0(11.0.0):C331863 _1bc(11.0.0):C1008316 _s6(11.0.0):C940233 _10f(11.0.0):C839960 _xi(11.0.0):C249003 _1dw(11.0.0):C726172 _101(11.0.0):C248711 _147(11.0.0):C440273 _19d(11.0.0):C246790 _1aa(11.0.0):C245937 _1dn(11.0.0):C210135 _1cr(11.0.0):C175328 _1cj(11.0.0):C73422 _1em(11.0.0):C329579 _1ea(11.0.0):C75978 _9r: 5083.4 MB _kz: 4197.3 MB _f0: 1656.2 MB _1bc: 5036.2 MB _s6: 4695.8 MB _10f: 4194.6 MB _xi: 1242.5 MB _1dw: 3625.8 MB _101: 1241.0 MB _147: 2197.6 MB _19d: 1231.4 MB _1aa: 1227.1 MB _1dn: 1048.4 MB _1cr: 874.6 MB _1cj: 365.9 MB _1em: 1644.8 MB _1ea: 378.6 MB encodingByteSize=4 origByteSize=4 realEncodingByteSize=1.0 index disk usage is 39941.31 MB vector disk usage is 39184.57 MB vector RAM usage is 7934.57 MB exact nn key = cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100 read pre-cached exact match vectors from cache file "knn-reuse/exact-nn/cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100.bin" read pre-cached exact match scores from cache file "knn-reuse/exact-nn/cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100.scores" EXACT_NN_SCORES_PATH: /l/util.nightly/knn-reuse/exact-nn/cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100.scores EXACT_NN_METRIC: dot_product path=/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec dim=1024 vectorEncoding.byteSize=4 1778739 query vectors in queryPath "/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec" searching 1000 query vectors; topK=100, fanout=100 done warmup thread 3 name=main cpu@start=56802238053 cpu@end=71093996203 deltaMS=14291.75815 thread 14 name=Reference Handler cpu@start=1395112 cpu@end=1395112 deltaMS=0.0 thread 15 name=Finalizer cpu@start=150398 cpu@end=150398 deltaMS=0.0 thread 16 name=Signal Dispatcher cpu@start=66695 cpu@end=66695 deltaMS=0.0 thread 40 name=Common-Cleaner cpu@start=7138748 cpu@end=7138748 deltaMS=0.0 thread 41 name=JFR Recorder Thread cpu@start=19197726099 cpu@end=19200238201 deltaMS=2.512102 thread 42 name=JFR Periodic Tasks cpu@start=121217578269 cpu@end=121893181689 deltaMS=675.60342 thread 45 name=Notification Thread cpu@start=116008 cpu@end=116008 deltaMS=0.0 thread 56 name=hnsw-merge-1-thread-1 cpu@start=1718102711694 cpu@end=1718102711694 deltaMS=0.0 thread 57 name=hnsw-merge-1-thread-2 cpu@start=1720462434189 cpu@end=1720462434189 deltaMS=0.0 thread 58 name=hnsw-merge-1-thread-3 cpu@start=1719717914167 cpu@end=1719717914167 deltaMS=0.0 thread 59 name=hnsw-merge-1-thread-4 cpu@start=1723000881609 cpu@end=1723000881609 deltaMS=0.0 thread 60 name=hnsw-merge-1-thread-5 cpu@start=1720474118656 cpu@end=1720474118656 deltaMS=0.0 thread 61 name=hnsw-merge-1-thread-6 cpu@start=1719533393062 cpu@end=1719533393062 deltaMS=0.0 thread 62 name=hnsw-merge-1-thread-7 cpu@start=1722434277166 cpu@end=1722434277166 deltaMS=0.0 thread 63 name=hnsw-merge-1-thread-8 cpu@start=1722997431701 cpu@end=1722997431701 deltaMS=0.0 thread 64 name=hnsw-merge-1-thread-9 cpu@start=1718543681570 cpu@end=1718543681570 deltaMS=0.0 thread 65 name=hnsw-merge-1-thread-10 cpu@start=1719045444400 cpu@end=1719045444400 deltaMS=0.0 thread 66 name=hnsw-merge-1-thread-11 cpu@start=1719092849343 cpu@end=1719092849343 deltaMS=0.0 thread 67 name=hnsw-merge-1-thread-12 cpu@start=1720206731656 cpu@end=1720206731656 deltaMS=0.0 thread 68 name=hnsw-merge-1-thread-13 cpu@start=1721036271979 cpu@end=1721036271979 deltaMS=0.0 thread 69 name=hnsw-merge-1-thread-14 cpu@start=1720086849999 cpu@end=1720086849999 deltaMS=0.0 thread 70 name=hnsw-merge-1-thread-15 cpu@start=1721837266863 cpu@end=1721837266863 deltaMS=0.0 thread 71 name=hnsw-merge-1-thread-16 cpu@start=1721538305609 cpu@end=1721538305609 deltaMS=0.0 Average CPU cores used: 1.046508539876794 completed 1000 searches in 14304 ms: 69 QPS CPU time=14969 ms checking results SUMMARY: 0.955 14.304 14.969 1.046 8000000 KNN 100 100 N/A N/A 100.000 32 100 7 bits 66608 1508.64 5302.80 0.00 17 39941.31 null N/A 1.000 39184.570 7934.570 false HNSW no Leaf 0 has 4 layers Leaf 0 has 1017768 documents Graph level=3 size=54, Fanout min=3, mean=8.70, max=16, meandelta=87071.98 % 0 10 20 30 40 50 60 70 80 90 100 0 5 6 7 7 8 10 10 11 13 16 Graph level=2 size=847, Fanout min=9, mean=23.08, max=32, meandelta=40273.26 % 0 10 20 30 40 50 60 70 80 90 100 0 14 17 19 21 23 25 28 32 32 32 Graph level=1 size=31027, Fanout min=1, mean=28.04, max=32, meandelta=33272.24 % 0 10 20 30 40 50 60 70 80 90 100 0 19 23 26 29 32 32 32 32 32 32 Graph level=0 size=1017768, Fanout min=1, mean=39.48, max=64, meandelta=23866.21 % 0 10 20 30 40 50 60 70 80 90 100 0 20 24 28 32 37 42 49 60 64 64 Graph level=3 size=54, connectedness=1.00 Graph level=2 size=847, connectedness=1.00 Graph level=1 size=31027, connectedness=1.00 Graph level=0 size=1017768, connectedness=1.00 Leaf 1 has 4 layers Leaf 1 has 840532 documents Graph level=3 size=38, Fanout min=4, mean=8.00, max=14, meandelta=74742.10 % 0 10 20 30 40 50 60 70 80 90 100 0 5 5 6 7 7 8 9 10 11 14 Graph level=2 size=730, Fanout min=7, mean=22.52, max=32, meandelta=34083.79 % 0 10 20 30 40 50 60 70 80 90 100 0 14 16 18 20 22 24 27 30 32 32 Graph level=1 size=25709, Fanout min=3, mean=28.04, max=32, meandelta=27502.21 % 0 10 20 30 40 50 60 70 80 90 100 0 19 23 26 29 32 32 32 32 32 32 Graph level=0 size=840532, Fanout min=1, mean=39.51, max=64, meandelta=19708.75 % 0 10 20 30 40 50 60 70 80 90 100 0 20 24 28 32 37 42 49 60 64 64 Graph level=3 size=38, connectedness=1.00 Graph level=2 size=730, connectedness=1.00 Graph level=1 size=25709, connectedness=1.00 Graph level=0 size=840532, connectedness=1.00 Leaf 2 has 4 layers Leaf 2 has 331863 documents Graph level=3 size=22, Fanout min=3, mean=6.18, max=9, meandelta=35670.48 % 0 10 20 30 40 50 60 70 80 90 100 0 3 4 5 5 6 7 7 8 9 9 Graph level=2 size=302, Fanout min=6, mean=17.63, max=32, meandelta=15708.04 % 0 10 20 30 40 50 60 70 80 90 100 0 10 12 14 15 17 18 20 23 26 32 Graph level=1 size=10244, Fanout min=8, mean=27.53, max=32, meandelta=10989.44 % 0 10 20 30 40 50 60 70 80 90 100 0 19 22 25 28 31 32 32 32 32 32 Graph level=0 size=331863, Fanout min=1, mean=39.52, max=64, meandelta=7796.32 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 37 42 49 59 64 64 Graph level=3 size=22, connectedness=1.00 Graph level=2 size=302, connectedness=1.00 Graph level=1 size=10244, connectedness=1.00 Graph level=0 size=331863, connectedness=1.00 Leaf 3 has 4 layers Leaf 3 has 1008316 documents Graph level=3 size=48, Fanout min=4, mean=8.00, max=16, meandelta=96289.91 % 0 10 20 30 40 50 60 70 80 90 100 0 5 5 7 7 8 8 9 10 11 16 Graph level=2 size=884, Fanout min=8, mean=23.11, max=32, meandelta=39591.80 % 0 10 20 30 40 50 60 70 80 90 100 0 15 17 19 21 23 25 28 31 32 32 Graph level=1 size=30866, Fanout min=2, mean=28.09, max=32, meandelta=32906.37 % 0 10 20 30 40 50 60 70 80 90 100 0 19 23 26 30 32 32 32 32 32 32 Graph level=0 size=1008316, Fanout min=1, mean=39.51, max=64, meandelta=23630.27 % 0 10 20 30 40 50 60 70 80 90 100 0 20 24 28 32 37 42 49 60 64 64 Graph level=3 size=48, connectedness=1.00 Graph level=2 size=884, connectedness=1.00 Graph level=1 size=30866, connectedness=1.00 Graph level=0 size=1008316, connectedness=1.00 Leaf 4 has 4 layers Leaf 4 has 940233 documents Graph level=3 size=52, Fanout min=3, mean=8.62, max=18, meandelta=82832.64 % 0 10 20 30 40 50 60 70 80 90 100 0 5 5 6 7 8 9 10 11 13 18 Graph level=2 size=834, Fanout min=8, mean=23.00, max=32, meandelta=36945.86 % 0 10 20 30 40 50 60 70 80 90 100 0 14 16 19 21 23 25 28 31 32 32 Graph level=1 size=28603, Fanout min=2, mean=28.06, max=32, meandelta=30626.07 % 0 10 20 30 40 50 60 70 80 90 100 0 19 23 26 29 32 32 32 32 32 32 Graph level=0 size=940233, Fanout min=1, mean=39.53, max=64, meandelta=22024.91 % 0 10 20 30 40 50 60 70 80 90 100 0 20 24 28 32 37 42 49 60 64 64 Graph level=3 size=52, connectedness=1.00 Graph level=2 size=834, connectedness=1.00 Graph level=1 size=28603, connectedness=1.00 Graph level=0 size=940233, connectedness=1.00 Leaf 5 has 4 layers Leaf 5 has 839960 documents Graph level=3 size=42, Fanout min=4, mean=7.90, max=16, meandelta=81095.53 % 0 10 20 30 40 50 60 70 80 90 100 0 5 5 6 7 8 8 8 9 10 16 Graph level=2 size=719, Fanout min=8, mean=22.18, max=32, meandelta=34129.77 % 0 10 20 30 40 50 60 70 80 90 100 0 14 16 18 20 22 24 27 30 32 32 Graph level=1 size=25544, Fanout min=3, mean=27.99, max=32, meandelta=27439.82 % 0 10 20 30 40 50 60 70 80 90 100 0 19 23 26 29 32 32 32 32 32 32 Graph level=0 size=839960, Fanout min=1, mean=39.59, max=64, meandelta=19662.85 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 37 42 49 60 64 64 Graph level=3 size=42, connectedness=1.00 Graph level=2 size=719, connectedness=1.00 Graph level=1 size=25544, connectedness=1.00 Graph level=0 size=839960, connectedness=1.00 Leaf 6 has 4 layers Leaf 6 has 249003 documents Graph level=3 size=14, Fanout min=2, mean=4.43, max=8, meandelta=29600.53 % 0 10 20 30 40 50 60 70 80 90 100 0 2 3 3 3 4 4 5 6 6 8 Graph level=2 size=230, Fanout min=7, mean=16.09, max=32, meandelta=13271.50 % 0 10 20 30 40 50 60 70 80 90 100 0 10 12 13 14 15 17 18 20 22 32 Graph level=1 size=7659, Fanout min=8, mean=27.43, max=32, meandelta=8292.35 % 0 10 20 30 40 50 60 70 80 90 100 0 18 22 25 28 31 32 32 32 32 32 Graph level=0 size=249003, Fanout min=1, mean=39.41, max=64, meandelta=5869.42 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 36 42 49 59 64 64 Graph level=3 size=14, connectedness=1.00 Graph level=2 size=230, connectedness=1.00 Graph level=1 size=7659, connectedness=1.00 Graph level=0 size=249003, connectedness=1.00 Leaf 7 has 4 layers Leaf 7 has 726172 documents Graph level=3 size=30, Fanout min=3, mean=6.80, max=10, meandelta=66369.41 % 0 10 20 30 40 50 60 70 80 90 100 0 5 5 5 6 6 7 8 9 10 10 Graph level=2 size=591, Fanout min=8, mean=21.28, max=32, meandelta=30809.47 % 0 10 20 30 40 50 60 70 80 90 100 0 13 15 17 19 21 22 25 28 32 32 Graph level=1 size=22187, Fanout min=4, mean=27.98, max=32, meandelta=23786.58 % 0 10 20 30 40 50 60 70 80 90 100 0 19 23 26 29 32 32 32 32 32 32 Graph level=0 size=726172, Fanout min=1, mean=39.59, max=64, meandelta=17000.21 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 37 42 49 60 64 64 Graph level=3 size=30, connectedness=1.00 Graph level=2 size=591, connectedness=1.00 Graph level=1 size=22187, connectedness=1.00 Graph level=0 size=726172, connectedness=1.00 Leaf 8 has 4 layers Leaf 8 has 248711 documents Graph level=3 size=20, Fanout min=2, mean=4.60, max=8, meandelta=33948.65 % 0 10 20 30 40 50 60 70 80 90 100 0 3 3 4 4 4 4 5 6 7 8 Graph level=2 size=221, Fanout min=6, mean=15.35, max=31, meandelta=13792.30 % 0 10 20 30 40 50 60 70 80 90 100 0 10 11 12 14 15 16 17 19 22 31 Graph level=1 size=7615, Fanout min=7, mean=27.37, max=32, meandelta=8270.71 % 0 10 20 30 40 50 60 70 80 90 100 0 18 22 24 28 31 32 32 32 32 32 Graph level=0 size=248711, Fanout min=1, mean=39.42, max=64, meandelta=5857.44 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 37 42 49 59 64 64 Graph level=3 size=20, connectedness=1.00 Graph level=2 size=221, connectedness=1.00 Graph level=1 size=7615, connectedness=1.00 Graph level=0 size=248711, connectedness=1.00 Leaf 9 has 4 layers Leaf 9 has 440273 documents Graph level=3 size=22, Fanout min=2, mean=5.00, max=10, meandelta=55120.52 % 0 10 20 30 40 50 60 70 80 90 100 0 3 3 4 5 5 5 5 6 6 10 Graph level=2 size=340, Fanout min=6, mean=18.70, max=32, meandelta=20257.18 % 0 10 20 30 40 50 60 70 80 90 100 0 12 14 15 17 18 20 21 23 26 32 Graph level=1 size=13404, Fanout min=7, mean=27.72, max=32, meandelta=14502.06 % 0 10 20 30 40 50 60 70 80 90 100 0 19 22 25 28 32 32 32 32 32 32 Graph level=0 size=440273, Fanout min=1, mean=39.53, max=64, meandelta=10334.11 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 37 42 49 59 64 64 Graph level=3 size=22, connectedness=1.00 Graph level=2 size=340, connectedness=1.00 Graph level=1 size=13404, connectedness=1.00 Graph level=0 size=440273, connectedness=1.00 Leaf 10 has 4 layers Leaf 10 has 246790 documents Graph level=3 size=13, Fanout min=2, mean=4.46, max=7, meandelta=40961.05 % 0 10 20 30 40 50 60 70 80 90 100 0 2 2 3 4 5 5 5 5 5 7 Graph level=2 size=224, Fanout min=6, mean=15.02, max=29, meandelta=13747.27 % 0 10 20 30 40 50 60 70 80 90 100 0 10 11 12 13 14 15 17 19 22 29 Graph level=1 size=7625, Fanout min=8, mean=27.39, max=32, meandelta=8227.76 % 0 10 20 30 40 50 60 70 80 90 100 0 18 22 25 28 31 32 32 32 32 32 Graph level=0 size=246790, Fanout min=2, mean=39.36, max=64, meandelta=5823.44 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 36 42 49 59 64 64 Graph level=3 size=13, connectedness=1.00 Graph level=2 size=224, connectedness=1.00 Graph level=1 size=7625, connectedness=1.00 Graph level=0 size=246790, connectedness=1.00 Leaf 11 has 4 layers Leaf 11 has 245937 documents Graph level=3 size=11, Fanout min=2, mean=4.91, max=8, meandelta=38089.43 % 0 10 20 30 40 50 60 70 80 90 100 0 2 4 4 4 4 5 5 5 6 8 Graph level=2 size=222, Fanout min=6, mean=16.33, max=32, meandelta=12761.31 % 0 10 20 30 40 50 60 70 80 90 100 0 10 12 13 14 16 17 19 21 23 32 Graph level=1 size=7593, Fanout min=6, mean=27.39, max=32, meandelta=8203.36 % 0 10 20 30 40 50 60 70 80 90 100 0 18 22 25 28 31 32 32 32 32 32 Graph level=0 size=245937, Fanout min=1, mean=39.35, max=64, meandelta=5802.14 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 36 42 48 58 64 64 Graph level=3 size=11, connectedness=1.00 Graph level=2 size=222, connectedness=1.00 Graph level=1 size=7593, connectedness=1.00 Graph level=0 size=245937, connectedness=1.00 Leaf 12 has 4 layers Leaf 12 has 210135 documents Graph level=3 size=6, Fanout min=1, mean=2.00, max=3, meandelta=30826.17 % 0 10 20 30 40 50 60 70 80 90 100 0 1 1 1 2 2 2 2 2 2 3 Graph level=2 size=178, Fanout min=5, mean=14.54, max=30, meandelta=12208.76 % 0 10 20 30 40 50 60 70 80 90 100 0 9 11 12 13 13 15 16 18 21 30 Graph level=1 size=6546, Fanout min=8, mean=27.26, max=32, meandelta=7047.85 % 0 10 20 30 40 50 60 70 80 90 100 0 18 21 24 27 31 32 32 32 32 32 Graph level=0 size=210135, Fanout min=1, mean=39.36, max=64, meandelta=4958.85 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 36 42 48 58 64 64 Graph level=3 size=6, connectedness=1.00 Graph level=2 size=178, connectedness=1.00 Graph level=1 size=6546, connectedness=1.00 Graph level=0 size=210135, connectedness=1.00 Leaf 13 has 4 layers Leaf 13 has 175328 documents Graph level=3 size=3, Fanout min=1, mean=1.33, max=2, meandelta=16971.25 % 0 10 20 30 40 50 60 70 80 90 100 0 1 1 1 1 1 1 1 1 1 2 Graph level=2 size=142, Fanout min=5, mean=13.17, max=31, meandelta=11047.41 % 0 10 20 30 40 50 60 70 80 90 100 0 8 9 11 11 13 14 15 16 19 31 Graph level=1 size=5457, Fanout min=6, mean=27.07, max=32, meandelta=5882.46 % 0 10 20 30 40 50 60 70 80 90 100 0 18 21 24 27 30 32 32 32 32 32 Graph level=0 size=175328, Fanout min=2, mean=39.33, max=64, meandelta=4141.02 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 36 42 48 58 64 64 Graph level=3 size=3, connectedness=1.00 Graph level=2 size=142, connectedness=1.00 Graph level=1 size=5457, connectedness=1.00 Graph level=0 size=175328, connectedness=1.00 Leaf 14 has 4 layers Leaf 14 has 73422 documents Graph level=3 size=2, Fanout min=1, mean=1.00, max=1, meandelta=0.00 % 0 10 20 30 40 50 60 70 80 90 100 0 1 1 1 1 1 1 1 1 1 1 Graph level=2 size=64, Fanout min=5, mean=10.53, max=18, meandelta=5685.48 % 0 10 20 30 40 50 60 70 80 90 100 0 7 8 8 9 10 11 12 13 14 18 Graph level=1 size=2308, Fanout min=7, mean=25.86, max=32, meandelta=2604.77 % 0 10 20 30 40 50 60 70 80 90 100 0 17 19 22 25 27 31 32 32 32 32 Graph level=0 size=73422, Fanout min=2, mean=38.70, max=64, meandelta=1767.19 % 0 10 20 30 40 50 60 70 80 90 100 0 20 24 28 32 36 41 47 56 64 64 Graph level=3 size=2, connectedness=1.00 Graph level=2 size=64, connectedness=1.00 Graph level=1 size=2308, connectedness=1.00 Graph level=0 size=73422, connectedness=1.00 Leaf 15 has 4 layers Leaf 15 has 329579 documents Graph level=3 size=21, Fanout min=3, mean=5.71, max=9, meandelta=31884.28 % 0 10 20 30 40 50 60 70 80 90 100 0 3 3 4 4 6 6 7 8 8 9 Graph level=2 size=255, Fanout min=6, mean=16.80, max=32, meandelta=15198.71 % 0 10 20 30 40 50 60 70 80 90 100 0 9 11 13 15 16 18 19 23 25 32 Graph level=1 size=10006, Fanout min=7, mean=27.52, max=32, meandelta=10949.01 % 0 10 20 30 40 50 60 70 80 90 100 0 19 22 25 28 31 32 32 32 32 32 Graph level=0 size=329579, Fanout min=1, mean=39.49, max=64, meandelta=7746.19 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 37 42 49 59 64 64 Graph level=3 size=21, connectedness=1.00 Graph level=2 size=255, connectedness=1.00 Graph level=1 size=10006, connectedness=1.00 Graph level=0 size=329579, connectedness=1.00 Leaf 16 has 4 layers Leaf 16 has 75978 documents Graph level=3 size=3, Fanout min=2, mean=2.00, max=2, meandelta=21058.67 % 0 10 20 30 40 50 60 70 80 90 100 0 1 1 1 2 2 2 2 2 2 2 Graph level=2 size=61, Fanout min=3, mean=8.79, max=21, meandelta=7258.87 % 0 10 20 30 40 50 60 70 80 90 100 0 6 6 7 8 8 9 10 11 12 21 Graph level=1 size=2331, Fanout min=8, mean=25.96, max=32, meandelta=2663.46 % 0 10 20 30 40 50 60 70 80 90 100 0 17 20 22 24 28 31 32 32 32 32 Graph level=0 size=75978, Fanout min=3, mean=38.63, max=64, meandelta=1824.66 % 0 10 20 30 40 50 60 70 80 90 100 0 20 24 28 31 35 40 47 56 64 64 Graph level=3 size=3, connectedness=1.00 Graph level=2 size=61, connectedness=1.00 Graph level=1 size=2331, connectedness=1.00 Graph level=0 size=75978, connectedness=1.00 Performance counter stats for '/usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build:/l/util.nightly/build --add-modules jdk.incubator.vector --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmFalse.jfr knn.KnnGraphTester -maxConn 32 -dim 1024 -docs /big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec -ndoc 8000000 -topK 100 -numIndexThreads 8 -beamWidthIndex 100 -search-and-stats /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -metric dot_product -numMergeThread 16 -numMergeWorker 48 -reindex -quantize -quantizeBits 7': 53,937,555.17 msec task-clock:u 207,062,108,129,744 cycles:u (36.36%) 114,857,063,387,806 instructions:u (36.36%) 3,432,108,804,512 cache-references:u (36.36%) 1,544,504,843,574 cache-misses:u (36.36%) 41,398,082,455,202 L1-dcache-loads:u (36.36%) 1,484,161,057,551 L1-dcache-load-misses:u (36.36%) 2,660,014,045,555 L1-icache-loads:u (36.36%) 12,379,078,899 L1-icache-load-misses:u (36.36%) LLC-loads:u LLC-load-misses:u LLC-stores:u LLC-store-misses:u LLC-prefetches:u LLC-prefetch-misses:u 7,048,981 faults:u 6,177,718 minor-faults:u 173 major-faults:u 11,676,330,858,991 branches:u (36.36%) 88,336,474,224 branch-misses:u (36.36%) 3,099,338,270,068 stalled-cycles-frontend:u (36.36%) stalled-cycles-backend:u 1848.815785236 seconds time elapsed 53388.216033000 seconds user 536.187642000 seconds sys took 0:30:48.847499 to run KnnGraphTester result: KNNResultV1(lucene_git_rev='de92f115a3125624bf7c7141b8e700efa9a89427', luceneutil_git_rev='63c1b2b252f377e272313c1ac0f182be79ad78b6', index_vectors_file='/big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec', search_vectors_file='/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec', vector_dims=1024, do_force_merge=False, recall=0.955, cpu_time_ms=14.304, net_cpu_ms=14.969, avg_cpu_core_count=1.046, num_docs=8000000, top_k=100, fanout=100, max_conn=32, beam_width=100, quantize_desc='7 bits', total_visited=66608, index_time_sec=1508.64, index_docs_per_sec=5302.8, force_merge_time_sec=0.0, index_num_segments=17, index_size_on_disk_mb=39941.31, selectivity=None, pre_post_filter='null', vec_disk_mb=39184.57, vec_ram_mb=7934.57, graph_level_conn_p_values={3: (3, {0: 0, 10: 1, 20: 1, 30: 1, 40: 2, 50: 2, 60: 2, 70: 2, 80: 2, 90: 2, 100: 2}), 2: (61, {0: 0, 10: 6, 20: 6, 30: 7, 40: 8, 50: 8, 60: 9, 70: 10, 80: 11, 90: 12, 100: 21}), 1: (2331, {0: 0, 10: 17, 20: 20, 30: 22, 40: 24, 50: 28, 60: 31, 70: 32, 80: 32, 90: 32, 100: 32}), 0: (75978, {0: 0, 10: 20, 20: 24, 30: 28, 40: 31, 50: 35, 60: 40, 70: 47, 80: 56, 90: 64, 100: 64})}, combined_run_time=datetime.timedelta(seconds=1848, microseconds=847499)) Profiler summary for /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmFalse.jfr Version: 2.1 Chunks: 118 Start: 2026-05-15 21:23:41 (UTC) Duration: 1836 s Event Type Count Size (bytes) ============================================================= jdk.CPUTimeSample 51595009 885089238 jdk.FileWrite 19859323 416376174 jdk.FileRead 8003664 182970124 jdk.ObjectAllocationInNewTLAB 63626 1267784 jdk.BooleanFlag 58528 1851678 jdk.CPULoad 33980 678962 jdk.Checkpoint 8038 33738029 jdk.Compilation 6009 155296 jdk.UnsignedIntFlag 5664 192148 jdk.IntFlag 5192 189450 jdk.StringFlag 4012 155649 jdk.ObjectAllocationOutsideTLAB 1085 19452 jdk.CPUInformation 118 177232 jdk.GCConfiguration 118 3064 jdk.JVMInformation 118 109854 jdk.Metadata 118 13042183 jdk.GarbageCollection 46 1103 jdk.ActiveRecording 0 0 jdk.ActiveSetting 0 0 jdk.AllocationRequiringGC 0 0 jdk.BooleanFlagChanged 0 0 jdk.CPUTimeSamplesLost 0 0 jdk.CPUTimeStampCounter 0 0 jdk.ClassDefine 0 0 jdk.ClassLoad 0 0 jdk.ClassLoaderStatistics 0 0 jdk.ClassLoadingStatistics 0 0 jdk.ClassRedefinition 0 0 jdk.ClassUnload 0 0 jdk.CodeCacheConfiguration 0 0 jdk.CodeCacheFull 0 0 jdk.CodeCacheStatistics 0 0 jdk.CompilationFailure 0 0 jdk.CompilerConfiguration 0 0 jdk.CompilerInlining 0 0 jdk.CompilerPhase 0 0 jdk.CompilerQueueUtilization 0 0 jdk.CompilerStatistics 0 0 jdk.ConcurrentModeFailure 0 0 jdk.ContainerCPUThrottling 0 0 jdk.ContainerCPUUsage 0 0 jdk.ContainerConfiguration 0 0 jdk.ContainerIOUsage 0 0 jdk.ContainerMemoryUsage 0 0 jdk.ContinuationFreeze 0 0 jdk.ContinuationFreezeFast 0 0 jdk.ContinuationFreezeSlow 0 0 jdk.ContinuationThaw 0 0 jdk.ContinuationThawFast 0 0 jdk.ContinuationThawSlow 0 0 jdk.DataLoss 0 0 jdk.Deoptimization 0 0 jdk.DeprecatedInvocation 0 0 jdk.Deserialization 0 0 jdk.DirectBufferStatistics 0 0 jdk.DoubleFlag 0 0 jdk.DoubleFlagChanged 0 0 jdk.DumpReason 0 0 jdk.EvacuationFailed 0 0 jdk.EvacuationInformation 0 0 jdk.ExceptionStatistics 0 0 jdk.ExecuteVMOperation 0 0 jdk.ExecutionSample 0 0 jdk.FileForce 0 0 jdk.FinalizerStatistics 0 0 jdk.Flush 0 0 jdk.G1AdaptiveIHOP 0 0 jdk.G1BasicIHOP 0 0 jdk.G1EvacuationOldStatistics 0 0 jdk.G1EvacuationYoungStatistics 0 0 jdk.G1GarbageCollection 0 0 jdk.G1HeapRegionInformation 0 0 jdk.G1HeapRegionTypeChange 0 0 jdk.G1HeapSummary 0 0 jdk.G1MMU 0 0 jdk.GCCPUTime 0 0 jdk.GCHeapConfiguration 0 0 jdk.GCHeapMemoryPoolUsage 0 0 jdk.GCHeapMemoryUsage 0 0 jdk.GCHeapSummary 0 0 jdk.GCPhaseConcurrent 0 0 jdk.GCPhaseConcurrentLevel1 0 0 jdk.GCPhaseConcurrentLevel2 0 0 jdk.GCPhaseParallel 0 0 jdk.GCPhasePause 0 0 jdk.GCPhasePauseLevel1 0 0 jdk.GCPhasePauseLevel2 0 0 jdk.GCPhasePauseLevel3 0 0 jdk.GCPhasePauseLevel4 0 0 jdk.GCReferenceStatistics 0 0 jdk.GCSurvivorConfiguration 0 0 jdk.GCTLABConfiguration 0 0 jdk.HeapDump 0 0 jdk.InitialEnvironmentVariable 0 0 jdk.InitialSecurityProperty 0 0 jdk.InitialSystemProperty 0 0 jdk.IntFlagChanged 0 0 jdk.JITRestart 0 0 jdk.JavaAgent 0 0 jdk.JavaErrorThrow 0 0 jdk.JavaExceptionThrow 0 0 jdk.JavaMonitorDeflate 0 0 jdk.JavaMonitorEnter 0 0 jdk.JavaMonitorInflate 0 0 jdk.JavaMonitorNotify 0 0 jdk.JavaMonitorStatistics 0 0 jdk.JavaMonitorWait 0 0 jdk.JavaThreadStatistics 0 0 jdk.LongFlag 0 0 jdk.LongFlagChanged 0 0 jdk.MetaspaceAllocationFailure 0 0 jdk.MetaspaceChunkFreeListSummary 0 0 jdk.MetaspaceGCThreshold 0 0 jdk.MetaspaceOOM 0 0 jdk.MetaspaceSummary 0 0 jdk.MethodTiming 0 0 jdk.MethodTrace 0 0 jdk.ModuleExport 0 0 jdk.ModuleRequire 0 0 jdk.NativeAgent 0 0 jdk.NativeLibrary 0 0 jdk.NativeLibraryLoad 0 0 jdk.NativeLibraryUnload 0 0 jdk.NativeMemoryUsage 0 0 jdk.NativeMemoryUsageTotal 0 0 jdk.NativeMethodSample 0 0 jdk.NetworkUtilization 0 0 jdk.OSInformation 0 0 jdk.ObjectAllocationSample 0 0 jdk.ObjectCount 0 0 jdk.ObjectCountAfterGC 0 0 jdk.OldGarbageCollection 0 0 jdk.OldObjectSample 0 0 jdk.PSHeapSummary 0 0 jdk.ParallelOldGarbageCollection 0 0 jdk.PhysicalMemory 0 0 jdk.ProcessStart 0 0 jdk.PromoteObjectInNewPLAB 0 0 jdk.PromoteObjectOutsidePLAB 0 0 jdk.PromotionFailed 0 0 jdk.RedefineClasses 0 0 jdk.ReservedStackActivation 0 0 jdk.ResidentSetSize 0 0 jdk.RetransformClasses 0 0 jdk.SafepointBegin 0 0 jdk.SafepointEnd 0 0 jdk.SafepointLatency 0 0 jdk.SafepointStateSynchronization 0 0 jdk.SecurityPropertyModification 0 0 jdk.SecurityProviderService 0 0 jdk.SerializationMisdeclaration 0 0 jdk.ShenandoahEvacuationInformation 0 0 jdk.ShenandoahHeapRegionInformation 0 0 jdk.ShenandoahHeapRegionStateChange 0 0 jdk.Shutdown 0 0 jdk.SocketRead 0 0 jdk.SocketWrite 0 0 jdk.StringFlagChanged 0 0 jdk.StringTableStatistics 0 0 jdk.SwapSpace 0 0 jdk.SymbolTableStatistics 0 0 jdk.SyncOnValueBasedClass 0 0 jdk.SystemGC 0 0 jdk.SystemProcess 0 0 jdk.TLSHandshake 0 0 jdk.TenuringDistribution 0 0 jdk.ThreadAllocationStatistics 0 0 jdk.ThreadCPULoad 0 0 jdk.ThreadContextSwitchRate 0 0 jdk.ThreadDump 0 0 jdk.ThreadEnd 0 0 jdk.ThreadPark 0 0 jdk.ThreadSleep 0 0 jdk.ThreadStart 0 0 jdk.UnsignedIntFlagChanged 0 0 jdk.UnsignedLongFlag 0 0 jdk.UnsignedLongFlagChanged 0 0 jdk.VirtualThreadEnd 0 0 jdk.VirtualThreadPinned 0 0 jdk.VirtualThreadStart 0 0 jdk.VirtualThreadSubmitFailed 0 0 jdk.VirtualizationInformation 0 0 jdk.X509Certificate 0 0 jdk.X509Validation 0 0 jdk.YoungGarbageCollection 0 0 jdk.YoungGenerationConfiguration 0 0 jdk.ZAllocationStall 0 0 jdk.ZOldGarbageCollection 0 0 jdk.ZPageAllocation 0 0 jdk.ZRelocationSet 0 0 jdk.ZRelocationSetGroup 0 0 jdk.ZStatisticsCounter 0 0 jdk.ZStatisticsSampler 0 0 jdk.ZThreadPhase 0 0 jdk.ZUncommit 0 0 jdk.ZYoungGarbageCollection 0 0 profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmFalse.jfr Profiler for cpu at stackSize=1 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmFalse.jfr is 1464.87 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 51595009 events (total: 51M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 58.80% 30M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] 15.91% 8M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] 11.56% 5M jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] 3.50% 1M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] 2.11% 1M java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] 1.96% 1M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] 0.79% 406399 org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] 0.63% 326635 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] 0.46% 236553 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] 0.40% 206016 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] 0.35% 183086 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [Inlined code] 0.28% 146590 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] 0.24% 125323 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] 0.22% 114855 org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] 0.20% 103617 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] 0.19% 99613 java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():499 [Inlined code] 0.17% 89325 jdk.jfr.internal.JVM#emitEvent() [Native code] 0.17% 85433 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():193 [JIT compiled code] 0.14% 69695 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] 0.13% 66874 org.apache.lucene.store.ChecksumIndexInput#skipByReading():81 [JIT compiled code] 0.10% 51715 sun.nio.ch.NativeThread#current0() [Native code] 0.10% 49727 org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] 0.10% 49215 org.apache.lucene.store.RateLimitedIndexOutput#writeBytes():55 [Inlined code] 0.10% 49144 org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():512 [JIT compiled code] 0.09% 44081 sun.nio.ch.UnixFileDispatcherImpl#read0() [Native code] 0.09% 43986 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#calculateCentroid():488 [JIT compiled code] 0.07% 36372 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] 0.06% 33108 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():363 [JIT compiled code] 0.06% 30028 org.apache.lucene.util.hnsw.NeighborArray#sort():171 [Inlined code] 0.06% 29469 jdk.jfr.internal.event.EventWriter#reserveEventSizeField():199 [Inlined code] 0.06% 28904 org.apache.lucene.util.TernaryLongHeap#downHeap():246 [Inlined code] 0.05% 27770 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] 0.05% 25022 org.apache.lucene.util.TernaryLongHeap#downHeap():235 [Inlined code] 0.04% 22188 jdk.jfr.internal.JVM#getStackTraceId() [Native code] 0.03% 17756 org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [Inlined code] 0.03% 16566 java.util.DualPivotQuicksort#sort():368 [JIT compiled code] 0.03% 15407 java.util.DualPivotQuicksort#sort():238 [Inlined code] 0.03% 14519 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$1#score():93 [JIT compiled code] 0.03% 14005 org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] 0.03% 12939 org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] 0.02% 12534 org.apache.lucene.util.hnsw.NeighborArray#clear():233 [Inlined code] 0.02% 12400 java.util.concurrent.atomic.LongAdder#add():93 [Inlined code] 0.02% 12335 knn.IndexerThread#_run():105 [JIT compiled code] 0.02% 11372 org.apache.lucene.store.RateLimitedIndexOutput#writeBytes():60 [Inlined code] 0.02% 10695 org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] 0.02% 10337 org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter#writeFloat32Vectors():172 [JIT compiled code] 0.02% 9017 org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] 0.01% 7713 org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():347 [JIT compiled code] 0.01% 7414 org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] 0.01% 6308 java.util.concurrent.locks.AbstractQueuedSynchronizer#signalNext():645 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmFalse.jfr Profiler for cpu at stackSize=4 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmFalse.jfr is 1464.87 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 51595009 events (total: 51M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 56.01% 28M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 15.91% 8M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] 11.55% 5M jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnalignedInternal():3169 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnaligned():3159 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():60 [Inlined code] 3.50% 1M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] 1.90% 981382 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#releaseShared():807 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#unlock():903 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():256 [JIT compiled code] 1.90% 981248 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] 1.43% 735538 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] 0.79% 406283 org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#collect():713 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():350 [JIT compiled code] 0.65% 334433 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] 0.52% 267765 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] 0.48% 248117 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] 0.42% 215526 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.35% 183080 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.31% 157886 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] 0.28% 146138 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] 0.24% 125290 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] 0.21% 107383 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#release():720 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$WriteLock#unlock():1154 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():422 [JIT compiled code] 0.19% 99543 java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():499 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] 0.15% 78513 jdk.jfr.internal.JVM#emitEvent() [Native code] at jdk.jfr.internal.periodic.JVMEventTask#execute():54 [Inlined code] at jdk.jfr.internal.periodic.PeriodicTask#run():125 [Inlined code] at jdk.jfr.internal.periodic.PeriodicEvents#doPeriodic():145 [JIT compiled code] 0.14% 71467 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] 0.12% 62046 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():193 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] 0.12% 59923 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.11% 56846 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():101 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] 0.11% 56295 org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] 0.10% 49137 org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():512 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] 0.09% 48530 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#updateTop():153 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] 0.09% 47263 org.apache.lucene.store.RateLimitedIndexOutput#writeBytes():55 [Inlined code] at org.apache.lucene.store.DataOutput#writeBytes():54 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter#writeVectorData():302 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter#mergeOneFlatVectorField():235 [Interpreted code] 0.09% 44066 sun.nio.ch.UnixFileDispatcherImpl#read0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#read():51 [Inlined code] at sun.nio.ch.IOUtil#readIntoNativeBuffer():341 [Inlined code] at sun.nio.ch.IOUtil#read():307 [Inlined code] 0.09% 43986 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#calculateCentroid():488 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeAndRecalculateCentroids():459 [Interpreted code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():331 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] 0.08% 43457 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#flush():156 [JIT compiled code] 0.07% 38404 sun.nio.ch.NativeThread#current0() [Native code] at sun.nio.ch.NativeThread#current():51 [Inlined code] at sun.nio.ch.NativeThreadSet#add():48 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():349 [Inlined code] 0.07% 38048 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#insertSortedInternal():184 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#sort():164 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] 0.07% 36370 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.07% 35255 org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.06% 29873 org.apache.lucene.util.hnsw.NeighborArray#sort():171 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.06% 29376 jdk.jfr.internal.event.EventWriter#reserveEventSizeField():199 [Inlined code] at jdk.jfr.internal.event.EventWriter#beginEvent():245 [Inlined code] at jdk.internal.event.FileWriteEvent#commit() [JIT compiled code] at jdk.internal.event.FileWriteEvent#offer():69 [Inlined code] 0.05% 27748 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.05% 25964 org.apache.lucene.store.ChecksumIndexInput#skipByReading():81 [JIT compiled code] at org.apache.lucene.store.ChecksumIndexInput#seek():64 [Inlined code] at org.apache.lucene.codecs.CodecUtil#checksumEntireFile():619 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsReader#checkIntegrity():194 [JIT compiled code] 0.05% 24808 org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.05% 23799 org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] 0.04% 22703 org.apache.lucene.store.ChecksumIndexInput#skipByReading():81 [JIT compiled code] at org.apache.lucene.store.ChecksumIndexInput#seek():64 [JIT compiled code] at org.apache.lucene.codecs.CodecUtil#checksumEntireFile():619 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsReader#checkIntegrity():194 [JIT compiled code] 0.04% 22316 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#pop():124 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#pop():129 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():322 [JIT compiled code] 0.04% 21739 jdk.jfr.internal.JVM#getStackTraceId() [Native code] at jdk.jfr.internal.event.EventWriter#putStackTrace():186 [Inlined code] at jdk.internal.event.FileReadEvent#commit() [JIT compiled code] at jdk.internal.event.FileReadEvent#offer():71 [Inlined code] 0.04% 21018 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():193 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#flush():156 [JIT compiled code] 0.04% 19986 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():363 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.04% 19399 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#pop():124 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#pop():129 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popNode():667 [Inlined code] 0.04% 18101 org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.03% 16289 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Interpreted code] 0.03% 16103 org.apache.lucene.util.TernaryLongHeap#downHeap():235 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#updateTop():153 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] 0.03% 14004 org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$FieldWriter#addValue():568 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$FieldWriter#addValue():518 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():783 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmFalse.jfr Profiler for cpu at stackSize=12 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmFalse.jfr is 1464.87 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 51595009 events (total: 51M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 30.92% 15M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] 24.72% 12M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] 14.61% 7M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 11.13% 5M jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnalignedInternal():3169 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnaligned():3159 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():60 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():53 [Inlined code] at java.lang.invoke.VarHandleGuards#guard_LJ_I():251 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#get():742 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#readInt():270 [Inlined code] at org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#vectorValue():131 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():245 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] 2.71% 1M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 1.06% 544801 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] 0.96% 495831 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#releaseShared():807 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#unlock():903 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():256 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] 0.94% 485142 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] 0.84% 432217 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] 0.82% 422277 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#releaseShared():807 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#unlock():903 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():256 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] 0.58% 301678 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000002b196ee8#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] 0.54% 276518 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] 0.53% 274471 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000002b196ee8#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] 0.40% 205660 org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#collect():713 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():350 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 0.34% 174531 org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#collect():713 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():350 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 0.33% 172754 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] 0.31% 159389 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000002b196ee8#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] 0.29% 149058 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] 0.27% 137147 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#flush():156 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#flush():209 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#flush():123 [JIT compiled code] at org.apache.lucene.index.VectorValuesConsumer#flush():76 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():325 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] 0.24% 125215 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] at sun.nio.ch.IOUtil#write():72 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():355 [Inlined code] at sun.nio.ch.FileChannelImpl#traceImplWrite():374 [Inlined code] at sun.nio.ch.FileChannelImpl#write():333 [Inlined code] at sun.nio.ch.ChannelOutputStream#writeFully():68 [Inlined code] at sun.nio.ch.ChannelOutputStream#write():105 [Inlined code] at org.apache.lucene.store.FSDirectory$FSIndexOutput$1#write():391 [Inlined code] at java.util.zip.CheckedOutputStream#write():73 [Inlined code] 0.22% 113671 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [Inlined code] 0.21% 106383 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Interpreted code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] 0.19% 99803 jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnalignedInternal():3169 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnaligned():3159 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():60 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():53 [Inlined code] at java.lang.invoke.VarHandleGuards#guard_LJ_I():251 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#get():742 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#readInt():270 [Inlined code] at org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#vectorValue():131 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():245 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] 0.19% 97178 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.15% 78513 jdk.jfr.internal.JVM#emitEvent() [Native code] at jdk.jfr.internal.periodic.JVMEventTask#execute():54 [Inlined code] at jdk.jfr.internal.periodic.PeriodicTask#run():125 [Inlined code] at jdk.jfr.internal.periodic.PeriodicEvents#doPeriodic():145 [JIT compiled code] at jdk.jfr.internal.PlatformRecorder#periodicTask():502 [Interpreted code] at jdk.jfr.internal.PlatformRecorder#lambda$startDiskMonitor$0():428 [Interpreted code] at jdk.jfr.internal.PlatformRecorder$$Lambda.0x000000002b07aa58#run() [Interpreted code] at java.lang.Thread#runWith():1487 [Interpreted code] at java.lang.Thread#run():1474 [Interpreted code] 0.15% 76246 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 0.15% 75898 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 0.13% 69424 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 0.13% 64780 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000002b196ee8#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#merge():159 [Interpreted code] 0.12% 63958 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#flush():156 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#flush():209 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#flush():123 [JIT compiled code] at org.apache.lucene.index.VectorValuesConsumer#flush():76 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():325 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#postUpdate():404 [Inlined code] 0.12% 61891 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 0.12% 61234 jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnalignedInternal():3169 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnaligned():3159 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():60 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():53 [Inlined code] at java.lang.invoke.VarHandleGuards#guard_LJ_I():251 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#get():742 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#readInt():270 [Inlined code] at org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#vectorValue():131 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():245 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] 0.11% 58151 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.11% 57806 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000002b196ee8#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():159 [Interpreted code] 0.11% 57580 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#build():101 [JIT compiled code] 0.11% 57424 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x000000002b19ebd8#run() [JIT compiled code] 0.11% 57000 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#release():720 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$WriteLock#unlock():1154 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():422 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 0.10% 53445 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.10% 51869 java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():499 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.09% 47991 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#release():720 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$WriteLock#unlock():1154 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():422 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 0.09% 44246 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x000000002b19ebd8#run() [JIT compiled code] 0.09% 43878 sun.nio.ch.UnixFileDispatcherImpl#read0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#read():51 [Inlined code] at sun.nio.ch.IOUtil#readIntoNativeBuffer():341 [Inlined code] at sun.nio.ch.IOUtil#read():307 [Inlined code] at sun.nio.ch.IOUtil#read():284 [Inlined code] at sun.nio.ch.FileChannelImpl#implRead():251 [Inlined code] at sun.nio.ch.FileChannelImpl#traceImplRead():269 [Inlined code] at sun.nio.ch.FileChannelImpl#read():229 [Inlined code] at knn.VectorReader#readNext():57 [Inlined code] at knn.VectorReaderFloat32#next():30 [JIT compiled code] at knn.IndexerThread#_run():105 [JIT compiled code] at knn.IndexerThread#run():77 [Interpreted code] 0.08% 42266 org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():512 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 0.08% 41937 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#build():101 [Interpreted code] 0.08% 41224 java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():499 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.07% 38292 sun.nio.ch.NativeThread#current0() [Native code] at sun.nio.ch.NativeThread#current():51 [Inlined code] at sun.nio.ch.NativeThreadSet#add():48 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():349 [Inlined code] at sun.nio.ch.FileChannelImpl#traceImplWrite():374 [Inlined code] at sun.nio.ch.FileChannelImpl#write():333 [Inlined code] at sun.nio.ch.ChannelOutputStream#writeFully():68 [Inlined code] at sun.nio.ch.ChannelOutputStream#write():105 [Inlined code] at org.apache.lucene.store.FSDirectory$FSIndexOutput$1#write():391 [Inlined code] at java.util.zip.CheckedOutputStream#write():73 [Inlined code] at java.io.BufferedOutputStream#flushBuffer():123 [Inlined code] at java.io.BufferedOutputStream#write():188 [Inlined code] 0.07% 37736 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.07% 35300 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000002b196ee8#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#merge():159 [Interpreted code] 0.07% 34772 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#replayBufferedVectors():771 [JIT compiled code] 0.06% 33382 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmFalse.jfr Profiler for heap at stackSize=1 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmFalse.jfr is 1464.87 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 64685 events (total: 448260M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 22.51% 100916M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] 22.50% 100838M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] 19.17% 85942M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] 14.38% 64446M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] 7.08% 31759M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] 4.06% 18181M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] 1.52% 6814M java.lang.Integer#valueOf():1006 [Inlined code] 0.86% 3833M java.util.Arrays#copyOf():3478 [Inlined code] 0.63% 2817M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [Inlined code] 0.62% 2792M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] 0.61% 2754M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] 0.60% 2669M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] 0.46% 2061M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [JIT compiled code] 0.41% 1824M knn.KnnIndexer$TrackingConcurrentMergeScheduler#doMerge():355 [Interpreted code] 0.35% 1555M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] 0.31% 1411M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] 0.31% 1374M knn.IndexerThread#_run():86 [Interpreted code] 0.24% 1087M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():232 [JIT compiled code] 0.19% 850M org.apache.lucene.search.AbstractKnnVectorQuery#getKnnCollectorManager():248 [Inlined code] 0.19% 834M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():320 [JIT compiled code] 0.19% 832M knn.IndexerThread#_run():108 [JIT compiled code] 0.19% 830M java.util.DualPivotQuicksort#tryMergeRuns():816 [JIT compiled code] 0.18% 791M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():193 [JIT compiled code] 0.17% 757M java.util.ArrayList#grow():240 [Inlined code] 0.17% 744M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():158 [JIT compiled code] 0.16% 713M java.lang.invoke.DirectMethodHandle#allocateInstance():500 [Inlined code] 0.13% 598M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():306 [JIT compiled code] 0.12% 559M java.lang.reflect.Array#newInstance():76 [Inlined code] 0.12% 545M jdk.internal.misc.Unsafe#allocateUninitializedArray():1396 [Inlined code] 0.08% 372M org.apache.lucene.util.ArrayUtil#growExact():400 [Inlined code] 0.08% 369M java.util.ArrayList#iterator():1030 [JIT compiled code] 0.08% 345M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():618 [JIT compiled code] 0.08% 344M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():556 [JIT compiled code] 0.08% 343M org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Interpreted code] 0.07% 322M java.util.List#of():935 [Inlined code] 0.07% 293M java.util.DualPivotQuicksort#sort():354 [JIT compiled code] 0.06% 263M org.apache.lucene.util.SparseFixedBitSet#insertLong():230 [Inlined code] 0.06% 260M java.util.concurrent.locks.ReentrantReadWriteLock$Sync$ThreadLocalHoldCounter#initialValue():291 [Inlined code] 0.06% 248M knn.IndexerThread#_run():86 [JIT compiled code] 0.05% 244M java.util.HashMap#newNode():1910 [Inlined code] 0.05% 203M org.apache.lucene.document.Document#():42 [Inlined code] 0.04% 199M java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquire():389 [JIT compiled code] 0.04% 199M org.apache.lucene.internal.hppc.IntIntHashMap#allocateBuffers():744 [Interpreted code] 0.04% 182M knn.IndexerThread#_run():125 [JIT compiled code] 0.04% 180M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#getRandomVectorScorer():67 [Inlined code] 0.04% 180M jdk.internal.foreign.MappedMemorySegmentImpl#dup():57 [Inlined code] 0.04% 171M java.util.concurrent.FutureTask#run():320 [Interpreted code] 0.04% 171M java.util.concurrent.atomic.AtomicBoolean#compareAndSet():98 [Interpreted code] 0.04% 168M java.io.BufferedOutputStream#():92 [Inlined code] 0.04% 166M java.util.HashMap#resize():711 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmFalse.jfr Profiler for heap at stackSize=4 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmFalse.jfr is 1464.87 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 64685 events (total: 448260M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 18.23% 81710M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] 18.17% 81468M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] 11.53% 51664M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 8.85% 39661M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollector#():44 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [JIT compiled code] 7.04% 31578M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():335 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] 6.96% 31202M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] 5.53% 24785M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollector#():44 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [Interpreted code] 4.33% 19405M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] 4.21% 18891M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] 4.06% 18181M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 1.51% 6764M java.lang.Integer#valueOf():1006 [Inlined code] at knn.KnnGraphTester#printGraphConnectedNess():1131 [JIT compiled code] at knn.KnnGraphTester#printFanoutHist():1086 [Interpreted code] at knn.KnnGraphTester#printFanoutHist():1061 [Interpreted code] 0.82% 3661M java.util.Arrays#copyOf():3478 [Inlined code] at java.util.ArrayDeque#grow():146 [JIT compiled code] at java.util.ArrayDeque#addFirst():288 [Inlined code] at java.util.ArrayDeque#push():577 [Inlined code] 0.63% 2817M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.60% 2669M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.48% 2140M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.41% 1824M knn.KnnIndexer$TrackingConcurrentMergeScheduler#doMerge():355 [Interpreted code] at org.apache.lucene.index.ConcurrentMergeScheduler$MergeThread#run():726 [Interpreted code] 0.38% 1718M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [JIT compiled code] 0.31% 1377M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.31% 1374M knn.IndexerThread#_run():86 [Interpreted code] at knn.IndexerThread#run():77 [Interpreted code] 0.31% 1367M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.25% 1125M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.22% 995M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.19% 832M knn.IndexerThread#_run():108 [JIT compiled code] at knn.IndexerThread#run():77 [Interpreted code] 0.19% 830M java.util.DualPivotQuicksort#tryMergeRuns():816 [JIT compiled code] at java.util.DualPivotQuicksort#sort():277 [JIT compiled code] at java.util.DualPivotQuicksort#sort():238 [Inlined code] at java.util.Arrays#sort():123 [Inlined code] 0.17% 774M org.apache.lucene.search.AbstractKnnVectorQuery#getKnnCollectorManager():248 [Inlined code] at org.apache.lucene.search.AbstractKnnVectorQuery#rewrite():106 [JIT compiled code] at org.apache.lucene.search.KnnFloatVectorQuery#rewrite():48 [Inlined code] at knn.KnnGraphTester$ProfiledKnnFloatVectorQuery#rewrite():2274 [JIT compiled code] 0.17% 757M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] 0.17% 752M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.16% 713M java.lang.invoke.DirectMethodHandle#allocateInstance():500 [Inlined code] at java.lang.invoke.DirectMethodHandle$Holder#newInvokeSpecial() [Inlined code] at java.lang.invoke.Invokers$Holder#linkToTargetMethod() [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] 0.16% 694M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.13% 582M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():232 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] 0.12% 555M java.lang.reflect.Array#newInstance():76 [Inlined code] at org.apache.lucene.util.ArrayUtil#growExact():216 [Inlined code] at org.apache.lucene.util.ArrayUtil#grow():234 [JIT compiled code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():152 [JIT compiled code] 0.12% 539M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] 0.10% 456M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():193 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] 0.09% 419M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] 0.09% 412M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.09% 412M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():232 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#flush():156 [JIT compiled code] 0.09% 403M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():238 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] 0.09% 381M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():238 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] 0.08% 372M org.apache.lucene.util.ArrayUtil#growExact():400 [Inlined code] at org.apache.lucene.util.ArrayUtil#grow():412 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#push():79 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] 0.08% 355M jdk.internal.misc.Unsafe#allocateUninitializedArray():1396 [Inlined code] at java.lang.StringConcatHelper#newArray():578 [Inlined code] at java.lang.StringConcatHelper#newArrayWithSuffix():611 [Inlined code] at java.lang.String$$StringConcat.0x000000002b17f400#concat() [Inlined code] 0.08% 345M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():618 [JIT compiled code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader#serializedDocument():645 [Inlined code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#copyOneDoc():508 [Inlined code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#merge():630 [JIT compiled code] 0.08% 344M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():556 [JIT compiled code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader#serializedDocument():645 [Inlined code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#copyOneDoc():508 [Inlined code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#merge():630 [JIT compiled code] 0.08% 343M org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Interpreted code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x000000002b19ebd8#run() [Interpreted code] at java.util.concurrent.ThreadPoolExecutor#runWorker():1090 [Interpreted code] at java.util.concurrent.ThreadPoolExecutor$Worker#run():614 [Interpreted code] 0.08% 343M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Interpreted code] 0.08% 342M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] 0.07% 327M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():158 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.07% 322M java.util.List#of():935 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1883 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] at knn.IndexerThread#_run():126 [JIT compiled code] 0.07% 299M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():238 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] 0.06% 260M java.util.concurrent.locks.ReentrantReadWriteLock$Sync$ThreadLocalHoldCounter#initialValue():291 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$Sync$ThreadLocalHoldCounter#initialValue():288 [JIT compiled code] at java.lang.ThreadLocal#setInitialValue():203 [Inlined code] at java.lang.ThreadLocal#get():193 [Inlined code] 0.06% 257M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():320 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmFalse.jfr Profiler for heap at stackSize=12 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmFalse.jfr is 1464.87 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 64685 events (total: 448260M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 8.83% 39597M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollector#():44 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():28 [Inlined code] at org.apache.lucene.search.IndexSearcher#search():752 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#searchAfter():601 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#search():624 [Inlined code] at knn.KnnGraphTester#doFloatVectorQuery():1527 [JIT compiled code] at knn.KnnGraphTester#testSearch():1253 [Interpreted code] at knn.KnnGraphTester#run():770 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] 7.04% 31578M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():335 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$FieldWriter#addValue():568 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$FieldWriter#addValue():518 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():783 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [Inlined code] 6.11% 27369M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 5.89% 26423M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] 5.88% 26364M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] 5.17% 23194M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 5.06% 22675M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] 5.06% 22674M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 5.03% 22531M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 5.00% 22419M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] 3.95% 17715M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 3.68% 16518M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollector#():44 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():28 [Interpreted code] at org.apache.lucene.search.IndexSearcher#search():752 [Interpreted code] at org.apache.lucene.search.IndexSearcher#searchAfter():601 [Interpreted code] at org.apache.lucene.search.IndexSearcher#search():624 [Interpreted code] at knn.KnnGraphTester#doFloatVectorQuery():1527 [Interpreted code] at knn.KnnGraphTester#testSearch():1253 [Interpreted code] at knn.KnnGraphTester#run():770 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] 3.00% 13442M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 1.84% 8267M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollector#():44 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():28 [Interpreted code] at org.apache.lucene.search.IndexSearcher#search():752 [Interpreted code] at org.apache.lucene.search.IndexSearcher#searchAfter():601 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#search():624 [Inlined code] at knn.KnnGraphTester#doFloatVectorQuery():1527 [JIT compiled code] at knn.KnnGraphTester#testSearch():1253 [Interpreted code] at knn.KnnGraphTester#run():770 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] 1.51% 6764M java.lang.Integer#valueOf():1006 [Inlined code] at knn.KnnGraphTester#printGraphConnectedNess():1131 [JIT compiled code] at knn.KnnGraphTester#printFanoutHist():1086 [Interpreted code] at knn.KnnGraphTester#printFanoutHist():1061 [Interpreted code] at knn.KnnGraphTester#run():775 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] at knn.KnnGraphTester#main():275 [Interpreted code] 1.43% 6394M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():255 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initGraph():148 [Interpreted code] at org.apache.lucene.util.hnsw.ConcurrentHnswMerger#createBuilder():81 [Interpreted code] at org.apache.lucene.util.hnsw.IncrementalHnswGraphMerger#merge():212 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#buildAndWriteGraph():485 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#lambda$mergeOneField$0():440 [Interpreted code] 1.40% 6290M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():255 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initGraph():148 [Interpreted code] at org.apache.lucene.util.hnsw.ConcurrentHnswMerger#createBuilder():81 [Interpreted code] at org.apache.lucene.util.hnsw.IncrementalHnswGraphMerger#merge():212 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#buildAndWriteGraph():485 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#lambda$mergeOneField$0():440 [Interpreted code] 1.30% 5838M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 1.05% 4701M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] 1.04% 4647M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] 0.90% 4052M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 0.89% 4008M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 0.87% 3898M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.82% 3661M java.util.Arrays#copyOf():3478 [Inlined code] at java.util.ArrayDeque#grow():146 [JIT compiled code] at java.util.ArrayDeque#addFirst():288 [Inlined code] at java.util.ArrayDeque#push():577 [Inlined code] at knn.KnnGraphTester#printGraphConnectedNess():1131 [JIT compiled code] at knn.KnnGraphTester#printFanoutHist():1086 [Interpreted code] at knn.KnnGraphTester#printFanoutHist():1061 [Interpreted code] at knn.KnnGraphTester#run():775 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] at knn.KnnGraphTester#main():275 [Interpreted code] 0.79% 3532M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.74% 3308M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.69% 3087M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.65% 2932M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#replayBufferedVectors():771 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():787 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.64% 2883M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.63% 2811M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#replayBufferedVectors():771 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():787 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.59% 2625M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.51% 2275M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.48% 2159M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [JIT compiled code] 0.48% 2144M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.41% 1824M knn.KnnIndexer$TrackingConcurrentMergeScheduler#doMerge():355 [Interpreted code] at org.apache.lucene.index.ConcurrentMergeScheduler$MergeThread#run():726 [Interpreted code] 0.38% 1722M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [Interpreted code] 0.38% 1718M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Interpreted code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Interpreted code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x000000002b19ebd8#run() [Interpreted code] 0.36% 1635M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.31% 1390M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.31% 1377M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] 0.31% 1374M knn.IndexerThread#_run():86 [Interpreted code] at knn.IndexerThread#run():77 [Interpreted code] 0.26% 1170M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] 0.23% 1048M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] 0.21% 953M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] 0.19% 867M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Interpreted code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Interpreted code] 0.19% 832M knn.IndexerThread#_run():108 [JIT compiled code] at knn.IndexerThread#run():77 [Interpreted code] 0.18% 815M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 0.15% 692M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000002b19e680#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Interpreted code] 0.15% 658M org.apache.lucene.search.AbstractKnnVectorQuery#getKnnCollectorManager():248 [Inlined code] at org.apache.lucene.search.AbstractKnnVectorQuery#rewrite():106 [JIT compiled code] at org.apache.lucene.search.KnnFloatVectorQuery#rewrite():48 [Inlined code] at knn.KnnGraphTester$ProfiledKnnFloatVectorQuery#rewrite():2274 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#rewrite():873 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#rewrite():884 [Inlined code] at org.apache.lucene.search.IndexSearcher#search():753 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#searchAfter():601 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#search():624 [Inlined code] at knn.KnnGraphTester#doFloatVectorQuery():1527 [JIT compiled code] at knn.KnnGraphTester#testSearch():1253 [Interpreted code] at knn.KnnGraphTester#run():770 [Interpreted code] 0.13% 571M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] at org.apache.lucene.document.Document#add():62 [Inlined code] at knn.IndexerThread#_run():108 [JIT compiled code] at knn.IndexerThread#run():77 [Interpreted code] cmd: ['/usr/sbin/perf', 'stat', '-dd', '-e', 'task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend', '/usr/lib/jvm/java-25-openjdk/bin/java', '--add-modules', 'jdk.incubator.vector', '-Xmx32g', '-Xms32g', '-server', '-XX:+UseParallelGC', '-Djava.io.tmpdir=/l/tmp', '--enable-native-access=ALL-UNNAMED', '-cp', '/l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build:/l/util.nightly/build', '--add-modules', 'jdk.incubator.vector', '--enable-native-access=ALL-UNNAMED', '-XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmTrue.jfr', 'knn.KnnGraphTester', '-maxConn', '32', '-dim', '1024', '-docs', '/big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec', '-ndoc', '8000000', '-topK', '100', '-numIndexThreads', '8', '-beamWidthIndex', '100', '-search-and-stats', '/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec', '-metric', 'dot_product', '-numMergeThread', '16', '-numMergeWorker', '48', '-forceMerge', '-quantize', '-quantizeBits', '7'] WARNING: Using incubator modules: jdk.incubator.vector [0.214s][info][jfr,startup] Started recording 1. [0.214s][info][jfr,startup] [0.214s][info][jfr,startup] Use jcmd 2150234 JFR.dump name=1 to copy recording data to file. maxConn = 32 Vector Dimensions: 1024 numDocs = 8000000 beamWidth = 100 similarity = DOT_PRODUCT Seed = 2369174199331764 index key = dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-7-fm Index Path = knn-reuse/indices/dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-7-fm will now reindex: index does not exist May 15, 2026 6:08:01 PM org.apache.lucene.internal.vectorization.PanamaVectorizationProvider logIncubatorSetup INFO: Java vector incubator API enabled; uses preferredBitSize=256; FMA enabled creating index in knn-reuse/indices/dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-7-fm 39709371 doc vectors in docsPath "/big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec" parentJoin=false Done indexing 25000 documents. Done indexing 50000 documents. Done indexing 75000 documents. Done indexing 100000 documents. Done indexing 125000 documents. Done indexing 150000 documents. Done indexing 175000 documents. Done indexing 200000 documents. Done indexing 225000 documents. Done indexing 250000 documents. Done indexing 275000 documents. Done indexing 300000 documents. Done indexing 325000 documents. Done indexing 350000 documents. Done indexing 375000 documents. Done indexing 400000 documents. Done indexing 425000 documents. Done indexing 450000 documents. Done indexing 475000 documents. Done indexing 500000 documents. Done indexing 525000 documents. Done indexing 550000 documents. Done indexing 575000 documents. Done indexing 600000 documents. Done indexing 625000 documents. Done indexing 650000 documents. Done indexing 675000 documents. Done indexing 700000 documents. Done indexing 725000 documents. Done indexing 750000 documents. Done indexing 775000 documents. Done indexing 800000 documents. Done indexing 825000 documents. Done indexing 850000 documents. Done indexing 875000 documents. Done indexing 900000 documents. Done indexing 925000 documents. Done indexing 950000 documents. Done indexing 975000 documents. Done indexing 1000000 documents. Done indexing 1025000 documents. Done indexing 1050000 documents. Done indexing 1075000 documents. Done indexing 1100000 documents. Done indexing 1125000 documents. Done indexing 1150000 documents. Done indexing 1175000 documents. Done indexing 1200000 documents. Done indexing 1225000 documents. Done indexing 1250000 documents. Done indexing 1275000 documents. Done indexing 1300000 documents. Done indexing 1325000 documents. Done indexing 1350000 documents. Done indexing 1375000 documents. Done indexing 1400000 documents. Done indexing 1425000 documents. Done indexing 1450000 documents. Done indexing 1475000 documents. Done indexing 1500000 documents. Done indexing 1525000 documents. Done indexing 1550000 documents. Done indexing 1575000 documents. Done indexing 1600000 documents. Done indexing 1625000 documents. Done indexing 1650000 documents. Done indexing 1675000 documents. Done indexing 1700000 documents. Done indexing 1725000 documents. Done indexing 1750000 documents. Done indexing 1775000 documents. Done indexing 1800000 documents. Done indexing 1825000 documents. Done indexing 1850000 documents. Done indexing 1875000 documents. Done indexing 1900000 documents. Done indexing 1925000 documents. Done indexing 1950000 documents. Done indexing 1975000 documents. Done indexing 2000000 documents. Done indexing 2025000 documents. Done indexing 2050000 documents. Done indexing 2075000 documents. Done indexing 2100000 documents. Done indexing 2125000 documents. Done indexing 2150000 documents. Done indexing 2175000 documents. Done indexing 2200000 documents. Done indexing 2225000 documents. Done indexing 2250000 documents. Done indexing 2275000 documents. Done indexing 2300000 documents. Done indexing 2325000 documents. Done indexing 2350000 documents. Done indexing 2375000 documents. Done indexing 2400000 documents. Done indexing 2425000 documents. Done indexing 2450000 documents. Done indexing 2475000 documents. Done indexing 2500000 documents. Done indexing 2525000 documents. Done indexing 2550000 documents. Done indexing 2575000 documents. Done indexing 2600000 documents. Done indexing 2625000 documents. Done indexing 2650000 documents. Done indexing 2675000 documents. Done indexing 2700000 documents. Done indexing 2725000 documents. Done indexing 2750000 documents. Done indexing 2775000 documents. Done indexing 2800000 documents. Done indexing 2825000 documents. Done indexing 2850000 documents. Done indexing 2875000 documents. Done indexing 2900000 documents. Done indexing 2925000 documents. Done indexing 2950000 documents. Done indexing 2975000 documents. Done indexing 3000000 documents. Done indexing 3025000 documents. Done indexing 3050000 documents. Done indexing 3075000 documents. Done indexing 3100000 documents. Done indexing 3125000 documents. Done indexing 3150000 documents. Done indexing 3175000 documents. Done indexing 3200000 documents. Done indexing 3225000 documents. Done indexing 3250000 documents. Done indexing 3275000 documents. Done indexing 3300000 documents. Done indexing 3325000 documents. Done indexing 3350000 documents. Done indexing 3375000 documents. Done indexing 3400000 documents. Done indexing 3425000 documents. Done indexing 3450000 documents. Done indexing 3475000 documents. Done indexing 3500000 documents. Done indexing 3525000 documents. Done indexing 3550000 documents. Done indexing 3575000 documents. Done indexing 3600000 documents. Done indexing 3625000 documents. Done indexing 3650000 documents. Done indexing 3675000 documents. Done indexing 3700000 documents. Done indexing 3725000 documents. Done indexing 3750000 documents. Done indexing 3775000 documents. Done indexing 3800000 documents. Done indexing 3825000 documents. Done indexing 3850000 documents. Done indexing 3875000 documents. Done indexing 3900000 documents. Done indexing 3925000 documents. Done indexing 3950000 documents. Done indexing 3975000 documents. Done indexing 4000000 documents. Done indexing 4025000 documents. Done indexing 4050000 documents. Done indexing 4075000 documents. Done indexing 4100000 documents. Done indexing 4125000 documents. Done indexing 4150000 documents. Done indexing 4175000 documents. Done indexing 4200000 documents. Done indexing 4225000 documents. Done indexing 4250000 documents. Done indexing 4275000 documents. Done indexing 4300000 documents. Done indexing 4325000 documents. Done indexing 4350000 documents. Done indexing 4375000 documents. Done indexing 4400000 documents. Done indexing 4425000 documents. Done indexing 4450000 documents. Done indexing 4475000 documents. Done indexing 4500000 documents. Done indexing 4525000 documents. Done indexing 4550000 documents. Done indexing 4575000 documents. Done indexing 4600000 documents. Done indexing 4625000 documents. Done indexing 4650000 documents. Done indexing 4675000 documents. Done indexing 4700000 documents. Done indexing 4725000 documents. Done indexing 4750000 documents. Done indexing 4775000 documents. Done indexing 4800000 documents. Done indexing 4825000 documents. Done indexing 4850000 documents. Done indexing 4875000 documents. Done indexing 4900000 documents. Done indexing 4925000 documents. Done indexing 4950000 documents. Done indexing 4975000 documents. Done indexing 5000000 documents. Done indexing 5025000 documents. Done indexing 5050000 documents. Done indexing 5075000 documents. Done indexing 5100000 documents. Done indexing 5125000 documents. Done indexing 5150000 documents. Done indexing 5175000 documents. Done indexing 5200000 documents. Done indexing 5225000 documents. Done indexing 5250000 documents. Done indexing 5275000 documents. Done indexing 5300000 documents. Done indexing 5325000 documents. Done indexing 5350000 documents. Done indexing 5375000 documents. Done indexing 5400000 documents. Done indexing 5425000 documents. Done indexing 5450000 documents. Done indexing 5475000 documents. Done indexing 5500000 documents. Done indexing 5525000 documents. Done indexing 5550000 documents. Done indexing 5575000 documents. Done indexing 5600000 documents. Done indexing 5625000 documents. Done indexing 5650000 documents. Done indexing 5675000 documents. Done indexing 5700000 documents. Done indexing 5725000 documents. Done indexing 5750000 documents. Done indexing 5775000 documents. Done indexing 5800000 documents. Done indexing 5825000 documents. Done indexing 5850000 documents. Done indexing 5875000 documents. Done indexing 5900000 documents. Done indexing 5925000 documents. Done indexing 5950000 documents. Done indexing 5975000 documents. Done indexing 6000000 documents. Done indexing 6025000 documents. Done indexing 6050000 documents. Done indexing 6075000 documents. Done indexing 6100000 documents. Done indexing 6125000 documents. Done indexing 6150000 documents. Done indexing 6175000 documents. Done indexing 6200000 documents. Done indexing 6225000 documents. Done indexing 6250000 documents. Done indexing 6275000 documents. Done indexing 6300000 documents. Done indexing 6325000 documents. Done indexing 6350000 documents. Done indexing 6375000 documents. Done indexing 6400000 documents. Done indexing 6425000 documents. Done indexing 6450000 documents. Done indexing 6475000 documents. Done indexing 6500000 documents. Done indexing 6525000 documents. Done indexing 6550000 documents. Done indexing 6575000 documents. Done indexing 6600000 documents. Done indexing 6625000 documents. Done indexing 6650000 documents. Done indexing 6675000 documents. Done indexing 6700000 documents. Done indexing 6725000 documents. Done indexing 6750000 documents. Done indexing 6775000 documents. Done indexing 6800000 documents. Done indexing 6825000 documents. Done indexing 6850000 documents. Done indexing 6875000 documents. Done indexing 6900000 documents. Done indexing 6925000 documents. Done indexing 6950000 documents. Done indexing 6975000 documents. Done indexing 7000000 documents. Done indexing 7025000 documents. Done indexing 7050000 documents. Done indexing 7075000 documents. Done indexing 7100000 documents. Done indexing 7125000 documents. Done indexing 7150000 documents. Done indexing 7175000 documents. Done indexing 7200000 documents. Done indexing 7225000 documents. Done indexing 7250000 documents. Done indexing 7275000 documents. Done indexing 7300000 documents. Done indexing 7325000 documents. Done indexing 7350000 documents. Done indexing 7375000 documents. Done indexing 7400000 documents. Done indexing 7425000 documents. Done indexing 7450000 documents. Done indexing 7475000 documents. Done indexing 7500000 documents. Done indexing 7525000 documents. Done indexing 7550000 documents. Done indexing 7575000 documents. Done indexing 7600000 documents. Done indexing 7625000 documents. Done indexing 7650000 documents. Done indexing 7675000 documents. Done indexing 7700000 documents. Done indexing 7725000 documents. Done indexing 7750000 documents. Done indexing 7775000 documents. Done indexing 7800000 documents. Done indexing 7825000 documents. Done indexing 7850000 documents. Done indexing 7875000 documents. Done indexing 7900000 documents. Done indexing 7925000 documents. Done indexing 7950000 documents. Done indexing 7975000 documents. Done indexing 8000000 documents. now IndexWriter.commit() now wait for already running merges to finish 0.0 sec: 105 segments, 9 merges 120.5s _19q: 8 segs, 1000.8 K docs, 4991.9 MB 58.5s _1cd: 8 segs, 40.7 K docs, 201.3 MB 47.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 41.0s _1d2: 11 segs, 55.4 K docs, 274.2 MB 31.2s _1de: 11 segs, 53.5 K docs, 265.0 MB 22.6s _1dq: 11 segs, 54.1 K docs, 268.1 MB 15.1s _1e1: 10 segs, 49.1 K docs, 243.0 MB 7.5s _1eb: 9 segs, 43.4 K docs, 214.8 MB 0.0s _1eh: 12 segs, 50.1 K docs, 247.9 MB 5.0 sec: 105 segments, 9 merges 125.5s _19q: 8 segs, 1000.8 K docs, 4991.9 MB 63.5s _1cd: 8 segs, 40.7 K docs, 201.3 MB 52.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 46.0s _1d2: 11 segs, 55.4 K docs, 274.2 MB 36.2s _1de: 11 segs, 53.5 K docs, 265.0 MB 27.6s _1dq: 11 segs, 54.1 K docs, 268.1 MB 20.1s _1e1: 10 segs, 49.1 K docs, 243.0 MB 12.5s _1eb: 9 segs, 43.4 K docs, 214.8 MB 5.0s _1eh: 12 segs, 50.1 K docs, 247.9 MB 10.0 sec: 98 segments, 8 merges 130.5s _19q: 8 segs, 1000.8 K docs, 4991.9 MB 57.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 51.0s _1d2: 11 segs, 55.4 K docs, 274.2 MB 41.2s _1de: 11 segs, 53.5 K docs, 265.0 MB 32.6s _1dq: 11 segs, 54.1 K docs, 268.1 MB 25.1s _1e1: 10 segs, 49.1 K docs, 243.0 MB 17.5s _1eb: 9 segs, 43.4 K docs, 214.8 MB 10.0s _1eh: 12 segs, 50.1 K docs, 247.9 MB 15.0 sec: 98 segments, 8 merges 135.5s _19q: 8 segs, 1000.8 K docs, 4991.9 MB 62.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 56.0s _1d2: 11 segs, 55.4 K docs, 274.2 MB 46.2s _1de: 11 segs, 53.5 K docs, 265.0 MB 37.6s _1dq: 11 segs, 54.1 K docs, 268.1 MB 30.1s _1e1: 10 segs, 49.1 K docs, 243.0 MB 22.5s _1eb: 9 segs, 43.4 K docs, 214.8 MB 15.0s _1eh: 12 segs, 50.1 K docs, 247.9 MB 20.0 sec: 98 segments, 8 merges 140.5s _19q: 8 segs, 1000.8 K docs, 4991.9 MB 67.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 61.0s _1d2: 11 segs, 55.4 K docs, 274.2 MB 51.2s _1de: 11 segs, 53.5 K docs, 265.0 MB 42.6s _1dq: 11 segs, 54.1 K docs, 268.1 MB 35.1s _1e1: 10 segs, 49.1 K docs, 243.0 MB 27.5s _1eb: 9 segs, 43.4 K docs, 214.8 MB 20.0s _1eh: 12 segs, 50.1 K docs, 247.9 MB 25.0 sec: 88 segments, 7 merges 145.5s _19q: 8 segs, 1000.8 K docs, 4991.9 MB 72.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 66.0s _1d2: 11 segs, 55.4 K docs, 274.2 MB 47.6s _1dq: 11 segs, 54.1 K docs, 268.1 MB 40.1s _1e1: 10 segs, 49.1 K docs, 243.0 MB 32.5s _1eb: 9 segs, 43.4 K docs, 214.8 MB 25.0s _1eh: 12 segs, 50.1 K docs, 247.9 MB 30.0 sec: 70 segments, 5 merges 150.5s _19q: 8 segs, 1000.8 K docs, 4991.9 MB 77.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 71.0s _1d2: 11 segs, 55.4 K docs, 274.2 MB 45.1s _1e1: 10 segs, 49.1 K docs, 243.0 MB 30.0s _1eh: 12 segs, 50.1 K docs, 247.9 MB 35.0 sec: 70 segments, 5 merges 155.6s _19q: 8 segs, 1000.8 K docs, 4991.9 MB 82.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 76.0s _1d2: 11 segs, 55.4 K docs, 274.2 MB 50.1s _1e1: 10 segs, 49.1 K docs, 243.0 MB 35.0s _1eh: 12 segs, 50.1 K docs, 247.9 MB 40.0 sec: 70 segments, 5 merges 160.6s _19q: 8 segs, 1000.8 K docs, 4991.9 MB 87.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 81.1s _1d2: 11 segs, 55.4 K docs, 274.2 MB 55.1s _1e1: 10 segs, 49.1 K docs, 243.0 MB 40.0s _1eh: 12 segs, 50.1 K docs, 247.9 MB 45.1 sec: 70 segments, 5 merges 165.6s _19q: 8 segs, 1000.8 K docs, 4991.9 MB 92.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 86.1s _1d2: 11 segs, 55.4 K docs, 274.2 MB 60.1s _1e1: 10 segs, 49.1 K docs, 243.0 MB 45.1s _1eh: 12 segs, 50.1 K docs, 247.9 MB 50.1 sec: 50 segments, 4 merges 170.6s _19q: 8 segs, 1000.8 K docs, 4991.9 MB 97.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 91.1s _1d2: 11 segs, 55.4 K docs, 274.2 MB 2.0s _1ei: 8 segs, 335.3 K docs, 1669.6 MB 55.1 sec: 40 segments, 3 merges 175.6s _19q: 8 segs, 1000.8 K docs, 4991.9 MB 102.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 7.0s _1ei: 8 segs, 335.3 K docs, 1669.6 MB 60.1 sec: 40 segments, 3 merges 180.6s _19q: 8 segs, 1000.8 K docs, 4991.9 MB 107.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 12.0s _1ei: 8 segs, 335.3 K docs, 1669.6 MB 65.1 sec: 40 segments, 3 merges 185.6s _19q: 8 segs, 1000.8 K docs, 4991.9 MB 112.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 17.0s _1ei: 8 segs, 335.3 K docs, 1669.6 MB 70.1 sec: 40 segments, 3 merges 190.6s _19q: 8 segs, 1000.8 K docs, 4991.9 MB 117.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 22.0s _1ei: 8 segs, 335.3 K docs, 1669.6 MB 75.1 sec: 40 segments, 3 merges 195.6s _19q: 8 segs, 1000.8 K docs, 4991.9 MB 122.1s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 27.0s _1ei: 8 segs, 335.3 K docs, 1669.6 MB 80.1 sec: 40 segments, 3 merges 200.6s _19q: 8 segs, 1000.8 K docs, 4991.9 MB 127.1s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 32.0s _1ei: 8 segs, 335.3 K docs, 1669.6 MB 85.0 sec: 40 segments, 3 merges 205.5s _19q: 8 segs, 1000.8 K docs, 4991.9 MB 132.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 36.9s _1ei: 8 segs, 335.3 K docs, 1669.6 MB 90.0 sec: 33 segments, 2 merges 137.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 41.9s _1ei: 8 segs, 335.3 K docs, 1669.6 MB 95.0 sec: 33 segments, 2 merges 142.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 46.9s _1ei: 8 segs, 335.3 K docs, 1669.6 MB 100.0 sec: 33 segments, 2 merges 147.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 52.0s _1ei: 8 segs, 335.3 K docs, 1669.6 MB 105.0 sec: 33 segments, 2 merges 152.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 57.0s _1ei: 8 segs, 335.3 K docs, 1669.6 MB 110.0 sec: 33 segments, 2 merges 157.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 62.0s _1ei: 8 segs, 335.3 K docs, 1669.6 MB 115.0 sec: 33 segments, 2 merges 162.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 67.0s _1ei: 8 segs, 335.3 K docs, 1669.6 MB 120.0 sec: 33 segments, 2 merges 167.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 72.0s _1ei: 8 segs, 335.3 K docs, 1669.6 MB 125.0 sec: 33 segments, 2 merges 172.0s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 77.0s _1ei: 8 segs, 335.3 K docs, 1669.6 MB 130.1 sec: 33 segments, 2 merges 177.1s _1cu: 8 segs, 697.2 K docs, 3476.6 MB 82.0s _1ei: 8 segs, 335.3 K docs, 1669.6 MB 135.1 sec: 26 segments, 1 merges 87.0s _1ei: 8 segs, 335.3 K docs, 1669.6 MB 140.1 sec: 26 segments, 1 merges 92.0s _1ei: 8 segs, 335.3 K docs, 1669.6 MB 145.0 sec: 26 segments, 1 merges 96.9s _1ei: 8 segs, 335.3 K docs, 1669.6 MB 150.0 sec: 26 segments, 1 merges 101.9s _1ei: 8 segs, 335.3 K docs, 1669.6 MB done first pass waiting for merges done second pass waiting for merges (CMS.sync()) Indexed 8000000 docs in 1371 seconds reindex takes 1371.12 sec Force merge index in knn-reuse/indices/dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-7-fm now wait for already running merges to finish 0.0 sec: 19 segments, 1 merges 5.0 sec: 19 segments, 1 merges 5.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 10.0 sec: 19 segments, 1 merges 10.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 15.0 sec: 19 segments, 1 merges 15.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 20.0 sec: 19 segments, 1 merges 20.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 25.0 sec: 19 segments, 1 merges 25.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 30.0 sec: 19 segments, 1 merges 30.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 35.0 sec: 19 segments, 1 merges 35.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 40.0 sec: 19 segments, 1 merges 40.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 45.0 sec: 19 segments, 1 merges 45.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 50.0 sec: 19 segments, 1 merges 50.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 55.0 sec: 19 segments, 1 merges 55.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 60.0 sec: 19 segments, 1 merges 60.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 65.1 sec: 19 segments, 1 merges 65.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 70.1 sec: 19 segments, 1 merges 70.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 75.1 sec: 19 segments, 1 merges 75.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 80.1 sec: 19 segments, 1 merges 80.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 85.1 sec: 19 segments, 1 merges 85.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 90.1 sec: 19 segments, 1 merges 90.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 95.1 sec: 19 segments, 1 merges 95.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 100.1 sec: 19 segments, 1 merges 100.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 105.1 sec: 19 segments, 1 merges 105.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 110.1 sec: 19 segments, 1 merges 110.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 115.1 sec: 19 segments, 1 merges 115.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 120.0 sec: 19 segments, 1 merges 120.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 125.0 sec: 19 segments, 1 merges 125.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 130.0 sec: 19 segments, 1 merges 130.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 135.0 sec: 19 segments, 1 merges 135.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 140.0 sec: 19 segments, 1 merges 140.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 145.0 sec: 19 segments, 1 merges 145.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 150.0 sec: 19 segments, 1 merges 150.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 155.0 sec: 19 segments, 1 merges 155.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 160.0 sec: 19 segments, 1 merges 160.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 165.0 sec: 19 segments, 1 merges 165.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 170.0 sec: 19 segments, 1 merges 170.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 175.0 sec: 19 segments, 1 merges 175.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 180.1 sec: 19 segments, 1 merges 180.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 185.1 sec: 19 segments, 1 merges 185.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 190.1 sec: 19 segments, 1 merges 190.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 195.1 sec: 19 segments, 1 merges 195.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 200.1 sec: 19 segments, 1 merges 200.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 205.1 sec: 19 segments, 1 merges 205.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 210.1 sec: 19 segments, 1 merges 210.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 215.1 sec: 19 segments, 1 merges 215.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 220.1 sec: 19 segments, 1 merges 220.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 225.1 sec: 19 segments, 1 merges 225.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 230.1 sec: 19 segments, 1 merges 230.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 235.0 sec: 19 segments, 1 merges 235.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 240.0 sec: 19 segments, 1 merges 240.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 245.0 sec: 19 segments, 1 merges 245.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 250.0 sec: 19 segments, 1 merges 250.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 255.0 sec: 19 segments, 1 merges 255.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 260.0 sec: 19 segments, 1 merges 260.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 265.0 sec: 19 segments, 1 merges 265.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 270.0 sec: 19 segments, 1 merges 270.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 275.0 sec: 19 segments, 1 merges 275.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 280.0 sec: 19 segments, 1 merges 280.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 285.0 sec: 19 segments, 1 merges 285.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 290.0 sec: 19 segments, 1 merges 290.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 295.1 sec: 19 segments, 1 merges 295.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 300.1 sec: 19 segments, 1 merges 300.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 305.1 sec: 19 segments, 1 merges 305.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 310.1 sec: 19 segments, 1 merges 310.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 315.1 sec: 19 segments, 1 merges 315.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 320.1 sec: 19 segments, 1 merges 320.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 325.1 sec: 19 segments, 1 merges 325.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 330.1 sec: 19 segments, 1 merges 330.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 335.1 sec: 19 segments, 1 merges 335.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 340.1 sec: 19 segments, 1 merges 340.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 345.1 sec: 19 segments, 1 merges 345.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 350.1 sec: 19 segments, 1 merges 350.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 355.0 sec: 19 segments, 1 merges 355.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 360.0 sec: 19 segments, 1 merges 360.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 365.0 sec: 19 segments, 1 merges 365.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 370.0 sec: 19 segments, 1 merges 370.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 375.0 sec: 19 segments, 1 merges 375.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 380.0 sec: 19 segments, 1 merges 380.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 385.0 sec: 19 segments, 1 merges 385.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 390.0 sec: 19 segments, 1 merges 390.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 395.0 sec: 19 segments, 1 merges 395.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 400.0 sec: 19 segments, 1 merges 400.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 405.0 sec: 19 segments, 1 merges 405.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 410.0 sec: 19 segments, 1 merges 410.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 415.0 sec: 19 segments, 1 merges 415.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 420.1 sec: 19 segments, 1 merges 420.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 425.1 sec: 19 segments, 1 merges 425.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 430.1 sec: 19 segments, 1 merges 430.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 435.1 sec: 19 segments, 1 merges 435.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 440.1 sec: 19 segments, 1 merges 440.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 445.0 sec: 19 segments, 1 merges 445.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 450.0 sec: 19 segments, 1 merges 450.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 455.0 sec: 19 segments, 1 merges 455.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 460.0 sec: 19 segments, 1 merges 460.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 465.0 sec: 19 segments, 1 merges 465.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 470.0 sec: 19 segments, 1 merges 470.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 475.0 sec: 19 segments, 1 merges 475.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 480.0 sec: 19 segments, 1 merges 480.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 485.0 sec: 19 segments, 1 merges 485.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 490.0 sec: 19 segments, 1 merges 490.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 495.0 sec: 19 segments, 1 merges 495.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 500.1 sec: 19 segments, 1 merges 500.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 505.1 sec: 19 segments, 1 merges 505.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 510.1 sec: 19 segments, 1 merges 510.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 515.1 sec: 19 segments, 1 merges 515.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 520.1 sec: 19 segments, 1 merges 520.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 525.1 sec: 19 segments, 1 merges 525.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 530.1 sec: 19 segments, 1 merges 530.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 535.1 sec: 19 segments, 1 merges 535.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 540.1 sec: 19 segments, 1 merges 540.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 545.0 sec: 19 segments, 1 merges 545.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 550.0 sec: 19 segments, 1 merges 550.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 555.0 sec: 19 segments, 1 merges 555.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 560.0 sec: 19 segments, 1 merges 560.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 565.0 sec: 19 segments, 1 merges 565.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 570.0 sec: 19 segments, 1 merges 570.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 575.0 sec: 19 segments, 1 merges 575.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 580.0 sec: 19 segments, 1 merges 580.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 585.0 sec: 19 segments, 1 merges 585.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 590.0 sec: 19 segments, 1 merges 590.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 595.0 sec: 19 segments, 1 merges 595.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 600.0 sec: 19 segments, 1 merges 600.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 605.0 sec: 19 segments, 1 merges 605.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 610.0 sec: 19 segments, 1 merges 610.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 615.0 sec: 19 segments, 1 merges 615.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 620.0 sec: 19 segments, 1 merges 620.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 625.1 sec: 19 segments, 1 merges 625.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 630.1 sec: 19 segments, 1 merges 630.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 635.1 sec: 19 segments, 1 merges 635.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 640.1 sec: 19 segments, 1 merges 640.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 645.1 sec: 19 segments, 1 merges 645.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 650.1 sec: 19 segments, 1 merges 650.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 655.0 sec: 19 segments, 1 merges 655.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 660.0 sec: 19 segments, 1 merges 660.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 665.0 sec: 19 segments, 1 merges 665.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 670.0 sec: 19 segments, 1 merges 670.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 675.0 sec: 19 segments, 1 merges 675.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 680.0 sec: 19 segments, 1 merges 680.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 685.0 sec: 19 segments, 1 merges 685.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 690.0 sec: 19 segments, 1 merges 690.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 695.0 sec: 19 segments, 1 merges 695.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 700.0 sec: 19 segments, 1 merges 700.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 705.0 sec: 19 segments, 1 merges 705.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 710.0 sec: 19 segments, 1 merges 710.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 715.1 sec: 19 segments, 1 merges 715.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 720.1 sec: 19 segments, 1 merges 720.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 725.1 sec: 19 segments, 1 merges 725.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 730.1 sec: 19 segments, 1 merges 730.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 735.1 sec: 19 segments, 1 merges 735.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 740.1 sec: 19 segments, 1 merges 740.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 745.0 sec: 19 segments, 1 merges 745.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 750.0 sec: 19 segments, 1 merges 750.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 755.0 sec: 19 segments, 1 merges 755.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 760.0 sec: 19 segments, 1 merges 760.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 765.0 sec: 19 segments, 1 merges 765.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 770.0 sec: 19 segments, 1 merges 770.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 775.1 sec: 19 segments, 1 merges 775.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 780.1 sec: 19 segments, 1 merges 780.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 785.1 sec: 19 segments, 1 merges 785.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 790.1 sec: 19 segments, 1 merges 790.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 795.1 sec: 19 segments, 1 merges 795.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 800.1 sec: 19 segments, 1 merges 800.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 805.1 sec: 19 segments, 1 merges 805.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 810.1 sec: 19 segments, 1 merges 810.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 815.1 sec: 19 segments, 1 merges 815.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 820.1 sec: 19 segments, 1 merges 820.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 825.1 sec: 19 segments, 1 merges 825.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 830.1 sec: 19 segments, 1 merges 830.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 835.1 sec: 19 segments, 1 merges 835.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 840.1 sec: 19 segments, 1 merges 840.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 845.0 sec: 19 segments, 1 merges 845.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 850.0 sec: 19 segments, 1 merges 850.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 855.0 sec: 19 segments, 1 merges 855.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 860.0 sec: 19 segments, 1 merges 860.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 865.0 sec: 19 segments, 1 merges 865.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 870.1 sec: 19 segments, 1 merges 870.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 875.1 sec: 19 segments, 1 merges 875.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 880.1 sec: 19 segments, 1 merges 880.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 885.1 sec: 19 segments, 1 merges 885.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 890.1 sec: 19 segments, 1 merges 890.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 895.1 sec: 19 segments, 1 merges 895.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 900.1 sec: 19 segments, 1 merges 900.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 905.1 sec: 19 segments, 1 merges 905.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 910.1 sec: 19 segments, 1 merges 910.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 915.0 sec: 19 segments, 1 merges 915.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 920.0 sec: 19 segments, 1 merges 920.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 925.0 sec: 19 segments, 1 merges 925.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 930.0 sec: 19 segments, 1 merges 930.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 935.0 sec: 19 segments, 1 merges 935.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 940.0 sec: 19 segments, 1 merges 940.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 945.0 sec: 19 segments, 1 merges 945.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 950.0 sec: 19 segments, 1 merges 950.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 955.0 sec: 19 segments, 1 merges 955.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 960.0 sec: 19 segments, 1 merges 960.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 965.0 sec: 19 segments, 1 merges 965.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 970.0 sec: 19 segments, 1 merges 970.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 975.0 sec: 19 segments, 1 merges 975.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 980.0 sec: 19 segments, 1 merges 980.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 985.1 sec: 19 segments, 1 merges 985.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 990.1 sec: 19 segments, 1 merges 990.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 995.0 sec: 19 segments, 1 merges 995.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 1000.0 sec: 19 segments, 1 merges 1000.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 1005.1 sec: 19 segments, 1 merges 1005.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 1010.1 sec: 19 segments, 1 merges 1010.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 1015.1 sec: 19 segments, 1 merges 1015.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 1020.1 sec: 19 segments, 1 merges 1020.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 1025.1 sec: 19 segments, 1 merges 1025.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 1030.1 sec: 19 segments, 1 merges 1030.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 1035.1 sec: 19 segments, 1 merges 1035.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 1040.1 sec: 19 segments, 1 merges 1040.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 1045.1 sec: 19 segments, 1 merges 1045.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 1050.1 sec: 19 segments, 1 merges 1050.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 1055.2 sec: 19 segments, 1 merges 1055.2s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 1060.0 sec: 19 segments, 1 merges 1060.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 1065.0 sec: 19 segments, 1 merges 1065.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 1070.0 sec: 19 segments, 1 merges 1070.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 1075.0 sec: 19 segments, 1 merges 1075.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 1080.0 sec: 19 segments, 1 merges 1080.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 1085.0 sec: 19 segments, 1 merges 1085.0s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 1090.1 sec: 19 segments, 1 merges 1090.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 1095.1 sec: 19 segments, 1 merges 1095.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB 1100.1 sec: 19 segments, 1 merges 1100.1s _1ej: 19 segs, 8000.0 K docs, 39937.5 MB done first pass waiting for merges done second pass waiting for merges (CMS.sync()) Force merge done in 1105.43 sec index has 1 segments: segments_3: _1ej(11.0.0):C8000000 _1ej: 40090.6 MB encodingByteSize=4 origByteSize=4 realEncodingByteSize=1.0 index disk usage is 40090.64 MB vector disk usage is 39184.57 MB vector RAM usage is 7934.57 MB exact nn key = cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100 read pre-cached exact match vectors from cache file "knn-reuse/exact-nn/cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100.bin" read pre-cached exact match scores from cache file "knn-reuse/exact-nn/cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100.scores" EXACT_NN_SCORES_PATH: /l/util.nightly/knn-reuse/exact-nn/cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100.scores EXACT_NN_METRIC: dot_product path=/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec dim=1024 vectorEncoding.byteSize=4 1778739 query vectors in queryPath "/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec" searching 1000 query vectors; topK=100, fanout=100 done warmup thread 3 name=main cpu@start=48256130496 cpu@end=50767844120 deltaMS=2511.713624 thread 14 name=Reference Handler cpu@start=1643242 cpu@end=1643242 deltaMS=0.0 thread 15 name=Finalizer cpu@start=168329 cpu@end=168329 deltaMS=0.0 thread 16 name=Signal Dispatcher cpu@start=63831 cpu@end=63831 deltaMS=0.0 thread 40 name=Common-Cleaner cpu@start=6236378 cpu@end=6236378 deltaMS=0.0 thread 41 name=JFR Recorder Thread cpu@start=22704203311 cpu@end=22704623156 deltaMS=0.419845 thread 42 name=JFR Periodic Tasks cpu@start=159259887779 cpu@end=159380527752 deltaMS=120.639973 thread 45 name=Notification Thread cpu@start=98953 cpu@end=98953 deltaMS=0.0 thread 56 name=hnsw-merge-1-thread-1 cpu@start=2209803646294 cpu@end=2209803646294 deltaMS=0.0 thread 57 name=hnsw-merge-1-thread-2 cpu@start=2210800617679 cpu@end=2210800617679 deltaMS=0.0 thread 58 name=hnsw-merge-1-thread-3 cpu@start=2210237499366 cpu@end=2210237499366 deltaMS=0.0 thread 59 name=hnsw-merge-1-thread-4 cpu@start=2212665675067 cpu@end=2212665675067 deltaMS=0.0 thread 60 name=hnsw-merge-1-thread-5 cpu@start=2211678776943 cpu@end=2211678776943 deltaMS=0.0 thread 61 name=hnsw-merge-1-thread-6 cpu@start=2208576405155 cpu@end=2208576405155 deltaMS=0.0 thread 62 name=hnsw-merge-1-thread-7 cpu@start=2213890058894 cpu@end=2213890058894 deltaMS=0.0 thread 63 name=hnsw-merge-1-thread-8 cpu@start=2209097979411 cpu@end=2209097979411 deltaMS=0.0 thread 64 name=hnsw-merge-1-thread-9 cpu@start=2211679291160 cpu@end=2211679291160 deltaMS=0.0 thread 65 name=hnsw-merge-1-thread-10 cpu@start=2215229140932 cpu@end=2215229140932 deltaMS=0.0 thread 66 name=hnsw-merge-1-thread-11 cpu@start=2211544341452 cpu@end=2211544341452 deltaMS=0.0 thread 67 name=hnsw-merge-1-thread-12 cpu@start=2210983684269 cpu@end=2210983684269 deltaMS=0.0 thread 68 name=hnsw-merge-1-thread-13 cpu@start=2210953607661 cpu@end=2210953607661 deltaMS=0.0 thread 69 name=hnsw-merge-1-thread-14 cpu@start=2211838741677 cpu@end=2211838741677 deltaMS=0.0 thread 70 name=hnsw-merge-1-thread-15 cpu@start=2213240181581 cpu@end=2213240181581 deltaMS=0.0 thread 71 name=hnsw-merge-1-thread-16 cpu@start=2211408819094 cpu@end=2211408819094 deltaMS=0.0 Average CPU cores used: 1.045250108206492 completed 1000 searches in 2518 ms: 397 QPS CPU time=2631 ms checking results SUMMARY: 0.929 2.518 2.631 1.045 8000000 KNN 100 100 N/A N/A 100.000 32 100 7 bits 5681 1371.12 5834.65 1105.43 1 40090.64 null N/A 1.000 39184.570 7934.570 false HNSW no Leaf 0 has 4 layers Leaf 0 has 8000000 documents Graph level=3 size=237, Fanout min=7, mean=15.70, max=32, meandelta=413631.63 % 0 10 20 30 40 50 60 70 80 90 100 0 10 12 13 14 15 16 18 19 22 32 Graph level=2 size=7718, Fanout min=6, mean=27.36, max=32, meandelta=267702.91 % 0 10 20 30 40 50 60 70 80 90 100 0 18 22 25 28 31 32 32 32 32 32 Graph level=1 size=247276, Fanout min=1, mean=28.30, max=32, meandelta=258331.44 % 0 10 20 30 40 50 60 70 80 90 100 0 19 23 27 31 32 32 32 32 32 32 Graph level=0 size=8000000, Fanout min=1, mean=37.66, max=64, meandelta=194602.75 % 0 10 20 30 40 50 60 70 80 90 100 0 17 22 26 30 34 40 47 58 64 64 Graph level=3 size=237, connectedness=1.00 Graph level=2 size=7718, connectedness=1.00 Graph level=1 size=247276, connectedness=1.00 Graph level=0 size=8000000, connectedness=1.00 Performance counter stats for '/usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build:/l/util.nightly/build --add-modules jdk.incubator.vector --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmTrue.jfr knn.KnnGraphTester -maxConn 32 -dim 1024 -docs /big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec -ndoc 8000000 -topK 100 -numIndexThreads 8 -beamWidthIndex 100 -search-and-stats /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -metric dot_product -numMergeThread 16 -numMergeWorker 48 -forceMerge -quantize -quantizeBits 7': 61,162,162.46 msec task-clock:u 236,638,363,820,726 cycles:u (36.36%) 165,723,438,261,195 instructions:u (36.36%) 5,046,514,183,333 cache-references:u (36.36%) 2,288,761,655,123 cache-misses:u (36.36%) 58,240,798,234,723 L1-dcache-loads:u (36.36%) 2,111,947,333,130 L1-dcache-load-misses:u (36.36%) 2,570,024,737,301 L1-icache-loads:u (36.36%) 16,524,960,585 L1-icache-load-misses:u (36.36%) LLC-loads:u LLC-load-misses:u LLC-stores:u LLC-store-misses:u LLC-prefetches:u LLC-prefetch-misses:u 11,104,154 faults:u 10,013,352 minor-faults:u 17,379 major-faults:u 17,186,673,269,323 branches:u (36.36%) 114,637,182,077 branch-misses:u (36.36%) 3,274,931,386,385 stalled-cycles-frontend:u (36.36%) stalled-cycles-backend:u 2705.509132543 seconds time elapsed 60496.054718000 seconds user 651.552075000 seconds sys took 0:45:05.537933 to run KnnGraphTester result: KNNResultV1(lucene_git_rev='de92f115a3125624bf7c7141b8e700efa9a89427', luceneutil_git_rev='63c1b2b252f377e272313c1ac0f182be79ad78b6', index_vectors_file='/big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec', search_vectors_file='/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec', vector_dims=1024, do_force_merge=True, recall=0.929, cpu_time_ms=2.518, net_cpu_ms=2.631, avg_cpu_core_count=1.045, num_docs=8000000, top_k=100, fanout=100, max_conn=32, beam_width=100, quantize_desc='7 bits', total_visited=5681, index_time_sec=1371.12, index_docs_per_sec=5834.65, force_merge_time_sec=1105.43, index_num_segments=1, index_size_on_disk_mb=40090.64, selectivity=None, pre_post_filter='null', vec_disk_mb=39184.57, vec_ram_mb=7934.57, graph_level_conn_p_values={3: (237, {0: 0, 10: 10, 20: 12, 30: 13, 40: 14, 50: 15, 60: 16, 70: 18, 80: 19, 90: 22, 100: 32}), 2: (7718, {0: 0, 10: 18, 20: 22, 30: 25, 40: 28, 50: 31, 60: 32, 70: 32, 80: 32, 90: 32, 100: 32}), 1: (247276, {0: 0, 10: 19, 20: 23, 30: 27, 40: 31, 50: 32, 60: 32, 70: 32, 80: 32, 90: 32, 100: 32}), 0: (8000000, {0: 0, 10: 17, 20: 22, 30: 26, 40: 30, 50: 34, 60: 40, 70: 47, 80: 58, 90: 64, 100: 64})}, combined_run_time=datetime.timedelta(seconds=2705, microseconds=537933)) Profiler summary for /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmTrue.jfr Version: 2.1 Chunks: 137 Start: 2026-05-15 22:08:01 (UTC) Duration: 2691 s Event Type Count Size (bytes) ============================================================= jdk.CPUTimeSample 58669168 1006525936 jdk.FileWrite 24591002 536391007 jdk.FileRead 8003660 182807246 jdk.ObjectAllocationInNewTLAB 72137 1432486 jdk.BooleanFlag 67952 2150149 jdk.CPULoad 50167 1002705 jdk.Checkpoint 9575 34233578 jdk.UnsignedIntFlag 6576 223118 jdk.IntFlag 6028 219983 jdk.Compilation 5908 152644 jdk.StringFlag 4658 180611 jdk.ObjectAllocationOutsideTLAB 1248 22290 jdk.CPUInformation 137 205770 jdk.GCConfiguration 137 3558 jdk.JVMInformation 137 127817 jdk.Metadata 137 15142196 jdk.GarbageCollection 58 1391 jdk.ActiveRecording 0 0 jdk.ActiveSetting 0 0 jdk.AllocationRequiringGC 0 0 jdk.BooleanFlagChanged 0 0 jdk.CPUTimeSamplesLost 0 0 jdk.CPUTimeStampCounter 0 0 jdk.ClassDefine 0 0 jdk.ClassLoad 0 0 jdk.ClassLoaderStatistics 0 0 jdk.ClassLoadingStatistics 0 0 jdk.ClassRedefinition 0 0 jdk.ClassUnload 0 0 jdk.CodeCacheConfiguration 0 0 jdk.CodeCacheFull 0 0 jdk.CodeCacheStatistics 0 0 jdk.CompilationFailure 0 0 jdk.CompilerConfiguration 0 0 jdk.CompilerInlining 0 0 jdk.CompilerPhase 0 0 jdk.CompilerQueueUtilization 0 0 jdk.CompilerStatistics 0 0 jdk.ConcurrentModeFailure 0 0 jdk.ContainerCPUThrottling 0 0 jdk.ContainerCPUUsage 0 0 jdk.ContainerConfiguration 0 0 jdk.ContainerIOUsage 0 0 jdk.ContainerMemoryUsage 0 0 jdk.ContinuationFreeze 0 0 jdk.ContinuationFreezeFast 0 0 jdk.ContinuationFreezeSlow 0 0 jdk.ContinuationThaw 0 0 jdk.ContinuationThawFast 0 0 jdk.ContinuationThawSlow 0 0 jdk.DataLoss 0 0 jdk.Deoptimization 0 0 jdk.DeprecatedInvocation 0 0 jdk.Deserialization 0 0 jdk.DirectBufferStatistics 0 0 jdk.DoubleFlag 0 0 jdk.DoubleFlagChanged 0 0 jdk.DumpReason 0 0 jdk.EvacuationFailed 0 0 jdk.EvacuationInformation 0 0 jdk.ExceptionStatistics 0 0 jdk.ExecuteVMOperation 0 0 jdk.ExecutionSample 0 0 jdk.FileForce 0 0 jdk.FinalizerStatistics 0 0 jdk.Flush 0 0 jdk.G1AdaptiveIHOP 0 0 jdk.G1BasicIHOP 0 0 jdk.G1EvacuationOldStatistics 0 0 jdk.G1EvacuationYoungStatistics 0 0 jdk.G1GarbageCollection 0 0 jdk.G1HeapRegionInformation 0 0 jdk.G1HeapRegionTypeChange 0 0 jdk.G1HeapSummary 0 0 jdk.G1MMU 0 0 jdk.GCCPUTime 0 0 jdk.GCHeapConfiguration 0 0 jdk.GCHeapMemoryPoolUsage 0 0 jdk.GCHeapMemoryUsage 0 0 jdk.GCHeapSummary 0 0 jdk.GCPhaseConcurrent 0 0 jdk.GCPhaseConcurrentLevel1 0 0 jdk.GCPhaseConcurrentLevel2 0 0 jdk.GCPhaseParallel 0 0 jdk.GCPhasePause 0 0 jdk.GCPhasePauseLevel1 0 0 jdk.GCPhasePauseLevel2 0 0 jdk.GCPhasePauseLevel3 0 0 jdk.GCPhasePauseLevel4 0 0 jdk.GCReferenceStatistics 0 0 jdk.GCSurvivorConfiguration 0 0 jdk.GCTLABConfiguration 0 0 jdk.HeapDump 0 0 jdk.InitialEnvironmentVariable 0 0 jdk.InitialSecurityProperty 0 0 jdk.InitialSystemProperty 0 0 jdk.IntFlagChanged 0 0 jdk.JITRestart 0 0 jdk.JavaAgent 0 0 jdk.JavaErrorThrow 0 0 jdk.JavaExceptionThrow 0 0 jdk.JavaMonitorDeflate 0 0 jdk.JavaMonitorEnter 0 0 jdk.JavaMonitorInflate 0 0 jdk.JavaMonitorNotify 0 0 jdk.JavaMonitorStatistics 0 0 jdk.JavaMonitorWait 0 0 jdk.JavaThreadStatistics 0 0 jdk.LongFlag 0 0 jdk.LongFlagChanged 0 0 jdk.MetaspaceAllocationFailure 0 0 jdk.MetaspaceChunkFreeListSummary 0 0 jdk.MetaspaceGCThreshold 0 0 jdk.MetaspaceOOM 0 0 jdk.MetaspaceSummary 0 0 jdk.MethodTiming 0 0 jdk.MethodTrace 0 0 jdk.ModuleExport 0 0 jdk.ModuleRequire 0 0 jdk.NativeAgent 0 0 jdk.NativeLibrary 0 0 jdk.NativeLibraryLoad 0 0 jdk.NativeLibraryUnload 0 0 jdk.NativeMemoryUsage 0 0 jdk.NativeMemoryUsageTotal 0 0 jdk.NativeMethodSample 0 0 jdk.NetworkUtilization 0 0 jdk.OSInformation 0 0 jdk.ObjectAllocationSample 0 0 jdk.ObjectCount 0 0 jdk.ObjectCountAfterGC 0 0 jdk.OldGarbageCollection 0 0 jdk.OldObjectSample 0 0 jdk.PSHeapSummary 0 0 jdk.ParallelOldGarbageCollection 0 0 jdk.PhysicalMemory 0 0 jdk.ProcessStart 0 0 jdk.PromoteObjectInNewPLAB 0 0 jdk.PromoteObjectOutsidePLAB 0 0 jdk.PromotionFailed 0 0 jdk.RedefineClasses 0 0 jdk.ReservedStackActivation 0 0 jdk.ResidentSetSize 0 0 jdk.RetransformClasses 0 0 jdk.SafepointBegin 0 0 jdk.SafepointEnd 0 0 jdk.SafepointLatency 0 0 jdk.SafepointStateSynchronization 0 0 jdk.SecurityPropertyModification 0 0 jdk.SecurityProviderService 0 0 jdk.SerializationMisdeclaration 0 0 jdk.ShenandoahEvacuationInformation 0 0 jdk.ShenandoahHeapRegionInformation 0 0 jdk.ShenandoahHeapRegionStateChange 0 0 jdk.Shutdown 0 0 jdk.SocketRead 0 0 jdk.SocketWrite 0 0 jdk.StringFlagChanged 0 0 jdk.StringTableStatistics 0 0 jdk.SwapSpace 0 0 jdk.SymbolTableStatistics 0 0 jdk.SyncOnValueBasedClass 0 0 jdk.SystemGC 0 0 jdk.SystemProcess 0 0 jdk.TLSHandshake 0 0 jdk.TenuringDistribution 0 0 jdk.ThreadAllocationStatistics 0 0 jdk.ThreadCPULoad 0 0 jdk.ThreadContextSwitchRate 0 0 jdk.ThreadDump 0 0 jdk.ThreadEnd 0 0 jdk.ThreadPark 0 0 jdk.ThreadSleep 0 0 jdk.ThreadStart 0 0 jdk.UnsignedIntFlagChanged 0 0 jdk.UnsignedLongFlag 0 0 jdk.UnsignedLongFlagChanged 0 0 jdk.VirtualThreadEnd 0 0 jdk.VirtualThreadPinned 0 0 jdk.VirtualThreadStart 0 0 jdk.VirtualThreadSubmitFailed 0 0 jdk.VirtualizationInformation 0 0 jdk.X509Certificate 0 0 jdk.X509Validation 0 0 jdk.YoungGarbageCollection 0 0 jdk.YoungGenerationConfiguration 0 0 jdk.ZAllocationStall 0 0 jdk.ZOldGarbageCollection 0 0 jdk.ZPageAllocation 0 0 jdk.ZRelocationSet 0 0 jdk.ZRelocationSetGroup 0 0 jdk.ZStatisticsCounter 0 0 jdk.ZStatisticsSampler 0 0 jdk.ZThreadPhase 0 0 jdk.ZUncommit 0 0 jdk.ZYoungGarbageCollection 0 0 profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmTrue.jfr Profiler for cpu at stackSize=1 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmTrue.jfr is 1698.33 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 58669168 events (total: 58M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 58.31% 34M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] 15.03% 8M jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] 12.71% 7M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] 2.90% 1M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] 2.47% 1M java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():739 [Inlined code] 2.10% 1M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] 0.66% 387382 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] 0.64% 375044 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] 0.51% 301757 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] 0.41% 240619 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] 0.39% 229273 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] 0.36% 209323 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] 0.28% 161575 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] 0.26% 151932 java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():499 [Inlined code] 0.25% 147267 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] 0.22% 127837 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] 0.20% 118260 jdk.jfr.internal.JVM#emitEvent() [Native code] 0.18% 105438 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():193 [JIT compiled code] 0.16% 94231 org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] 0.12% 68366 org.apache.lucene.store.ChecksumIndexInput#skipByReading():81 [JIT compiled code] 0.10% 58432 org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] 0.10% 56586 sun.nio.ch.NativeThread#current0() [Native code] 0.10% 56569 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] 0.10% 56464 org.apache.lucene.store.RateLimitedIndexOutput#writeBytes():55 [Inlined code] 0.09% 51059 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] 0.09% 50511 org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():512 [JIT compiled code] 0.08% 48659 org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] 0.08% 48567 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#calculateCentroid():488 [JIT compiled code] 0.07% 41854 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():363 [JIT compiled code] 0.06% 38032 org.apache.lucene.util.hnsw.NeighborArray#sort():171 [Inlined code] 0.06% 37448 org.apache.lucene.util.TernaryLongHeap#downHeap():246 [Inlined code] 0.05% 31831 sun.nio.ch.UnixFileDispatcherImpl#read0() [Native code] 0.05% 31564 org.apache.lucene.util.TernaryLongHeap#downHeap():235 [Inlined code] 0.05% 28644 jdk.jfr.internal.event.EventWriter#reserveEventSizeField():199 [Inlined code] 0.05% 27723 jdk.jfr.internal.JVM#getStackTraceId() [Native code] 0.04% 21074 java.util.concurrent.atomic.LongAdder#add():93 [Inlined code] 0.03% 19170 org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [Inlined code] 0.03% 19102 java.util.DualPivotQuicksort#sort():368 [JIT compiled code] 0.03% 16899 java.util.DualPivotQuicksort#sort():238 [Inlined code] 0.03% 14840 org.apache.lucene.store.RateLimitedIndexOutput#writeBytes():60 [Inlined code] 0.02% 14209 org.apache.lucene.util.hnsw.NeighborArray#clear():233 [Inlined code] 0.02% 13369 org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] 0.02% 13293 org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] 0.02% 12907 org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] 0.02% 11267 org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] 0.02% 10732 knn.IndexerThread#_run():105 [JIT compiled code] 0.02% 10156 org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():285 [JIT compiled code] 0.02% 9959 org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter#writeFloat32Vectors():172 [JIT compiled code] 0.02% 9501 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] 0.01% 7724 org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmTrue.jfr Profiler for cpu at stackSize=4 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmTrue.jfr is 1698.33 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 58669168 events (total: 58M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 55.29% 32M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 15.02% 8M jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnalignedInternal():3169 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnaligned():3159 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():60 [Inlined code] 12.71% 7M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] 2.90% 1M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] 2.47% 1M java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():739 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] 1.97% 1M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] 1.63% 958800 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] 0.79% 463540 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] 0.51% 297598 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.50% 293215 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] 0.49% 289656 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.42% 248337 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] 0.36% 209321 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.33% 192966 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] 0.27% 161139 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] 0.26% 151746 java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():499 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] 0.25% 147245 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] 0.22% 128527 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#pop():124 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#pop():129 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():322 [JIT compiled code] 0.21% 125448 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#release():720 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$WriteLock#unlock():1154 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():422 [JIT compiled code] 0.18% 108010 jdk.jfr.internal.JVM#emitEvent() [Native code] at jdk.jfr.internal.periodic.JVMEventTask#execute():54 [Inlined code] at jdk.jfr.internal.periodic.PeriodicTask#run():125 [Inlined code] at jdk.jfr.internal.periodic.PeriodicEvents#doPeriodic():145 [JIT compiled code] 0.15% 88395 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.15% 86797 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] 0.14% 81924 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():193 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] 0.14% 79368 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():101 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] 0.11% 66872 org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] 0.11% 63737 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#updateTop():153 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] 0.10% 56559 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.09% 53910 org.apache.lucene.store.RateLimitedIndexOutput#writeBytes():55 [Inlined code] at org.apache.lucene.store.DataOutput#writeBytes():54 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter#writeVectorData():302 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter#mergeOneFlatVectorField():235 [Interpreted code] 0.09% 50645 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.08% 49701 org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():512 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] 0.08% 48567 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#calculateCentroid():488 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeAndRecalculateCentroids():459 [Interpreted code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():331 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] 0.08% 48504 org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#collect():713 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():350 [JIT compiled code] 0.08% 45805 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#insertSortedInternal():184 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#sort():164 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] 0.07% 43151 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#flush():156 [JIT compiled code] 0.07% 43065 sun.nio.ch.NativeThread#current0() [Native code] at sun.nio.ch.NativeThread#current():51 [Inlined code] at sun.nio.ch.NativeThreadSet#add():48 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():349 [Inlined code] 0.06% 37831 org.apache.lucene.util.hnsw.NeighborArray#sort():171 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.05% 31824 sun.nio.ch.UnixFileDispatcherImpl#read0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#read():51 [Inlined code] at sun.nio.ch.IOUtil#readIntoNativeBuffer():341 [Inlined code] at sun.nio.ch.IOUtil#read():307 [Inlined code] 0.05% 30905 org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] 0.05% 28476 jdk.jfr.internal.event.EventWriter#reserveEventSizeField():199 [Inlined code] at jdk.jfr.internal.event.EventWriter#beginEvent():245 [Inlined code] at jdk.internal.event.FileWriteEvent#commit() [JIT compiled code] at jdk.internal.event.FileWriteEvent#offer():69 [Inlined code] 0.05% 28186 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():363 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.04% 26228 org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.04% 25001 org.apache.lucene.store.ChecksumIndexInput#skipByReading():81 [JIT compiled code] at org.apache.lucene.store.ChecksumIndexInput#seek():64 [Inlined code] at org.apache.lucene.codecs.CodecUtil#checksumEntireFile():619 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsReader#checkIntegrity():194 [JIT compiled code] 0.04% 23908 org.apache.lucene.store.ChecksumIndexInput#skipByReading():81 [JIT compiled code] at org.apache.lucene.store.ChecksumIndexInput#seek():64 [JIT compiled code] at org.apache.lucene.codecs.CodecUtil#checksumEntireFile():619 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsReader#checkIntegrity():194 [JIT compiled code] 0.04% 23509 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#pop():124 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#pop():129 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popNode():667 [Inlined code] 0.04% 22626 org.apache.lucene.util.TernaryLongHeap#downHeap():235 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#updateTop():153 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] 0.04% 21362 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():193 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#flush():156 [JIT compiled code] 0.04% 21071 jdk.jfr.internal.JVM#getStackTraceId() [Native code] at jdk.jfr.internal.event.EventWriter#putStackTrace():186 [Inlined code] at jdk.internal.event.FileReadEvent#commit() [JIT compiled code] at jdk.internal.event.FileReadEvent#offer():71 [Inlined code] 0.03% 19781 org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.03% 16591 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Interpreted code] 0.03% 16042 java.util.concurrent.atomic.LongAdder#add():93 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#lambda$addNode$0():170 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph$$Lambda.0x00000000641733b8#accept() [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#alertOnHeapMemoryUsageChange():118 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmTrue.jfr Profiler for cpu at stackSize=12 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmTrue.jfr is 1698.33 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 58669168 events (total: 58M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 32.61% 19M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] 21.97% 12M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] 14.45% 8M jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnalignedInternal():3169 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnaligned():3159 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():60 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():53 [Inlined code] at java.lang.invoke.VarHandleGuards#guard_LJ_I():251 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#get():742 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#readInt():270 [Inlined code] at org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#vectorValue():131 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():245 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] 11.60% 6M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 2.26% 1M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 1.58% 928017 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():739 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] 1.26% 737277 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] 0.79% 465134 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] 0.74% 433941 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():739 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] 0.69% 405856 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] 0.67% 391777 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000006419cee8#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] 0.56% 330913 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Interpreted code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] 0.53% 309942 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] 0.52% 304403 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000006419cee8#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] 0.45% 262620 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000006419cee8#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] 0.45% 261753 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x00000000641a1288#run() [JIT compiled code] 0.43% 252129 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] 0.27% 158663 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 0.27% 158635 jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnalignedInternal():3169 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnaligned():3159 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():60 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():53 [Inlined code] at java.lang.invoke.VarHandleGuards#guard_LJ_I():251 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#get():742 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#readInt():270 [Inlined code] at org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#vectorValue():131 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():245 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] 0.25% 147164 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] at sun.nio.ch.IOUtil#write():72 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():355 [Inlined code] at sun.nio.ch.FileChannelImpl#traceImplWrite():374 [Inlined code] at sun.nio.ch.FileChannelImpl#write():333 [Inlined code] at sun.nio.ch.ChannelOutputStream#writeFully():68 [Inlined code] at sun.nio.ch.ChannelOutputStream#write():105 [Inlined code] at org.apache.lucene.store.FSDirectory$FSIndexOutput$1#write():391 [Inlined code] at java.util.zip.CheckedOutputStream#write():73 [Inlined code] 0.25% 143964 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] 0.23% 137650 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#flush():156 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#flush():209 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#flush():123 [JIT compiled code] at org.apache.lucene.index.VectorValuesConsumer#flush():76 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():325 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] 0.19% 113634 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x00000000641a1288#run() [JIT compiled code] 0.19% 110942 jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnalignedInternal():3169 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getIntUnaligned():3159 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():60 [Inlined code] at java.lang.invoke.VarHandleSegmentAsInts#get():53 [Inlined code] at java.lang.invoke.VarHandleGuards#guard_LJ_I():251 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#get():742 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#readInt():270 [Inlined code] at org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#vectorValue():131 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():245 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] 0.18% 108010 jdk.jfr.internal.JVM#emitEvent() [Native code] at jdk.jfr.internal.periodic.JVMEventTask#execute():54 [Inlined code] at jdk.jfr.internal.periodic.PeriodicTask#run():125 [Inlined code] at jdk.jfr.internal.periodic.PeriodicEvents#doPeriodic():145 [JIT compiled code] at jdk.jfr.internal.PlatformRecorder#periodicTask():502 [Interpreted code] at jdk.jfr.internal.PlatformRecorder#lambda$startDiskMonitor$0():428 [Interpreted code] at jdk.jfr.internal.PlatformRecorder$$Lambda.0x000000006407aa58#run() [Interpreted code] at java.lang.Thread#runWith():1487 [Interpreted code] at java.lang.Thread#run():1474 [Interpreted code] 0.17% 102082 java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():499 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.16% 94011 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 0.15% 88610 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.15% 88039 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.14% 80066 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x00000000641a1288#run() [JIT compiled code] 0.13% 79187 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#release():720 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$WriteLock#unlock():1154 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():422 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 0.13% 77803 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#pop():124 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#pop():129 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():322 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.12% 70445 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000006419cee8#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#merge():159 [Interpreted code] 0.12% 68080 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000006419cee8#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#merge():159 [Interpreted code] 0.11% 66080 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 0.11% 65443 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 0.11% 62946 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():336 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#flush():156 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#flush():209 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#flush():123 [JIT compiled code] at org.apache.lucene.index.VectorValuesConsumer#flush():76 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():325 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#postUpdate():404 [Inlined code] 0.10% 58700 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#build():101 [JIT compiled code] 0.09% 55719 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x00000000641a1288#run() [JIT compiled code] 0.09% 54897 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.09% 54441 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000006419cee8#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():159 [Interpreted code] 0.09% 53656 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.09% 52260 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.09% 51860 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():739 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] 0.09% 50390 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Interpreted code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] 0.08% 45277 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#release():720 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$WriteLock#unlock():1154 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():422 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 0.07% 43959 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#build():101 [Interpreted code] 0.07% 42896 sun.nio.ch.NativeThread#current0() [Native code] at sun.nio.ch.NativeThread#current():51 [Inlined code] at sun.nio.ch.NativeThreadSet#add():48 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():349 [Inlined code] at sun.nio.ch.FileChannelImpl#traceImplWrite():374 [Inlined code] at sun.nio.ch.FileChannelImpl#write():333 [Inlined code] at sun.nio.ch.ChannelOutputStream#writeFully():68 [Inlined code] at sun.nio.ch.ChannelOutputStream#write():105 [Inlined code] at org.apache.lucene.store.FSDirectory$FSIndexOutput$1#write():391 [Inlined code] at java.util.zip.CheckedOutputStream#write():73 [Inlined code] at java.io.BufferedOutputStream#flushBuffer():123 [Inlined code] at java.io.BufferedOutputStream#write():188 [Inlined code] 0.07% 42717 org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():512 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 0.07% 40286 java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():499 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmTrue.jfr Profiler for heap at stackSize=1 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmTrue.jfr is 1698.33 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 73359 events (total: 555253M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 23.18% 128720M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] 22.98% 127624M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] 22.90% 127172M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] 11.43% 63482M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] 5.74% 31890M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] 4.31% 23918M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] 1.10% 6121M java.util.Arrays#copyOf():3478 [Inlined code] 0.97% 5374M java.lang.Integer#valueOf():1006 [Inlined code] 0.72% 3981M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] 0.70% 3882M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] 0.67% 3698M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] 0.65% 3620M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] 0.40% 2233M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [JIT compiled code] 0.33% 1813M knn.KnnIndexer$TrackingConcurrentMergeScheduler#doMerge():355 [Interpreted code] 0.32% 1759M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [Inlined code] 0.30% 1670M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] 0.25% 1374M knn.IndexerThread#_run():86 [Interpreted code] 0.24% 1357M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():232 [JIT compiled code] 0.16% 890M java.lang.invoke.DirectMethodHandle#allocateInstance():500 [Inlined code] 0.16% 889M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():158 [Inlined code] 0.16% 884M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():320 [JIT compiled code] 0.16% 877M java.util.DualPivotQuicksort#tryMergeRuns():816 [JIT compiled code] 0.15% 857M java.util.ArrayList#grow():240 [Inlined code] 0.13% 739M org.apache.lucene.search.AbstractKnnVectorQuery#getKnnCollectorManager():248 [Inlined code] 0.12% 665M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():306 [JIT compiled code] 0.12% 658M knn.IndexerThread#_run():108 [JIT compiled code] 0.12% 648M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():193 [JIT compiled code] 0.09% 503M java.lang.reflect.Array#newInstance():76 [Inlined code] 0.08% 455M java.util.HashMap#newNode():1910 [Inlined code] 0.08% 452M java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquire():389 [JIT compiled code] 0.08% 430M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():556 [JIT compiled code] 0.08% 419M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] 0.07% 395M java.util.DualPivotQuicksort#sort():354 [JIT compiled code] 0.07% 371M java.util.ArrayList#iterator():1030 [JIT compiled code] 0.07% 362M jdk.internal.misc.Unsafe#allocateUninitializedArray():1396 [Inlined code] 0.06% 343M org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Interpreted code] 0.06% 343M org.apache.lucene.util.SparseFixedBitSet#insertLong():230 [Inlined code] 0.06% 324M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():618 [JIT compiled code] 0.05% 285M org.apache.lucene.document.Document#():42 [Inlined code] 0.04% 246M java.util.concurrent.locks.ReentrantReadWriteLock$Sync$ThreadLocalHoldCounter#initialValue():291 [Inlined code] 0.04% 211M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():158 [JIT compiled code] 0.04% 210M knn.IndexerThread#_run():125 [JIT compiled code] 0.04% 210M java.util.List#of():935 [Inlined code] 0.03% 174M java.util.HashMap#resize():711 [JIT compiled code] 0.03% 171M java.lang.invoke.VarForm#resolveMemberName():159 [Interpreted code] 0.03% 165M java.io.BufferedOutputStream#():92 [Inlined code] 0.03% 164M org.apache.lucene.util.FixedBitSet#():148 [Inlined code] 0.03% 164M org.apache.lucene.util.hnsw.OnHeapHnswGraph#():86 [JIT compiled code] 0.02% 132M java.lang.reflect.Array#newArray() [Native code] 0.02% 127M java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject#await():1767 [Interpreted code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmTrue.jfr Profiler for heap at stackSize=4 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmTrue.jfr is 1698.33 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 73359 events (total: 555253M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 19.00% 105504M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] 18.62% 103366M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] 12.85% 71346M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 9.33% 51795M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] 7.02% 38976M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollector#():44 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [JIT compiled code] 5.74% 31890M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():335 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] 4.41% 24497M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollector#():44 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [Interpreted code] 4.31% 23918M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 4.24% 23558M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] 4.18% 23194M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] 1.03% 5740M java.util.Arrays#copyOf():3478 [Inlined code] at java.util.ArrayDeque#grow():146 [JIT compiled code] at java.util.ArrayDeque#addFirst():288 [Inlined code] at java.util.ArrayDeque#push():577 [Inlined code] 0.94% 5223M java.lang.Integer#valueOf():1006 [Inlined code] at knn.KnnGraphTester#printGraphConnectedNess():1131 [JIT compiled code] at knn.KnnGraphTester#printFanoutHist():1086 [Interpreted code] at knn.KnnGraphTester#printFanoutHist():1061 [Interpreted code] 0.70% 3882M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.67% 3698M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.58% 3243M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.37% 2061M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [JIT compiled code] 0.33% 1854M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.33% 1838M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.33% 1813M knn.KnnIndexer$TrackingConcurrentMergeScheduler#doMerge():355 [Interpreted code] at org.apache.lucene.index.ConcurrentMergeScheduler$MergeThread#run():726 [Interpreted code] 0.31% 1707M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.26% 1439M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.25% 1374M knn.IndexerThread#_run():86 [Interpreted code] at knn.IndexerThread#run():77 [Interpreted code] 0.22% 1234M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.20% 1094M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():232 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] 0.16% 877M java.util.DualPivotQuicksort#tryMergeRuns():816 [JIT compiled code] at java.util.DualPivotQuicksort#sort():277 [JIT compiled code] at java.util.DualPivotQuicksort#sort():238 [Inlined code] at java.util.Arrays#sort():123 [Inlined code] 0.15% 857M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] 0.15% 839M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] 0.13% 739M org.apache.lucene.search.AbstractKnnVectorQuery#getKnnCollectorManager():248 [Inlined code] at org.apache.lucene.search.AbstractKnnVectorQuery#rewrite():106 [JIT compiled code] at org.apache.lucene.search.KnnFloatVectorQuery#rewrite():48 [Inlined code] at knn.KnnGraphTester$ProfiledKnnFloatVectorQuery#rewrite():2274 [JIT compiled code] 0.13% 709M java.lang.invoke.DirectMethodHandle#allocateInstance():500 [Inlined code] at java.lang.invoke.DirectMethodHandle$Holder#newInvokeSpecial() [Inlined code] at java.lang.invoke.Invokers$Holder#linkToTargetMethod() [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [Inlined code] 0.12% 658M knn.IndexerThread#_run():108 [JIT compiled code] at knn.IndexerThread#run():77 [Interpreted code] 0.10% 551M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.09% 514M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():158 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.09% 502M java.lang.reflect.Array#newInstance():76 [Inlined code] at org.apache.lucene.util.ArrayUtil#growExact():216 [Inlined code] at org.apache.lucene.util.ArrayUtil#grow():234 [JIT compiled code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():152 [Inlined code] 0.08% 471M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():193 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] 0.08% 467M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] 0.08% 458M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.08% 439M java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquire():389 [JIT compiled code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():739 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] 0.08% 430M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():556 [JIT compiled code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader#serializedDocument():645 [Inlined code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#copyOneDoc():508 [JIT compiled code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#merge():630 [JIT compiled code] 0.08% 419M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():238 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] 0.07% 407M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():238 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] 0.07% 392M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():320 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] 0.06% 356M jdk.internal.misc.Unsafe#allocateUninitializedArray():1396 [Inlined code] at java.lang.StringConcatHelper#newArray():578 [Inlined code] at java.lang.StringConcatHelper#newArrayWithSuffix():611 [Inlined code] at java.lang.String$$StringConcat.0x0000000064182c00#concat() [Inlined code] 0.06% 343M org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Interpreted code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x00000000641a1288#run() [Interpreted code] at java.util.concurrent.ThreadPoolExecutor#runWorker():1090 [Interpreted code] at java.util.concurrent.ThreadPoolExecutor$Worker#run():614 [Interpreted code] 0.06% 342M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():238 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] 0.06% 339M org.apache.lucene.util.SparseFixedBitSet#insertLong():230 [Inlined code] at org.apache.lucene.util.SparseFixedBitSet#getAndSet():170 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] at org.apache.lucene.util.hnsw.AbstractHnswGraphSearcher#search():83 [JIT compiled code] 0.06% 338M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():306 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] 0.06% 332M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():158 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] 0.06% 324M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():618 [JIT compiled code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader#serializedDocument():645 [Inlined code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#copyOneDoc():508 [JIT compiled code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#merge():630 [JIT compiled code] 0.06% 317M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] 0.05% 288M java.util.DualPivotQuicksort#sort():354 [JIT compiled code] at java.util.DualPivotQuicksort#sort():238 [Inlined code] at java.util.Arrays#sort():123 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#writeGraph():534 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmTrue.jfr Profiler for heap at stackSize=12 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q7-fmTrue.jfr is 1698.33 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 73359 events (total: 555253M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 8.74% 48501M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] 8.71% 48352M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] 8.67% 48154M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 7.01% 38912M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollector#():44 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():28 [Inlined code] at org.apache.lucene.search.IndexSearcher#search():752 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#searchAfter():601 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#search():624 [Inlined code] at knn.KnnGraphTester#doFloatVectorQuery():1527 [JIT compiled code] at knn.KnnGraphTester#testSearch():1253 [Interpreted code] at knn.KnnGraphTester#run():770 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] 6.81% 37808M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 5.74% 31890M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():335 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$FieldWriter#addValue():568 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$FieldWriter#addValue():518 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():783 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 4.05% 22467M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 3.97% 22021M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 3.96% 21978M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] 3.76% 20898M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] 3.76% 20852M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 2.94% 16344M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollector#():44 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():28 [Interpreted code] at org.apache.lucene.search.IndexSearcher#search():752 [Interpreted code] at org.apache.lucene.search.IndexSearcher#searchAfter():601 [Interpreted code] at org.apache.lucene.search.IndexSearcher#search():624 [Interpreted code] at knn.KnnGraphTester#doFloatVectorQuery():1527 [Interpreted code] at knn.KnnGraphTester#testSearch():1253 [Interpreted code] at knn.KnnGraphTester#run():770 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] 2.48% 13759M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 1.47% 8163M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] 1.47% 8152M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollector#():44 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():28 [Interpreted code] at org.apache.lucene.search.IndexSearcher#search():752 [Interpreted code] at org.apache.lucene.search.IndexSearcher#searchAfter():601 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#search():624 [Inlined code] at knn.KnnGraphTester#doFloatVectorQuery():1527 [JIT compiled code] at knn.KnnGraphTester#testSearch():1253 [Interpreted code] at knn.KnnGraphTester#run():770 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] 1.46% 8102M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] 1.34% 7438M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 1.26% 6996M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():255 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initGraph():148 [Interpreted code] at org.apache.lucene.util.hnsw.ConcurrentHnswMerger#createBuilder():81 [Interpreted code] at org.apache.lucene.util.hnsw.IncrementalHnswGraphMerger#merge():212 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#buildAndWriteGraph():485 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#lambda$mergeOneField$0():440 [Interpreted code] 1.23% 6821M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():255 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initGraph():148 [Interpreted code] at org.apache.lucene.util.hnsw.ConcurrentHnswMerger#createBuilder():81 [Interpreted code] at org.apache.lucene.util.hnsw.IncrementalHnswGraphMerger#merge():212 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#buildAndWriteGraph():485 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#lambda$mergeOneField$0():440 [Interpreted code] 1.11% 6162M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 1.03% 5740M java.util.Arrays#copyOf():3478 [Inlined code] at java.util.ArrayDeque#grow():146 [JIT compiled code] at java.util.ArrayDeque#addFirst():288 [Inlined code] at java.util.ArrayDeque#push():577 [Inlined code] at knn.KnnGraphTester#printGraphConnectedNess():1131 [JIT compiled code] at knn.KnnGraphTester#printFanoutHist():1086 [Interpreted code] at knn.KnnGraphTester#printFanoutHist():1061 [Interpreted code] at knn.KnnGraphTester#run():775 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] at knn.KnnGraphTester#main():275 [Interpreted code] 0.94% 5225M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.94% 5223M java.lang.Integer#valueOf():1006 [Inlined code] at knn.KnnGraphTester#printGraphConnectedNess():1131 [JIT compiled code] at knn.KnnGraphTester#printFanoutHist():1086 [Interpreted code] at knn.KnnGraphTester#printFanoutHist():1061 [Interpreted code] at knn.KnnGraphTester#run():775 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] at knn.KnnGraphTester#main():275 [Interpreted code] 0.89% 4943M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.77% 4263M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.73% 4057M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 0.71% 3930M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 0.66% 3663M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.65% 3627M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.52% 2872M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#replayBufferedVectors():771 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():787 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.49% 2736M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#replayBufferedVectors():771 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():787 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.44% 2442M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] 0.43% 2377M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.42% 2357M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [JIT compiled code] 0.41% 2288M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.40% 2235M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] 0.37% 2061M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Interpreted code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Interpreted code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x00000000641a1288#run() [Interpreted code] 0.34% 1860M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.33% 1813M knn.KnnIndexer$TrackingConcurrentMergeScheduler#doMerge():355 [Interpreted code] at org.apache.lucene.index.ConcurrentMergeScheduler$MergeThread#run():726 [Interpreted code] 0.32% 1771M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.28% 1538M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.27% 1519M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [Interpreted code] 0.25% 1374M knn.IndexerThread#_run():86 [Interpreted code] at knn.IndexerThread#run():77 [Interpreted code] 0.20% 1128M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] 0.18% 996M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] 0.16% 889M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 0.15% 857M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] at org.apache.lucene.document.Document#add():62 [Inlined code] at knn.IndexerThread#_run():108 [JIT compiled code] at knn.IndexerThread#run():77 [Interpreted code] 0.15% 825M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Interpreted code] 0.13% 748M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Interpreted code] 0.13% 729M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000641a0d30#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] now remove KNN index knn-reuse/indices/dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-7-fm cmd: ['/usr/sbin/perf', 'stat', '-dd', '-e', 'task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend', '/usr/lib/jvm/java-25-openjdk/bin/java', '--add-modules', 'jdk.incubator.vector', '-Xmx32g', '-Xms32g', '-server', '-XX:+UseParallelGC', '-Djava.io.tmpdir=/l/tmp', '--enable-native-access=ALL-UNNAMED', '-cp', '/l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build:/l/util.nightly/build', '--add-modules', 'jdk.incubator.vector', '--enable-native-access=ALL-UNNAMED', '-XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmFalse.jfr', 'knn.KnnGraphTester', '-maxConn', '32', '-dim', '1024', '-docs', '/big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec', '-ndoc', '8000000', '-topK', '100', '-numIndexThreads', '8', '-beamWidthIndex', '100', '-search-and-stats', '/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec', '-metric', 'dot_product', '-numMergeThread', '16', '-numMergeWorker', '48', '-reindex'] WARNING: Using incubator modules: jdk.incubator.vector [0.214s][info][jfr,startup] Started recording 1. [0.214s][info][jfr,startup] [0.214s][info][jfr,startup] Use jcmd 2186538 JFR.dump name=1 to copy recording data to file. maxConn = 32 Vector Dimensions: 1024 numDocs = 8000000 beamWidth = 100 similarity = DOT_PRODUCT Seed = 2372819021236874 index key = dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-notfm Index Path = knn-reuse/indices/dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-notfm will now reindex: explicitly requested May 15, 2026 7:08:46 PM org.apache.lucene.internal.vectorization.PanamaVectorizationProvider logIncubatorSetup INFO: Java vector incubator API enabled; uses preferredBitSize=256; FMA enabled creating index in knn-reuse/indices/dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-notfm 39709371 doc vectors in docsPath "/big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec" parentJoin=false Done indexing 25000 documents. Done indexing 50000 documents. Done indexing 75000 documents. Done indexing 100000 documents. Done indexing 125000 documents. Done indexing 150000 documents. Done indexing 175000 documents. Done indexing 200000 documents. Done indexing 225000 documents. Done indexing 250000 documents. Done indexing 275000 documents. Done indexing 300000 documents. Done indexing 325000 documents. Done indexing 350000 documents. Done indexing 375000 documents. Done indexing 400000 documents. Done indexing 425000 documents. Done indexing 450000 documents. Done indexing 475000 documents. Done indexing 500000 documents. Done indexing 525000 documents. Done indexing 550000 documents. Done indexing 575000 documents. Done indexing 600000 documents. Done indexing 625000 documents. Done indexing 650000 documents. Done indexing 675000 documents. Done indexing 700000 documents. Done indexing 725000 documents. Done indexing 750000 documents. Done indexing 775000 documents. Done indexing 800000 documents. Done indexing 825000 documents. Done indexing 850000 documents. Done indexing 875000 documents. Done indexing 900000 documents. Done indexing 925000 documents. Done indexing 950000 documents. Done indexing 975000 documents. Done indexing 1000000 documents. Done indexing 1025000 documents. Done indexing 1050000 documents. Done indexing 1075000 documents. Done indexing 1100000 documents. Done indexing 1125000 documents. Done indexing 1150000 documents. Done indexing 1175000 documents. Done indexing 1200000 documents. Done indexing 1225000 documents. Done indexing 1250000 documents. Done indexing 1275000 documents. Done indexing 1300000 documents. Done indexing 1325000 documents. Done indexing 1350000 documents. Done indexing 1375000 documents. Done indexing 1400000 documents. Done indexing 1425000 documents. Done indexing 1450000 documents. Done indexing 1475000 documents. Done indexing 1500000 documents. Done indexing 1525000 documents. Done indexing 1550000 documents. Done indexing 1575000 documents. Done indexing 1600000 documents. Done indexing 1625000 documents. Done indexing 1650000 documents. Done indexing 1675000 documents. Done indexing 1700000 documents. Done indexing 1725000 documents. Done indexing 1750000 documents. Done indexing 1775000 documents. Done indexing 1800000 documents. Done indexing 1825000 documents. Done indexing 1850000 documents. Done indexing 1875000 documents. Done indexing 1900000 documents. Done indexing 1925000 documents. Done indexing 1950000 documents. Done indexing 1975000 documents. Done indexing 2000000 documents. Done indexing 2025000 documents. Done indexing 2050000 documents. Done indexing 2075000 documents. Done indexing 2100000 documents. Done indexing 2125000 documents. Done indexing 2150000 documents. Done indexing 2175000 documents. Done indexing 2200000 documents. Done indexing 2225000 documents. Done indexing 2250000 documents. Done indexing 2275000 documents. Done indexing 2300000 documents. Done indexing 2325000 documents. Done indexing 2350000 documents. Done indexing 2375000 documents. Done indexing 2400000 documents. Done indexing 2425000 documents. Done indexing 2450000 documents. Done indexing 2475000 documents. Done indexing 2500000 documents. Done indexing 2525000 documents. Done indexing 2550000 documents. Done indexing 2575000 documents. Done indexing 2600000 documents. Done indexing 2625000 documents. Done indexing 2650000 documents. Done indexing 2675000 documents. Done indexing 2700000 documents. Done indexing 2725000 documents. Done indexing 2750000 documents. Done indexing 2775000 documents. Done indexing 2800000 documents. Done indexing 2825000 documents. Done indexing 2850000 documents. Done indexing 2875000 documents. Done indexing 2900000 documents. Done indexing 2925000 documents. Done indexing 2950000 documents. Done indexing 2975000 documents. Done indexing 3000000 documents. Done indexing 3025000 documents. Done indexing 3050000 documents. Done indexing 3075000 documents. Done indexing 3100000 documents. Done indexing 3125000 documents. Done indexing 3150000 documents. Done indexing 3175000 documents. Done indexing 3200000 documents. Done indexing 3225000 documents. Done indexing 3250000 documents. Done indexing 3275000 documents. Done indexing 3300000 documents. Done indexing 3325000 documents. Done indexing 3350000 documents. Done indexing 3375000 documents. Done indexing 3400000 documents. Done indexing 3425000 documents. Done indexing 3450000 documents. Done indexing 3475000 documents. Done indexing 3500000 documents. Done indexing 3525000 documents. Done indexing 3550000 documents. Done indexing 3575000 documents. Done indexing 3600000 documents. Done indexing 3625000 documents. Done indexing 3650000 documents. Done indexing 3675000 documents. Done indexing 3700000 documents. Done indexing 3725000 documents. Done indexing 3750000 documents. Done indexing 3775000 documents. Done indexing 3800000 documents. Done indexing 3825000 documents. Done indexing 3850000 documents. Done indexing 3875000 documents. Done indexing 3900000 documents. Done indexing 3925000 documents. Done indexing 3950000 documents. Done indexing 3975000 documents. Done indexing 4000000 documents. Done indexing 4025000 documents. Done indexing 4050000 documents. Done indexing 4075000 documents. Done indexing 4100000 documents. Done indexing 4125000 documents. Done indexing 4150000 documents. Done indexing 4175000 documents. Done indexing 4200000 documents. Done indexing 4225000 documents. Done indexing 4250000 documents. Done indexing 4275000 documents. Done indexing 4300000 documents. Done indexing 4325000 documents. Done indexing 4350000 documents. Done indexing 4375000 documents. Done indexing 4400000 documents. Done indexing 4425000 documents. Done indexing 4450000 documents. Done indexing 4475000 documents. Done indexing 4500000 documents. Done indexing 4525000 documents. Done indexing 4550000 documents. Done indexing 4575000 documents. Done indexing 4600000 documents. Done indexing 4625000 documents. Done indexing 4650000 documents. Done indexing 4675000 documents. Done indexing 4700000 documents. Done indexing 4725000 documents. Done indexing 4750000 documents. Done indexing 4775000 documents. Done indexing 4800000 documents. Done indexing 4825000 documents. Done indexing 4850000 documents. Done indexing 4875000 documents. Done indexing 4900000 documents. Done indexing 4925000 documents. Done indexing 4950000 documents. Done indexing 4975000 documents. Done indexing 5000000 documents. Done indexing 5025000 documents. Done indexing 5050000 documents. Done indexing 5075000 documents. Done indexing 5100000 documents. Done indexing 5125000 documents. Done indexing 5150000 documents. Done indexing 5175000 documents. Done indexing 5200000 documents. Done indexing 5225000 documents. Done indexing 5250000 documents. Done indexing 5275000 documents. Done indexing 5300000 documents. Done indexing 5325000 documents. Done indexing 5350000 documents. Done indexing 5375000 documents. Done indexing 5400000 documents. Done indexing 5425000 documents. Done indexing 5450000 documents. Done indexing 5475000 documents. Done indexing 5500000 documents. Done indexing 5525000 documents. Done indexing 5550000 documents. Done indexing 5575000 documents. Done indexing 5600000 documents. Done indexing 5625000 documents. Done indexing 5650000 documents. Done indexing 5675000 documents. Done indexing 5700000 documents. Done indexing 5725000 documents. Done indexing 5750000 documents. Done indexing 5775000 documents. Done indexing 5800000 documents. Done indexing 5825000 documents. Done indexing 5850000 documents. Done indexing 5875000 documents. Done indexing 5900000 documents. Done indexing 5925000 documents. Done indexing 5950000 documents. Done indexing 5975000 documents. Done indexing 6000000 documents. Done indexing 6025000 documents. Done indexing 6050000 documents. Done indexing 6075000 documents. Done indexing 6100000 documents. Done indexing 6125000 documents. Done indexing 6150000 documents. Done indexing 6175000 documents. Done indexing 6200000 documents. Done indexing 6225000 documents. Done indexing 6250000 documents. Done indexing 6275000 documents. Done indexing 6300000 documents. Done indexing 6325000 documents. Done indexing 6350000 documents. Done indexing 6375000 documents. Done indexing 6400000 documents. Done indexing 6425000 documents. Done indexing 6450000 documents. Done indexing 6475000 documents. Done indexing 6500000 documents. Done indexing 6525000 documents. Done indexing 6550000 documents. Done indexing 6575000 documents. Done indexing 6600000 documents. Done indexing 6625000 documents. Done indexing 6650000 documents. Done indexing 6675000 documents. Done indexing 6700000 documents. Done indexing 6725000 documents. Done indexing 6750000 documents. Done indexing 6775000 documents. Done indexing 6800000 documents. Done indexing 6825000 documents. Done indexing 6850000 documents. Done indexing 6875000 documents. Done indexing 6900000 documents. Done indexing 6925000 documents. Done indexing 6950000 documents. Done indexing 6975000 documents. Done indexing 7000000 documents. Done indexing 7025000 documents. Done indexing 7050000 documents. Done indexing 7075000 documents. Done indexing 7100000 documents. Done indexing 7125000 documents. Done indexing 7150000 documents. Done indexing 7175000 documents. Done indexing 7200000 documents. Done indexing 7225000 documents. Done indexing 7250000 documents. Done indexing 7275000 documents. Done indexing 7300000 documents. Done indexing 7325000 documents. Done indexing 7350000 documents. Done indexing 7375000 documents. Done indexing 7400000 documents. Done indexing 7425000 documents. Done indexing 7450000 documents. Done indexing 7475000 documents. Done indexing 7500000 documents. Done indexing 7525000 documents. Done indexing 7550000 documents. Done indexing 7575000 documents. Done indexing 7600000 documents. Done indexing 7625000 documents. Done indexing 7650000 documents. Done indexing 7675000 documents. Done indexing 7700000 documents. Done indexing 7725000 documents. Done indexing 7750000 documents. Done indexing 7775000 documents. Done indexing 7800000 documents. Done indexing 7825000 documents. Done indexing 7850000 documents. Done indexing 7875000 documents. Done indexing 7900000 documents. Done indexing 7925000 documents. Done indexing 7950000 documents. Done indexing 7975000 documents. Done indexing 8000000 documents. now IndexWriter.commit() now wait for already running merges to finish 0.0 sec: 219 segments, 24 merges 798.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 690.1s _178: 8 segs, 106.6 K docs, 424.3 MB 636.8s _17u: 8 segs, 139.7 K docs, 556.4 MB 617.5s _181: 8 segs, 122.1 K docs, 486.1 MB 535.0s _18z: 8 segs, 71.3 K docs, 283.3 MB 505.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 469.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 431.8s _1ab: 8 segs, 78.5 K docs, 312.0 MB 354.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 340.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 315.6s _1c0: 11 segs, 52.5 K docs, 208.0 MB 289.6s _1cb: 10 segs, 48.8 K docs, 193.3 MB 266.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 217.4s _1dc: 8 segs, 105.0 K docs, 417.5 MB 176.1s _1du: 8 segs, 40.8 K docs, 161.4 MB 158.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 136.8s _1ea: 8 segs, 38.1 K docs, 150.7 MB 115.1s _1ej: 8 segs, 38.9 K docs, 154.0 MB 91.7s _1es: 8 segs, 39.3 K docs, 155.8 MB 71.8s _1ez: 8 segs, 145.8 K docs, 580.7 MB 54.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 31.3s _1fe: 8 segs, 74.4 K docs, 295.5 MB 10.1s _1fm: 8 segs, 72.3 K docs, 287.1 MB 5.0 sec: 219 segments, 24 merges 803.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 695.2s _178: 8 segs, 106.6 K docs, 424.3 MB 641.8s _17u: 8 segs, 139.7 K docs, 556.4 MB 622.5s _181: 8 segs, 122.1 K docs, 486.1 MB 540.0s _18z: 8 segs, 71.3 K docs, 283.3 MB 510.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 474.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 436.8s _1ab: 8 segs, 78.5 K docs, 312.0 MB 359.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 345.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 320.6s _1c0: 11 segs, 52.5 K docs, 208.0 MB 294.6s _1cb: 10 segs, 48.8 K docs, 193.3 MB 271.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 222.4s _1dc: 8 segs, 105.0 K docs, 417.5 MB 181.1s _1du: 8 segs, 40.8 K docs, 161.4 MB 163.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 141.8s _1ea: 8 segs, 38.1 K docs, 150.7 MB 120.1s _1ej: 8 segs, 38.9 K docs, 154.0 MB 96.7s _1es: 8 segs, 39.3 K docs, 155.8 MB 76.8s _1ez: 8 segs, 145.8 K docs, 580.7 MB 59.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 36.3s _1fe: 8 segs, 74.4 K docs, 295.5 MB 15.2s _1fm: 8 segs, 72.3 K docs, 287.1 MB 5.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 10.0 sec: 219 segments, 24 merges 808.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 700.2s _178: 8 segs, 106.6 K docs, 424.3 MB 646.8s _17u: 8 segs, 139.7 K docs, 556.4 MB 627.5s _181: 8 segs, 122.1 K docs, 486.1 MB 545.0s _18z: 8 segs, 71.3 K docs, 283.3 MB 515.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 479.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 441.8s _1ab: 8 segs, 78.5 K docs, 312.0 MB 364.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 350.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 325.7s _1c0: 11 segs, 52.5 K docs, 208.0 MB 299.7s _1cb: 10 segs, 48.8 K docs, 193.3 MB 276.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 227.4s _1dc: 8 segs, 105.0 K docs, 417.5 MB 186.1s _1du: 8 segs, 40.8 K docs, 161.4 MB 168.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 146.8s _1ea: 8 segs, 38.1 K docs, 150.7 MB 125.2s _1ej: 8 segs, 38.9 K docs, 154.0 MB 101.7s _1es: 8 segs, 39.3 K docs, 155.8 MB 81.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 64.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 41.3s _1fe: 8 segs, 74.4 K docs, 295.5 MB 20.2s _1fm: 8 segs, 72.3 K docs, 287.1 MB 10.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 15.0 sec: 219 segments, 24 merges 813.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 705.2s _178: 8 segs, 106.6 K docs, 424.3 MB 651.9s _17u: 8 segs, 139.7 K docs, 556.4 MB 632.6s _181: 8 segs, 122.1 K docs, 486.1 MB 550.0s _18z: 8 segs, 71.3 K docs, 283.3 MB 520.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 484.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 446.8s _1ab: 8 segs, 78.5 K docs, 312.0 MB 369.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 355.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 330.7s _1c0: 11 segs, 52.5 K docs, 208.0 MB 304.7s _1cb: 10 segs, 48.8 K docs, 193.3 MB 281.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 232.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 191.2s _1du: 8 segs, 40.8 K docs, 161.4 MB 173.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 151.8s _1ea: 8 segs, 38.1 K docs, 150.7 MB 130.2s _1ej: 8 segs, 38.9 K docs, 154.0 MB 106.7s _1es: 8 segs, 39.3 K docs, 155.8 MB 86.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 69.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 46.3s _1fe: 8 segs, 74.4 K docs, 295.5 MB 25.2s _1fm: 8 segs, 72.3 K docs, 287.1 MB 15.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 20.1 sec: 219 segments, 24 merges 818.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 710.2s _178: 8 segs, 106.6 K docs, 424.3 MB 656.9s _17u: 8 segs, 139.7 K docs, 556.4 MB 637.6s _181: 8 segs, 122.1 K docs, 486.1 MB 555.1s _18z: 8 segs, 71.3 K docs, 283.3 MB 525.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 489.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 451.9s _1ab: 8 segs, 78.5 K docs, 312.0 MB 374.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 360.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 335.7s _1c0: 11 segs, 52.5 K docs, 208.0 MB 309.7s _1cb: 10 segs, 48.8 K docs, 193.3 MB 286.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 237.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 196.2s _1du: 8 segs, 40.8 K docs, 161.4 MB 178.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 156.8s _1ea: 8 segs, 38.1 K docs, 150.7 MB 135.2s _1ej: 8 segs, 38.9 K docs, 154.0 MB 111.8s _1es: 8 segs, 39.3 K docs, 155.8 MB 91.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 74.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 51.4s _1fe: 8 segs, 74.4 K docs, 295.5 MB 30.2s _1fm: 8 segs, 72.3 K docs, 287.1 MB 20.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 25.1 sec: 219 segments, 24 merges 823.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 715.2s _178: 8 segs, 106.6 K docs, 424.3 MB 661.9s _17u: 8 segs, 139.7 K docs, 556.4 MB 642.6s _181: 8 segs, 122.1 K docs, 486.1 MB 560.1s _18z: 8 segs, 71.3 K docs, 283.3 MB 530.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 494.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 456.9s _1ab: 8 segs, 78.5 K docs, 312.0 MB 379.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 365.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 340.7s _1c0: 11 segs, 52.5 K docs, 208.0 MB 314.7s _1cb: 10 segs, 48.8 K docs, 193.3 MB 291.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 242.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 201.2s _1du: 8 segs, 40.8 K docs, 161.4 MB 183.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 161.9s _1ea: 8 segs, 38.1 K docs, 150.7 MB 140.2s _1ej: 8 segs, 38.9 K docs, 154.0 MB 116.8s _1es: 8 segs, 39.3 K docs, 155.8 MB 96.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 79.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 56.4s _1fe: 8 segs, 74.4 K docs, 295.5 MB 35.2s _1fm: 8 segs, 72.3 K docs, 287.1 MB 25.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 30.1 sec: 210 segments, 23 merges 828.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 720.2s _178: 8 segs, 106.6 K docs, 424.3 MB 666.9s _17u: 8 segs, 139.7 K docs, 556.4 MB 647.6s _181: 8 segs, 122.1 K docs, 486.1 MB 565.1s _18z: 8 segs, 71.3 K docs, 283.3 MB 535.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 499.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 461.9s _1ab: 8 segs, 78.5 K docs, 312.0 MB 384.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 370.7s _1bo: 12 segs, 58.8 K docs, 232.9 MB 345.7s _1c0: 11 segs, 52.5 K docs, 208.0 MB 296.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 247.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 206.2s _1du: 8 segs, 40.8 K docs, 161.4 MB 188.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 166.9s _1ea: 8 segs, 38.1 K docs, 150.7 MB 145.2s _1ej: 8 segs, 38.9 K docs, 154.0 MB 121.8s _1es: 8 segs, 39.3 K docs, 155.8 MB 101.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 84.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 61.4s _1fe: 8 segs, 74.4 K docs, 295.5 MB 40.2s _1fm: 8 segs, 72.3 K docs, 287.1 MB 30.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 35.1 sec: 182 segments, 19 merges 833.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 725.2s _178: 8 segs, 106.6 K docs, 424.3 MB 671.9s _17u: 8 segs, 139.7 K docs, 556.4 MB 652.6s _181: 8 segs, 122.1 K docs, 486.1 MB 540.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 504.6s _19u: 8 segs, 179.9 K docs, 717.1 MB 389.3s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 375.7s _1bo: 12 segs, 58.8 K docs, 232.9 MB 350.7s _1c0: 11 segs, 52.5 K docs, 208.0 MB 301.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 252.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 193.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 171.9s _1ea: 8 segs, 38.1 K docs, 150.7 MB 126.8s _1es: 8 segs, 39.3 K docs, 155.8 MB 106.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 89.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 66.4s _1fe: 8 segs, 74.4 K docs, 295.5 MB 45.2s _1fm: 8 segs, 72.3 K docs, 287.1 MB 35.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 40.0 sec: 182 segments, 19 merges 838.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 730.1s _178: 8 segs, 106.6 K docs, 424.3 MB 676.8s _17u: 8 segs, 139.7 K docs, 556.4 MB 657.5s _181: 8 segs, 122.1 K docs, 486.1 MB 545.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 509.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 394.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 380.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 355.6s _1c0: 11 segs, 52.5 K docs, 208.0 MB 306.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 257.4s _1dc: 8 segs, 105.0 K docs, 417.5 MB 198.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 176.8s _1ea: 8 segs, 38.1 K docs, 150.7 MB 131.7s _1es: 8 segs, 39.3 K docs, 155.8 MB 111.8s _1ez: 8 segs, 145.8 K docs, 580.7 MB 94.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 71.3s _1fe: 8 segs, 74.4 K docs, 295.5 MB 50.1s _1fm: 8 segs, 72.3 K docs, 287.1 MB 40.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 45.0 sec: 182 segments, 19 merges 843.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 735.2s _178: 8 segs, 106.6 K docs, 424.3 MB 681.8s _17u: 8 segs, 139.7 K docs, 556.4 MB 662.5s _181: 8 segs, 122.1 K docs, 486.1 MB 550.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 514.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 399.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 385.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 360.6s _1c0: 11 segs, 52.5 K docs, 208.0 MB 311.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 262.4s _1dc: 8 segs, 105.0 K docs, 417.5 MB 203.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 181.8s _1ea: 8 segs, 38.1 K docs, 150.7 MB 136.7s _1es: 8 segs, 39.3 K docs, 155.8 MB 116.8s _1ez: 8 segs, 145.8 K docs, 580.7 MB 99.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 76.3s _1fe: 8 segs, 74.4 K docs, 295.5 MB 55.2s _1fm: 8 segs, 72.3 K docs, 287.1 MB 45.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 50.0 sec: 182 segments, 19 merges 848.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 740.2s _178: 8 segs, 106.6 K docs, 424.3 MB 686.8s _17u: 8 segs, 139.7 K docs, 556.4 MB 667.5s _181: 8 segs, 122.1 K docs, 486.1 MB 555.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 519.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 404.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 390.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 365.7s _1c0: 11 segs, 52.5 K docs, 208.0 MB 316.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 267.4s _1dc: 8 segs, 105.0 K docs, 417.5 MB 208.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 186.8s _1ea: 8 segs, 38.1 K docs, 150.7 MB 141.7s _1es: 8 segs, 39.3 K docs, 155.8 MB 121.8s _1ez: 8 segs, 145.8 K docs, 580.7 MB 104.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 81.3s _1fe: 8 segs, 74.4 K docs, 295.5 MB 60.2s _1fm: 8 segs, 72.3 K docs, 287.1 MB 50.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 55.0 sec: 182 segments, 19 merges 853.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 745.2s _178: 8 segs, 106.6 K docs, 424.3 MB 691.8s _17u: 8 segs, 139.7 K docs, 556.4 MB 672.5s _181: 8 segs, 122.1 K docs, 486.1 MB 560.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 524.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 409.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 395.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 370.7s _1c0: 11 segs, 52.5 K docs, 208.0 MB 321.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 272.4s _1dc: 8 segs, 105.0 K docs, 417.5 MB 213.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 191.8s _1ea: 8 segs, 38.1 K docs, 150.7 MB 146.7s _1es: 8 segs, 39.3 K docs, 155.8 MB 126.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 109.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 86.3s _1fe: 8 segs, 74.4 K docs, 295.5 MB 65.2s _1fm: 8 segs, 72.3 K docs, 287.1 MB 55.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 60.0 sec: 182 segments, 19 merges 858.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 750.2s _178: 8 segs, 106.6 K docs, 424.3 MB 696.9s _17u: 8 segs, 139.7 K docs, 556.4 MB 677.6s _181: 8 segs, 122.1 K docs, 486.1 MB 565.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 529.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 414.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 400.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 375.7s _1c0: 11 segs, 52.5 K docs, 208.0 MB 326.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 277.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 218.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 196.8s _1ea: 8 segs, 38.1 K docs, 150.7 MB 151.7s _1es: 8 segs, 39.3 K docs, 155.8 MB 131.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 114.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 91.3s _1fe: 8 segs, 74.4 K docs, 295.5 MB 70.2s _1fm: 8 segs, 72.3 K docs, 287.1 MB 60.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 65.0 sec: 175 segments, 18 merges 863.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 755.2s _178: 8 segs, 106.6 K docs, 424.3 MB 701.9s _17u: 8 segs, 139.7 K docs, 556.4 MB 682.6s _181: 8 segs, 122.1 K docs, 486.1 MB 570.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 534.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 419.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 405.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 380.7s _1c0: 11 segs, 52.5 K docs, 208.0 MB 331.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 282.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 223.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 201.8s _1ea: 8 segs, 38.1 K docs, 150.7 MB 156.7s _1es: 8 segs, 39.3 K docs, 155.8 MB 136.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 119.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 75.2s _1fm: 8 segs, 72.3 K docs, 287.1 MB 65.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 70.1 sec: 175 segments, 18 merges 868.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 760.2s _178: 8 segs, 106.6 K docs, 424.3 MB 706.9s _17u: 8 segs, 139.7 K docs, 556.4 MB 687.6s _181: 8 segs, 122.1 K docs, 486.1 MB 575.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 539.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 424.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 410.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 385.7s _1c0: 11 segs, 52.5 K docs, 208.0 MB 336.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 287.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 228.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 206.8s _1ea: 8 segs, 38.1 K docs, 150.7 MB 161.7s _1es: 8 segs, 39.3 K docs, 155.8 MB 141.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 124.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 80.2s _1fm: 8 segs, 72.3 K docs, 287.1 MB 70.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 75.1 sec: 175 segments, 18 merges 873.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 765.2s _178: 8 segs, 106.6 K docs, 424.3 MB 711.9s _17u: 8 segs, 139.7 K docs, 556.4 MB 692.6s _181: 8 segs, 122.1 K docs, 486.1 MB 580.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 544.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 429.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 415.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 390.7s _1c0: 11 segs, 52.5 K docs, 208.0 MB 341.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 292.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 233.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 211.8s _1ea: 8 segs, 38.1 K docs, 150.7 MB 166.8s _1es: 8 segs, 39.3 K docs, 155.8 MB 146.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 129.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 85.2s _1fm: 8 segs, 72.3 K docs, 287.1 MB 75.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 80.1 sec: 175 segments, 18 merges 878.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 770.2s _178: 8 segs, 106.6 K docs, 424.3 MB 716.9s _17u: 8 segs, 139.7 K docs, 556.4 MB 697.6s _181: 8 segs, 122.1 K docs, 486.1 MB 585.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 549.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 434.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 420.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 395.7s _1c0: 11 segs, 52.5 K docs, 208.0 MB 346.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 297.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 238.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 216.8s _1ea: 8 segs, 38.1 K docs, 150.7 MB 171.8s _1es: 8 segs, 39.3 K docs, 155.8 MB 151.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 134.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 90.2s _1fm: 8 segs, 72.3 K docs, 287.1 MB 80.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 85.1 sec: 175 segments, 18 merges 883.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 775.2s _178: 8 segs, 106.6 K docs, 424.3 MB 721.9s _17u: 8 segs, 139.7 K docs, 556.4 MB 702.6s _181: 8 segs, 122.1 K docs, 486.1 MB 590.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 554.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 439.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 425.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 400.7s _1c0: 11 segs, 52.5 K docs, 208.0 MB 351.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 302.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 243.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 221.9s _1ea: 8 segs, 38.1 K docs, 150.7 MB 176.8s _1es: 8 segs, 39.3 K docs, 155.8 MB 156.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 139.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 95.2s _1fm: 8 segs, 72.3 K docs, 287.1 MB 85.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 90.1 sec: 175 segments, 18 merges 888.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 780.2s _178: 8 segs, 106.6 K docs, 424.3 MB 726.9s _17u: 8 segs, 139.7 K docs, 556.4 MB 707.6s _181: 8 segs, 122.1 K docs, 486.1 MB 595.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 559.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 444.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 430.7s _1bo: 12 segs, 58.8 K docs, 232.9 MB 405.7s _1c0: 11 segs, 52.5 K docs, 208.0 MB 356.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 307.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 248.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 226.9s _1ea: 8 segs, 38.1 K docs, 150.7 MB 181.8s _1es: 8 segs, 39.3 K docs, 155.8 MB 161.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 144.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 100.2s _1fm: 8 segs, 72.3 K docs, 287.1 MB 90.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 95.1 sec: 175 segments, 18 merges 893.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 785.2s _178: 8 segs, 106.6 K docs, 424.3 MB 731.9s _17u: 8 segs, 139.7 K docs, 556.4 MB 712.6s _181: 8 segs, 122.1 K docs, 486.1 MB 600.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 564.6s _19u: 8 segs, 179.9 K docs, 717.1 MB 449.3s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 435.7s _1bo: 12 segs, 58.8 K docs, 232.9 MB 410.7s _1c0: 11 segs, 52.5 K docs, 208.0 MB 361.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 312.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 253.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 231.9s _1ea: 8 segs, 38.1 K docs, 150.7 MB 186.8s _1es: 8 segs, 39.3 K docs, 155.8 MB 166.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 149.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 105.2s _1fm: 8 segs, 72.3 K docs, 287.1 MB 95.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 100.0 sec: 168 segments, 18 merges 898.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 790.2s _178: 8 segs, 106.6 K docs, 424.3 MB 736.8s _17u: 8 segs, 139.7 K docs, 556.4 MB 717.5s _181: 8 segs, 122.1 K docs, 486.1 MB 605.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 569.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 454.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 440.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 415.6s _1c0: 11 segs, 52.5 K docs, 208.0 MB 366.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 317.4s _1dc: 8 segs, 105.0 K docs, 417.5 MB 258.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 236.8s _1ea: 8 segs, 38.1 K docs, 150.7 MB 191.7s _1es: 8 segs, 39.3 K docs, 155.8 MB 171.8s _1ez: 8 segs, 145.8 K docs, 580.7 MB 154.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 100.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 0.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 105.0 sec: 161 segments, 17 merges 903.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 795.2s _178: 8 segs, 106.6 K docs, 424.3 MB 741.8s _17u: 8 segs, 139.7 K docs, 556.4 MB 722.5s _181: 8 segs, 122.1 K docs, 486.1 MB 610.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 574.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 459.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 445.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 420.7s _1c0: 11 segs, 52.5 K docs, 208.0 MB 371.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 322.4s _1dc: 8 segs, 105.0 K docs, 417.5 MB 263.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 241.8s _1ea: 8 segs, 38.1 K docs, 150.7 MB 176.8s _1ez: 8 segs, 145.8 K docs, 580.7 MB 159.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 105.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 5.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 110.0 sec: 151 segments, 16 merges 908.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 800.2s _178: 8 segs, 106.6 K docs, 424.3 MB 746.8s _17u: 8 segs, 139.7 K docs, 556.4 MB 727.5s _181: 8 segs, 122.1 K docs, 486.1 MB 615.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 579.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 464.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 450.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 376.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 327.4s _1dc: 8 segs, 105.0 K docs, 417.5 MB 268.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 246.8s _1ea: 8 segs, 38.1 K docs, 150.7 MB 181.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 164.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 110.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 10.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 115.0 sec: 151 segments, 16 merges 913.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 805.2s _178: 8 segs, 106.6 K docs, 424.3 MB 751.9s _17u: 8 segs, 139.7 K docs, 556.4 MB 732.6s _181: 8 segs, 122.1 K docs, 486.1 MB 620.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 584.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 469.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 455.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 381.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 332.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 273.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 251.8s _1ea: 8 segs, 38.1 K docs, 150.7 MB 186.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 169.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 115.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 15.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 120.0 sec: 151 segments, 16 merges 918.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 810.2s _178: 8 segs, 106.6 K docs, 424.3 MB 756.9s _17u: 8 segs, 139.7 K docs, 556.4 MB 737.6s _181: 8 segs, 122.1 K docs, 486.1 MB 625.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 589.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 474.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 460.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 386.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 337.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 278.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 256.8s _1ea: 8 segs, 38.1 K docs, 150.7 MB 191.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 174.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 120.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 20.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 125.1 sec: 151 segments, 16 merges 923.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 815.2s _178: 8 segs, 106.6 K docs, 424.3 MB 761.9s _17u: 8 segs, 139.7 K docs, 556.4 MB 742.6s _181: 8 segs, 122.1 K docs, 486.1 MB 630.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 594.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 479.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 465.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 391.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 342.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 283.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 261.8s _1ea: 8 segs, 38.1 K docs, 150.7 MB 196.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 179.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 125.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 25.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 130.1 sec: 144 segments, 15 merges 928.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 820.2s _178: 8 segs, 106.6 K docs, 424.3 MB 747.6s _181: 8 segs, 122.1 K docs, 486.1 MB 635.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 599.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 484.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 470.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 396.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 347.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 288.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 266.8s _1ea: 8 segs, 38.1 K docs, 150.7 MB 201.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 184.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 130.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 30.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 135.1 sec: 137 segments, 14 merges 933.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 825.2s _178: 8 segs, 106.6 K docs, 424.3 MB 752.6s _181: 8 segs, 122.1 K docs, 486.1 MB 640.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 604.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 489.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 475.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 401.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 352.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 293.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 206.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 189.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 135.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 35.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 140.1 sec: 137 segments, 14 merges 938.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 830.2s _178: 8 segs, 106.6 K docs, 424.3 MB 757.6s _181: 8 segs, 122.1 K docs, 486.1 MB 645.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 609.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 494.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 480.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 406.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 357.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 298.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 211.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 194.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 140.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 40.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 145.1 sec: 137 segments, 14 merges 943.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 835.2s _178: 8 segs, 106.6 K docs, 424.3 MB 762.6s _181: 8 segs, 122.1 K docs, 486.1 MB 650.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 614.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 499.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 485.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 411.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 362.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 303.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 216.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 199.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 145.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 45.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 150.1 sec: 137 segments, 14 merges 948.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 840.2s _178: 8 segs, 106.6 K docs, 424.3 MB 767.6s _181: 8 segs, 122.1 K docs, 486.1 MB 655.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 619.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 504.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 490.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 416.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 367.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 308.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 221.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 204.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 150.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 50.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 155.1 sec: 137 segments, 14 merges 953.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 845.2s _178: 8 segs, 106.6 K docs, 424.3 MB 772.6s _181: 8 segs, 122.1 K docs, 486.1 MB 660.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 624.6s _19u: 8 segs, 179.9 K docs, 717.1 MB 509.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 495.7s _1bo: 12 segs, 58.8 K docs, 232.9 MB 421.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 372.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 313.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 226.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 209.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 155.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 55.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 160.1 sec: 137 segments, 14 merges 958.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 850.2s _178: 8 segs, 106.6 K docs, 424.3 MB 777.6s _181: 8 segs, 122.1 K docs, 486.1 MB 665.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 629.6s _19u: 8 segs, 179.9 K docs, 717.1 MB 514.3s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 500.7s _1bo: 12 segs, 58.8 K docs, 232.9 MB 426.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 377.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 318.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 231.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 214.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 160.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 60.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 165.1 sec: 137 segments, 14 merges 963.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 855.2s _178: 8 segs, 106.6 K docs, 424.3 MB 782.6s _181: 8 segs, 122.1 K docs, 486.1 MB 670.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 634.6s _19u: 8 segs, 179.9 K docs, 717.1 MB 519.3s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 505.7s _1bo: 12 segs, 58.8 K docs, 232.9 MB 431.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 382.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 323.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 236.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 219.4s _1f6: 8 segs, 153.7 K docs, 612.2 MB 165.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 65.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 170.0 sec: 137 segments, 14 merges 968.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 860.2s _178: 8 segs, 106.6 K docs, 424.3 MB 787.5s _181: 8 segs, 122.1 K docs, 486.1 MB 675.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 639.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 524.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 510.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 436.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 387.4s _1dc: 8 segs, 105.0 K docs, 417.5 MB 328.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 241.8s _1ez: 8 segs, 145.8 K docs, 580.7 MB 224.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 170.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 70.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 175.0 sec: 137 segments, 14 merges 973.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 865.2s _178: 8 segs, 106.6 K docs, 424.3 MB 792.5s _181: 8 segs, 122.1 K docs, 486.1 MB 680.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 644.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 529.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 515.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 441.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 392.4s _1dc: 8 segs, 105.0 K docs, 417.5 MB 333.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 246.8s _1ez: 8 segs, 145.8 K docs, 580.7 MB 229.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 175.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 75.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 180.0 sec: 137 segments, 14 merges 978.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 870.2s _178: 8 segs, 106.6 K docs, 424.3 MB 797.5s _181: 8 segs, 122.1 K docs, 486.1 MB 685.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 649.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 534.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 520.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 446.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 397.4s _1dc: 8 segs, 105.0 K docs, 417.5 MB 338.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 251.8s _1ez: 8 segs, 145.8 K docs, 580.7 MB 234.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 180.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 80.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 185.0 sec: 137 segments, 14 merges 983.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 875.2s _178: 8 segs, 106.6 K docs, 424.3 MB 802.5s _181: 8 segs, 122.1 K docs, 486.1 MB 690.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 654.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 539.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 525.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 451.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 402.4s _1dc: 8 segs, 105.0 K docs, 417.5 MB 343.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 256.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 239.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 185.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 85.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 190.0 sec: 137 segments, 14 merges 988.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 880.2s _178: 8 segs, 106.6 K docs, 424.3 MB 807.5s _181: 8 segs, 122.1 K docs, 486.1 MB 695.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 659.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 544.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 530.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 456.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 407.4s _1dc: 8 segs, 105.0 K docs, 417.5 MB 348.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 261.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 244.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 190.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 90.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 195.0 sec: 130 segments, 13 merges 993.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 812.6s _181: 8 segs, 122.1 K docs, 486.1 MB 700.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 664.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 549.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 535.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 461.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 412.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 353.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 266.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 249.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 195.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 95.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 200.0 sec: 130 segments, 13 merges 998.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 817.6s _181: 8 segs, 122.1 K docs, 486.1 MB 705.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 669.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 554.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 540.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 466.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 417.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 358.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 271.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 254.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 200.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 100.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 205.0 sec: 130 segments, 13 merges 1003.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 822.6s _181: 8 segs, 122.1 K docs, 486.1 MB 710.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 674.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 559.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 545.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 471.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 422.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 363.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 276.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 259.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 205.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 105.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 210.1 sec: 130 segments, 13 merges 1008.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 827.6s _181: 8 segs, 122.1 K docs, 486.1 MB 715.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 679.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 564.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 550.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 476.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 427.5s _1dc: 8 segs, 105.0 K docs, 417.5 MB 368.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 281.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 264.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 210.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 110.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 215.1 sec: 123 segments, 12 merges 1013.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 832.6s _181: 8 segs, 122.1 K docs, 486.1 MB 720.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 684.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 569.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 555.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 481.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 373.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 286.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 269.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 215.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 115.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 220.1 sec: 123 segments, 12 merges 1018.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 837.6s _181: 8 segs, 122.1 K docs, 486.1 MB 725.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 689.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 574.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 560.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 486.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 378.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 291.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 274.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 220.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 120.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 225.1 sec: 123 segments, 12 merges 1023.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 842.6s _181: 8 segs, 122.1 K docs, 486.1 MB 730.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 694.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 579.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 565.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 491.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 383.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 296.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 279.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 225.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 125.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 230.1 sec: 123 segments, 12 merges 1028.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 847.6s _181: 8 segs, 122.1 K docs, 486.1 MB 735.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 699.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 584.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 570.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 496.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 388.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 301.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 284.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 230.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 130.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 235.1 sec: 123 segments, 12 merges 1033.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 852.6s _181: 8 segs, 122.1 K docs, 486.1 MB 740.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 704.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 589.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 575.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 501.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 393.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 306.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 289.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 235.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 135.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 240.1 sec: 123 segments, 12 merges 1038.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 857.6s _181: 8 segs, 122.1 K docs, 486.1 MB 745.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 709.6s _19u: 8 segs, 179.9 K docs, 717.1 MB 594.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 580.7s _1bo: 12 segs, 58.8 K docs, 232.9 MB 506.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 398.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 311.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 294.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 240.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 140.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 245.1 sec: 123 segments, 12 merges 1043.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 862.6s _181: 8 segs, 122.1 K docs, 486.1 MB 750.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 714.6s _19u: 8 segs, 179.9 K docs, 717.1 MB 599.3s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 585.7s _1bo: 12 segs, 58.8 K docs, 232.9 MB 511.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 403.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 316.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 299.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 245.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 145.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 250.0 sec: 123 segments, 12 merges 1048.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 867.5s _181: 8 segs, 122.1 K docs, 486.1 MB 755.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 719.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 604.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 590.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 516.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 408.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 321.8s _1ez: 8 segs, 145.8 K docs, 580.7 MB 304.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 250.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 150.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 255.0 sec: 123 segments, 12 merges 1053.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 872.5s _181: 8 segs, 122.1 K docs, 486.1 MB 760.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 724.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 609.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 595.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 521.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 413.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 326.8s _1ez: 8 segs, 145.8 K docs, 580.7 MB 309.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 255.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 155.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 260.0 sec: 123 segments, 12 merges 1058.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 877.5s _181: 8 segs, 122.1 K docs, 486.1 MB 765.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 729.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 614.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 600.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 526.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 418.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 331.8s _1ez: 8 segs, 145.8 K docs, 580.7 MB 314.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 260.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 160.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 265.0 sec: 123 segments, 12 merges 1063.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 882.5s _181: 8 segs, 122.1 K docs, 486.1 MB 770.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 734.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 619.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 605.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 531.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 423.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 336.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 319.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 265.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 165.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 270.0 sec: 123 segments, 12 merges 1068.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 887.5s _181: 8 segs, 122.1 K docs, 486.1 MB 775.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 739.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 624.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 610.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 536.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 428.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 341.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 324.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 270.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 170.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 275.0 sec: 123 segments, 12 merges 1073.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 892.6s _181: 8 segs, 122.1 K docs, 486.1 MB 780.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 744.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 629.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 615.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 541.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 433.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 346.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 329.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 275.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 175.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 280.0 sec: 123 segments, 12 merges 1078.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 897.6s _181: 8 segs, 122.1 K docs, 486.1 MB 785.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 749.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 634.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 620.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 546.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 438.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 351.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 334.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 280.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 180.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 285.0 sec: 123 segments, 12 merges 1083.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 902.6s _181: 8 segs, 122.1 K docs, 486.1 MB 790.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 754.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 639.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 625.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 551.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 443.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 356.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 339.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 285.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 185.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 290.1 sec: 123 segments, 12 merges 1088.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 907.6s _181: 8 segs, 122.1 K docs, 486.1 MB 795.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 759.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 644.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 630.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 556.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 448.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 361.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 344.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 290.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 190.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 295.1 sec: 123 segments, 12 merges 1093.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 912.6s _181: 8 segs, 122.1 K docs, 486.1 MB 800.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 764.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 649.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 635.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 561.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 453.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 366.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 349.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 295.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 195.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 300.1 sec: 123 segments, 12 merges 1098.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 917.6s _181: 8 segs, 122.1 K docs, 486.1 MB 805.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 769.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 654.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 640.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 566.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 458.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 371.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 354.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 300.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 200.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 305.1 sec: 123 segments, 12 merges 1103.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 922.6s _181: 8 segs, 122.1 K docs, 486.1 MB 810.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 774.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 659.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 645.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 571.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 463.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 376.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 359.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 305.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 205.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 310.1 sec: 123 segments, 12 merges 1108.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 927.6s _181: 8 segs, 122.1 K docs, 486.1 MB 815.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 779.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 664.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 650.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 576.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 468.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 381.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 364.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 310.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 210.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 315.1 sec: 123 segments, 12 merges 1113.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 932.6s _181: 8 segs, 122.1 K docs, 486.1 MB 820.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 784.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 669.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 655.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 581.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 473.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 386.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 369.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 315.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 215.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 320.1 sec: 123 segments, 12 merges 1118.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 937.6s _181: 8 segs, 122.1 K docs, 486.1 MB 825.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 789.6s _19u: 8 segs, 179.9 K docs, 717.1 MB 674.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 660.7s _1bo: 12 segs, 58.8 K docs, 232.9 MB 586.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 478.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 391.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 374.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 320.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 220.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 325.1 sec: 123 segments, 12 merges 1123.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 942.6s _181: 8 segs, 122.1 K docs, 486.1 MB 830.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 794.6s _19u: 8 segs, 179.9 K docs, 717.1 MB 679.3s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 665.7s _1bo: 12 segs, 58.8 K docs, 232.9 MB 591.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 483.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 396.9s _1ez: 8 segs, 145.8 K docs, 580.7 MB 379.4s _1f6: 8 segs, 153.7 K docs, 612.2 MB 325.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 225.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 330.0 sec: 123 segments, 12 merges 1128.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 947.5s _181: 8 segs, 122.1 K docs, 486.1 MB 835.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 799.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 684.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 670.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 596.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 488.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 401.8s _1ez: 8 segs, 145.8 K docs, 580.7 MB 384.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 330.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 230.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 335.0 sec: 116 segments, 11 merges 1133.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 952.5s _181: 8 segs, 122.1 K docs, 486.1 MB 840.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 804.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 689.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 675.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 601.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 493.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 389.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 335.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 235.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 340.0 sec: 116 segments, 11 merges 1138.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 957.5s _181: 8 segs, 122.1 K docs, 486.1 MB 845.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 809.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 694.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 680.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 606.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 498.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 394.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 340.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 240.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 345.0 sec: 116 segments, 11 merges 1143.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 962.5s _181: 8 segs, 122.1 K docs, 486.1 MB 850.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 814.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 699.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 685.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 611.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 503.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 399.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 345.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 245.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 350.0 sec: 116 segments, 11 merges 1148.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 967.5s _181: 8 segs, 122.1 K docs, 486.1 MB 855.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 819.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 704.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 690.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 616.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 508.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 404.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 350.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 250.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 355.0 sec: 116 segments, 11 merges 1153.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 972.6s _181: 8 segs, 122.1 K docs, 486.1 MB 860.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 824.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 709.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 695.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 621.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 513.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 409.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 355.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 255.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 360.1 sec: 116 segments, 11 merges 1158.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 977.6s _181: 8 segs, 122.1 K docs, 486.1 MB 865.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 829.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 714.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 700.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 626.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 518.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 414.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 360.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 260.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 365.1 sec: 116 segments, 11 merges 1163.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 982.6s _181: 8 segs, 122.1 K docs, 486.1 MB 870.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 834.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 719.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 705.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 631.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 523.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 419.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 365.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 265.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 370.1 sec: 116 segments, 11 merges 1168.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 987.6s _181: 8 segs, 122.1 K docs, 486.1 MB 875.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 839.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 724.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 710.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 636.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 528.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 424.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 370.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 270.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 375.1 sec: 116 segments, 11 merges 1173.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 992.6s _181: 8 segs, 122.1 K docs, 486.1 MB 880.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 844.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 729.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 715.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 641.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 533.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 429.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 375.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 275.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 380.1 sec: 116 segments, 11 merges 1178.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 997.6s _181: 8 segs, 122.1 K docs, 486.1 MB 885.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 849.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 734.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 720.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 646.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 538.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 434.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 380.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 280.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 385.1 sec: 116 segments, 11 merges 1183.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1002.6s _181: 8 segs, 122.1 K docs, 486.1 MB 890.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 854.6s _19u: 8 segs, 179.9 K docs, 717.1 MB 739.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 725.7s _1bo: 12 segs, 58.8 K docs, 232.9 MB 651.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 543.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 439.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 385.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 285.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 390.0 sec: 116 segments, 11 merges 1188.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1007.5s _181: 8 segs, 122.1 K docs, 486.1 MB 895.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 859.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 744.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 730.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 656.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 548.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 444.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 390.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 290.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 395.0 sec: 116 segments, 11 merges 1193.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1012.5s _181: 8 segs, 122.1 K docs, 486.1 MB 900.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 864.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 749.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 735.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 661.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 553.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 449.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 395.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 295.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 400.0 sec: 116 segments, 11 merges 1198.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1017.5s _181: 8 segs, 122.1 K docs, 486.1 MB 905.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 869.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 754.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 740.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 666.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 558.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 454.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 400.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 300.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 405.0 sec: 116 segments, 11 merges 1203.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1022.5s _181: 8 segs, 122.1 K docs, 486.1 MB 910.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 874.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 759.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 745.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 671.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 563.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 459.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 405.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 305.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 410.0 sec: 116 segments, 11 merges 1208.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1027.6s _181: 8 segs, 122.1 K docs, 486.1 MB 915.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 879.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 764.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 750.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 676.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 568.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 464.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 410.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 310.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 415.0 sec: 116 segments, 11 merges 1213.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1032.6s _181: 8 segs, 122.1 K docs, 486.1 MB 920.3s _19e: 8 segs, 108.0 K docs, 429.7 MB 884.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 769.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 755.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 681.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 573.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 469.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 415.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 315.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 420.0 sec: 116 segments, 11 merges 1218.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1037.5s _181: 8 segs, 122.1 K docs, 486.1 MB 925.2s _19e: 8 segs, 108.0 K docs, 429.7 MB 889.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 774.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 760.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 686.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 578.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 474.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 420.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 320.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 425.0 sec: 109 segments, 11 merges 1223.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1042.6s _181: 8 segs, 122.1 K docs, 486.1 MB 894.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 779.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 765.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 691.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 583.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 479.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 425.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 325.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 1.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 430.0 sec: 109 segments, 11 merges 1228.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1047.6s _181: 8 segs, 122.1 K docs, 486.1 MB 899.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 784.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 770.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 696.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 588.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 484.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 430.0s _1fq: 11 segs, 41.3 K docs, 163.6 MB 330.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 6.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 435.1 sec: 109 segments, 11 merges 1233.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1052.6s _181: 8 segs, 122.1 K docs, 486.1 MB 904.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 789.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 775.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 701.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 593.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 489.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 435.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 335.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 11.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 440.1 sec: 109 segments, 11 merges 1238.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1057.6s _181: 8 segs, 122.1 K docs, 486.1 MB 909.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 794.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 780.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 706.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 598.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 494.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 440.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 340.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 16.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 445.1 sec: 109 segments, 11 merges 1243.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1062.6s _181: 8 segs, 122.1 K docs, 486.1 MB 914.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 799.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 785.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 711.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 603.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 499.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 445.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 345.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 21.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 450.1 sec: 109 segments, 11 merges 1248.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1067.6s _181: 8 segs, 122.1 K docs, 486.1 MB 919.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 804.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 790.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 716.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 608.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 504.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 450.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 350.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 26.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 455.1 sec: 109 segments, 11 merges 1253.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1072.6s _181: 8 segs, 122.1 K docs, 486.1 MB 924.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 809.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 795.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 721.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 613.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 509.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 455.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 355.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 31.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 460.1 sec: 109 segments, 11 merges 1258.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1077.6s _181: 8 segs, 122.1 K docs, 486.1 MB 929.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 814.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 800.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 726.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 618.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 514.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 460.1s _1fq: 11 segs, 41.3 K docs, 163.6 MB 360.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 36.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 465.1 sec: 99 segments, 10 merges 1263.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1082.6s _181: 8 segs, 122.1 K docs, 486.1 MB 934.6s _19u: 8 segs, 179.9 K docs, 717.1 MB 819.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 805.7s _1bo: 12 segs, 58.8 K docs, 232.9 MB 731.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 623.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 519.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 365.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 41.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 470.1 sec: 99 segments, 10 merges 1268.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1087.6s _181: 8 segs, 122.1 K docs, 486.1 MB 939.6s _19u: 8 segs, 179.9 K docs, 717.1 MB 824.3s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 810.7s _1bo: 12 segs, 58.8 K docs, 232.9 MB 736.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 628.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 524.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 370.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 46.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 475.1 sec: 99 segments, 10 merges 1273.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1092.6s _181: 8 segs, 122.1 K docs, 486.1 MB 944.6s _19u: 8 segs, 179.9 K docs, 717.1 MB 829.3s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 815.7s _1bo: 12 segs, 58.8 K docs, 232.9 MB 741.4s _1cm: 10 segs, 50.3 K docs, 199.1 MB 633.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 529.4s _1f6: 8 segs, 153.7 K docs, 612.2 MB 375.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 51.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 480.0 sec: 99 segments, 10 merges 1278.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1097.5s _181: 8 segs, 122.1 K docs, 486.1 MB 949.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 834.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 820.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 746.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 638.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 534.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 380.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 56.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 485.0 sec: 99 segments, 10 merges 1283.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1102.5s _181: 8 segs, 122.1 K docs, 486.1 MB 954.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 839.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 825.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 751.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 643.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 539.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 385.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 61.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 490.0 sec: 92 segments, 9 merges 1288.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 959.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 844.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 830.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 756.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 648.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 544.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 390.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 66.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 495.0 sec: 92 segments, 9 merges 1293.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 964.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 849.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 835.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 761.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 653.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 549.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 395.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 71.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 500.0 sec: 92 segments, 9 merges 1298.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 969.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 854.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 840.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 766.3s _1cm: 10 segs, 50.3 K docs, 199.1 MB 658.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 554.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 400.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 76.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 505.0 sec: 83 segments, 8 merges 1303.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 974.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 859.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 845.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 663.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 559.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 405.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 81.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 510.0 sec: 83 segments, 8 merges 1308.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 979.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 864.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 850.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 668.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 564.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 410.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 86.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 515.0 sec: 83 segments, 8 merges 1313.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 984.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 869.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 855.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 673.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 569.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 415.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 91.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 520.1 sec: 83 segments, 8 merges 1318.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 989.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 874.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 860.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 678.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 574.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 420.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 96.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 525.1 sec: 83 segments, 8 merges 1323.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 994.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 879.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 865.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 683.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 579.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 425.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 101.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 530.1 sec: 83 segments, 8 merges 1328.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 999.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 884.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 870.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 688.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 584.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 430.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 106.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 535.1 sec: 83 segments, 8 merges 1333.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1004.6s _19u: 8 segs, 179.9 K docs, 717.1 MB 889.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 875.7s _1bo: 12 segs, 58.8 K docs, 232.9 MB 693.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 589.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 435.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 111.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 540.1 sec: 83 segments, 8 merges 1338.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1009.6s _19u: 8 segs, 179.9 K docs, 717.1 MB 894.3s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 880.7s _1bo: 12 segs, 58.8 K docs, 232.9 MB 698.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 594.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 440.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 116.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 545.1 sec: 83 segments, 8 merges 1343.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1014.6s _19u: 8 segs, 179.9 K docs, 717.1 MB 899.3s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 885.7s _1bo: 12 segs, 58.8 K docs, 232.9 MB 703.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 599.4s _1f6: 8 segs, 153.7 K docs, 612.2 MB 445.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 121.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 550.0 sec: 83 segments, 8 merges 1348.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1019.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 904.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 890.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 708.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 604.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 450.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 126.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 555.0 sec: 83 segments, 8 merges 1353.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1024.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 909.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 895.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 713.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 609.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 455.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 131.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 560.0 sec: 83 segments, 8 merges 1358.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1029.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 914.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 900.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 718.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 614.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 460.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 136.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 565.0 sec: 83 segments, 8 merges 1363.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1034.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 919.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 905.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 723.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 619.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 465.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 141.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 570.0 sec: 83 segments, 8 merges 1368.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1039.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 924.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 910.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 728.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 624.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 470.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 146.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 575.0 sec: 83 segments, 8 merges 1373.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1044.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 929.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 915.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 733.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 629.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 475.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 151.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 580.0 sec: 83 segments, 8 merges 1378.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1049.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 934.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 920.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 738.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 634.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 480.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 156.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 585.0 sec: 83 segments, 8 merges 1383.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1054.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 939.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 925.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 743.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 639.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 485.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 161.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 590.0 sec: 83 segments, 8 merges 1388.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1059.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 944.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 930.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 748.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 644.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 490.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 166.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 595.1 sec: 83 segments, 8 merges 1393.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1064.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 949.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 935.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 753.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 649.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 495.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 171.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 600.1 sec: 83 segments, 8 merges 1398.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1069.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 954.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 940.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 758.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 654.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 500.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 176.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 605.1 sec: 83 segments, 8 merges 1403.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1074.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 959.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 945.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 763.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 659.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 505.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 181.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 610.1 sec: 83 segments, 8 merges 1408.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1079.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 964.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 950.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 768.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 664.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 510.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 186.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 615.1 sec: 83 segments, 8 merges 1413.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1084.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 969.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 955.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 773.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 669.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 515.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 191.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 620.1 sec: 83 segments, 8 merges 1418.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1089.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 974.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 960.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 778.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 674.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 520.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 196.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 625.1 sec: 83 segments, 8 merges 1423.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1094.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 979.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 965.7s _1bo: 12 segs, 58.8 K docs, 232.9 MB 783.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 679.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 525.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 201.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 630.1 sec: 83 segments, 8 merges 1428.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1099.6s _19u: 8 segs, 179.9 K docs, 717.1 MB 984.3s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 970.7s _1bo: 12 segs, 58.8 K docs, 232.9 MB 788.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 684.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 530.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 206.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 635.1 sec: 83 segments, 8 merges 1433.9s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1104.6s _19u: 8 segs, 179.9 K docs, 717.1 MB 989.3s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 975.7s _1bo: 12 segs, 58.8 K docs, 232.9 MB 793.9s _1e1: 8 segs, 107.0 K docs, 425.7 MB 689.4s _1f6: 8 segs, 153.7 K docs, 612.2 MB 535.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 211.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 640.0 sec: 83 segments, 8 merges 1438.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1109.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 994.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 980.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 798.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 694.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 540.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 216.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 645.0 sec: 83 segments, 8 merges 1443.8s _15r: 8 segs, 1208.3 K docs, 4828.2 MB 1114.5s _19u: 8 segs, 179.9 K docs, 717.1 MB 999.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 985.6s _1bo: 12 segs, 58.8 K docs, 232.9 MB 803.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 699.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 545.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 221.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 650.0 sec: 58 segments, 5 merges 1004.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 808.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 704.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 550.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 226.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 655.0 sec: 58 segments, 5 merges 1009.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 813.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 709.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 555.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 231.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 660.0 sec: 58 segments, 5 merges 1014.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 818.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 714.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 560.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 236.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 665.0 sec: 58 segments, 5 merges 1019.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 823.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 719.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 565.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 241.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 670.0 sec: 58 segments, 5 merges 1024.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 828.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 724.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 570.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 246.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 675.0 sec: 58 segments, 5 merges 1029.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 833.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 729.3s _1f6: 8 segs, 153.7 K docs, 612.2 MB 575.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 251.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 680.1 sec: 51 segments, 4 merges 1034.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 838.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 580.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 256.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 685.1 sec: 51 segments, 4 merges 1039.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 843.8s _1e1: 8 segs, 107.0 K docs, 425.7 MB 585.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 261.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 690.1 sec: 44 segments, 4 merges 1044.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 590.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 266.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 0.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 695.1 sec: 44 segments, 4 merges 1049.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 595.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 271.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 5.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 700.1 sec: 44 segments, 4 merges 1054.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 600.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 276.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 10.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 705.1 sec: 44 segments, 4 merges 1059.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 605.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 281.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 15.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 710.1 sec: 44 segments, 4 merges 1064.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 610.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 286.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 20.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 715.1 sec: 44 segments, 4 merges 1069.3s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 615.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 291.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 25.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 720.0 sec: 44 segments, 4 merges 1074.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 620.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 296.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 30.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 725.0 sec: 44 segments, 4 merges 1079.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 625.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 301.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 35.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 730.0 sec: 44 segments, 4 merges 1084.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 630.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 306.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 40.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 735.0 sec: 44 segments, 4 merges 1089.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 635.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 311.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 45.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 740.0 sec: 44 segments, 4 merges 1094.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 640.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 316.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 50.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 745.0 sec: 44 segments, 4 merges 1099.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 645.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 321.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 55.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 750.0 sec: 44 segments, 4 merges 1104.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 650.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 326.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 60.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 755.0 sec: 44 segments, 4 merges 1109.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 655.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 331.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 65.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 760.1 sec: 44 segments, 4 merges 1114.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 660.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 336.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 70.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 765.1 sec: 44 segments, 4 merges 1119.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 665.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 341.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 75.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 770.1 sec: 44 segments, 4 merges 1124.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 670.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 346.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 80.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 775.1 sec: 44 segments, 4 merges 1129.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 675.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 351.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 85.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 780.1 sec: 44 segments, 4 merges 1134.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 680.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 356.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 90.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 785.1 sec: 44 segments, 4 merges 1139.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 685.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 361.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 95.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 790.1 sec: 44 segments, 4 merges 1144.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 690.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 366.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 100.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 795.1 sec: 44 segments, 4 merges 1149.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 695.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 371.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 105.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 800.1 sec: 44 segments, 4 merges 1154.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 700.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 376.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 110.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 805.1 sec: 44 segments, 4 merges 1159.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 705.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 381.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 115.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 810.1 sec: 44 segments, 4 merges 1164.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 710.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 386.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 120.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 815.1 sec: 44 segments, 4 merges 1169.3s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 715.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 391.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 125.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 820.1 sec: 44 segments, 4 merges 1174.3s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 720.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 396.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 130.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 825.0 sec: 44 segments, 4 merges 1179.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 725.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 401.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 135.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 830.0 sec: 44 segments, 4 merges 1184.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 730.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 406.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 140.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 835.0 sec: 44 segments, 4 merges 1189.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 735.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 411.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 145.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 840.0 sec: 44 segments, 4 merges 1194.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 740.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 416.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 150.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 845.0 sec: 44 segments, 4 merges 1199.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 745.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 421.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 155.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 850.0 sec: 44 segments, 4 merges 1204.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 750.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 426.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 160.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 855.0 sec: 44 segments, 4 merges 1209.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 755.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 431.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 165.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 860.0 sec: 44 segments, 4 merges 1214.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 760.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 436.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 170.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 865.0 sec: 44 segments, 4 merges 1219.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 765.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 441.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 175.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 870.0 sec: 44 segments, 4 merges 1224.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 770.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 446.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 180.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 875.0 sec: 44 segments, 4 merges 1229.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 775.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 451.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 185.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 880.1 sec: 44 segments, 4 merges 1234.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 780.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 456.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 190.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 885.1 sec: 44 segments, 4 merges 1239.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 785.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 461.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 195.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 890.1 sec: 44 segments, 4 merges 1244.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 790.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 466.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 200.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 895.1 sec: 44 segments, 4 merges 1249.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 795.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 471.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 205.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 900.1 sec: 44 segments, 4 merges 1254.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 800.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 476.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 210.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 905.1 sec: 44 segments, 4 merges 1259.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 805.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 481.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 215.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 910.1 sec: 44 segments, 4 merges 1264.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 810.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 486.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 220.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 915.1 sec: 44 segments, 4 merges 1269.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 815.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 491.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 225.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 920.1 sec: 44 segments, 4 merges 1274.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 820.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 496.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 230.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 925.1 sec: 44 segments, 4 merges 1279.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 825.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 501.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 235.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 930.1 sec: 44 segments, 4 merges 1284.3s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 830.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 506.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 240.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 935.0 sec: 44 segments, 4 merges 1289.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 835.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 511.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 245.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 940.0 sec: 44 segments, 4 merges 1294.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 840.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 516.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 250.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 945.0 sec: 44 segments, 4 merges 1299.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 845.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 521.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 255.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 950.0 sec: 44 segments, 4 merges 1304.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 850.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 526.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 260.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 955.0 sec: 44 segments, 4 merges 1309.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 855.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 531.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 265.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 960.0 sec: 44 segments, 4 merges 1314.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 860.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 536.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 270.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 965.0 sec: 44 segments, 4 merges 1319.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 865.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 541.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 275.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 970.0 sec: 44 segments, 4 merges 1324.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 870.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 546.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 280.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 975.0 sec: 44 segments, 4 merges 1329.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 875.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 551.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 285.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 980.0 sec: 44 segments, 4 merges 1334.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 880.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 556.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 290.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 985.0 sec: 44 segments, 4 merges 1339.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 885.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 561.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 295.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 990.0 sec: 44 segments, 4 merges 1344.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 890.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 566.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 300.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 995.1 sec: 44 segments, 4 merges 1349.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 895.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 571.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 305.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1000.1 sec: 44 segments, 4 merges 1354.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 900.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 576.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 310.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1005.1 sec: 44 segments, 4 merges 1359.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 905.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 581.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 315.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1010.1 sec: 44 segments, 4 merges 1364.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 910.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 586.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 320.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1015.1 sec: 44 segments, 4 merges 1369.3s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 915.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 591.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 325.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1020.1 sec: 44 segments, 4 merges 1374.3s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 920.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 596.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 330.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1025.0 sec: 44 segments, 4 merges 1379.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 925.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 601.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 335.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1030.0 sec: 44 segments, 4 merges 1384.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 930.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 606.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 340.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1035.0 sec: 44 segments, 4 merges 1389.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 935.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 611.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 345.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1040.0 sec: 44 segments, 4 merges 1394.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 940.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 616.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 350.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1045.0 sec: 44 segments, 4 merges 1399.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 945.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 621.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 355.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1050.0 sec: 44 segments, 4 merges 1404.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 950.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 626.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 360.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1055.0 sec: 44 segments, 4 merges 1409.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 955.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 631.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 365.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1060.0 sec: 44 segments, 4 merges 1414.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 960.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 636.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 370.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1065.0 sec: 44 segments, 4 merges 1419.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 965.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 641.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 375.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1070.0 sec: 44 segments, 4 merges 1424.2s _1bh: 8 segs, 1177.1 K docs, 4704.0 MB 970.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 646.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 380.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1075.1 sec: 37 segments, 3 merges 975.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 651.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 385.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1080.1 sec: 37 segments, 3 merges 980.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 656.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 390.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1085.1 sec: 37 segments, 3 merges 985.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 661.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 395.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1090.1 sec: 37 segments, 3 merges 990.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 666.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 400.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1095.1 sec: 37 segments, 3 merges 995.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 671.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 405.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1100.1 sec: 37 segments, 3 merges 1000.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 676.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 410.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1105.1 sec: 37 segments, 3 merges 1005.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 681.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 415.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1110.1 sec: 37 segments, 3 merges 1010.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 686.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 420.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1115.1 sec: 37 segments, 3 merges 1015.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 691.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 425.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1120.1 sec: 37 segments, 3 merges 1020.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 696.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 430.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1125.1 sec: 37 segments, 3 merges 1025.1s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 701.5s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 435.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1130.0 sec: 37 segments, 3 merges 1030.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 706.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 440.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1135.0 sec: 37 segments, 3 merges 1035.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 711.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 445.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1140.0 sec: 37 segments, 3 merges 1040.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 716.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 450.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1145.0 sec: 37 segments, 3 merges 1045.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 721.4s _1fs: 8 segs, 540.0 K docs, 2155.1 MB 455.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1150.0 sec: 30 segments, 2 merges 1050.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 460.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1155.0 sec: 30 segments, 2 merges 1055.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 465.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1160.0 sec: 30 segments, 2 merges 1060.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 470.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1165.0 sec: 30 segments, 2 merges 1065.0s _1fr: 8 segs, 725.3 K docs, 2896.2 MB 475.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1170.0 sec: 23 segments, 1 merges 480.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1175.0 sec: 23 segments, 1 merges 485.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1180.0 sec: 23 segments, 1 merges 490.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1185.0 sec: 23 segments, 1 merges 495.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1190.1 sec: 23 segments, 1 merges 500.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1195.1 sec: 23 segments, 1 merges 505.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1200.1 sec: 23 segments, 1 merges 510.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1205.1 sec: 23 segments, 1 merges 515.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1210.1 sec: 23 segments, 1 merges 520.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1215.1 sec: 23 segments, 1 merges 525.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1220.1 sec: 23 segments, 1 merges 530.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1225.1 sec: 23 segments, 1 merges 535.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1230.1 sec: 23 segments, 1 merges 540.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1235.1 sec: 23 segments, 1 merges 545.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1240.1 sec: 23 segments, 1 merges 550.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1245.1 sec: 23 segments, 1 merges 555.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1250.1 sec: 23 segments, 1 merges 560.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1255.0 sec: 23 segments, 1 merges 565.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1260.0 sec: 23 segments, 1 merges 570.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1265.0 sec: 23 segments, 1 merges 575.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1270.0 sec: 23 segments, 1 merges 580.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1275.0 sec: 23 segments, 1 merges 585.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1280.0 sec: 23 segments, 1 merges 590.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1285.0 sec: 23 segments, 1 merges 595.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1290.0 sec: 23 segments, 1 merges 600.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1295.0 sec: 23 segments, 1 merges 605.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1300.0 sec: 23 segments, 1 merges 610.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1305.0 sec: 23 segments, 1 merges 615.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1310.0 sec: 23 segments, 1 merges 620.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1315.0 sec: 23 segments, 1 merges 625.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1320.1 sec: 23 segments, 1 merges 630.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1325.1 sec: 23 segments, 1 merges 635.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1330.1 sec: 23 segments, 1 merges 640.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1335.1 sec: 23 segments, 1 merges 645.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1340.1 sec: 23 segments, 1 merges 650.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1345.1 sec: 23 segments, 1 merges 655.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1350.1 sec: 23 segments, 1 merges 660.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1355.1 sec: 23 segments, 1 merges 665.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1360.1 sec: 23 segments, 1 merges 670.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1365.1 sec: 23 segments, 1 merges 675.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1370.1 sec: 23 segments, 1 merges 680.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1375.1 sec: 23 segments, 1 merges 685.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1380.1 sec: 23 segments, 1 merges 690.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1385.1 sec: 23 segments, 1 merges 695.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1390.0 sec: 23 segments, 1 merges 700.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1395.0 sec: 23 segments, 1 merges 705.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1400.0 sec: 23 segments, 1 merges 710.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1405.0 sec: 23 segments, 1 merges 715.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1410.0 sec: 23 segments, 1 merges 720.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1415.0 sec: 23 segments, 1 merges 725.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1420.0 sec: 23 segments, 1 merges 730.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1425.0 sec: 23 segments, 1 merges 735.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1430.0 sec: 23 segments, 1 merges 740.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1435.0 sec: 23 segments, 1 merges 745.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1440.0 sec: 23 segments, 1 merges 750.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1445.0 sec: 23 segments, 1 merges 755.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1450.0 sec: 23 segments, 1 merges 760.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1455.0 sec: 23 segments, 1 merges 765.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1460.1 sec: 23 segments, 1 merges 770.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1465.1 sec: 23 segments, 1 merges 775.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1470.1 sec: 23 segments, 1 merges 780.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1475.1 sec: 23 segments, 1 merges 785.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1480.1 sec: 23 segments, 1 merges 790.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1485.1 sec: 23 segments, 1 merges 795.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1490.1 sec: 23 segments, 1 merges 800.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1495.1 sec: 23 segments, 1 merges 805.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1500.1 sec: 23 segments, 1 merges 810.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1505.1 sec: 23 segments, 1 merges 815.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1510.1 sec: 23 segments, 1 merges 820.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1515.1 sec: 23 segments, 1 merges 825.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1520.1 sec: 23 segments, 1 merges 830.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1525.1 sec: 23 segments, 1 merges 835.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1530.0 sec: 23 segments, 1 merges 840.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1535.0 sec: 23 segments, 1 merges 845.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1540.0 sec: 23 segments, 1 merges 850.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1545.0 sec: 23 segments, 1 merges 855.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1550.0 sec: 23 segments, 1 merges 860.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1555.0 sec: 23 segments, 1 merges 865.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1560.0 sec: 23 segments, 1 merges 870.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1565.0 sec: 23 segments, 1 merges 875.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1570.0 sec: 23 segments, 1 merges 880.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1575.0 sec: 23 segments, 1 merges 885.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1580.0 sec: 23 segments, 1 merges 890.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1585.0 sec: 23 segments, 1 merges 895.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1590.0 sec: 23 segments, 1 merges 900.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1595.0 sec: 23 segments, 1 merges 905.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1600.0 sec: 23 segments, 1 merges 910.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1605.0 sec: 23 segments, 1 merges 915.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1610.0 sec: 23 segments, 1 merges 920.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1615.0 sec: 23 segments, 1 merges 925.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1620.1 sec: 23 segments, 1 merges 930.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1625.1 sec: 23 segments, 1 merges 935.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1630.1 sec: 23 segments, 1 merges 940.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1635.1 sec: 23 segments, 1 merges 945.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1640.1 sec: 23 segments, 1 merges 950.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1645.1 sec: 23 segments, 1 merges 955.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1650.1 sec: 23 segments, 1 merges 960.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1655.1 sec: 23 segments, 1 merges 965.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1660.1 sec: 23 segments, 1 merges 970.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1665.1 sec: 23 segments, 1 merges 975.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1670.1 sec: 23 segments, 1 merges 980.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1675.1 sec: 23 segments, 1 merges 985.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1680.1 sec: 23 segments, 1 merges 990.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1685.1 sec: 23 segments, 1 merges 995.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1690.0 sec: 23 segments, 1 merges 1000.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1695.0 sec: 23 segments, 1 merges 1005.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1700.0 sec: 23 segments, 1 merges 1010.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1705.0 sec: 23 segments, 1 merges 1015.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1710.0 sec: 23 segments, 1 merges 1020.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1715.0 sec: 23 segments, 1 merges 1025.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1720.0 sec: 23 segments, 1 merges 1030.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1725.0 sec: 23 segments, 1 merges 1035.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1730.0 sec: 23 segments, 1 merges 1040.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1735.0 sec: 23 segments, 1 merges 1045.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1740.0 sec: 23 segments, 1 merges 1050.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1745.0 sec: 23 segments, 1 merges 1055.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1750.0 sec: 23 segments, 1 merges 1060.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1755.0 sec: 23 segments, 1 merges 1065.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1760.1 sec: 23 segments, 1 merges 1070.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1765.1 sec: 23 segments, 1 merges 1075.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1770.1 sec: 23 segments, 1 merges 1080.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1775.1 sec: 23 segments, 1 merges 1085.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1780.1 sec: 23 segments, 1 merges 1090.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1785.1 sec: 23 segments, 1 merges 1095.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1790.1 sec: 23 segments, 1 merges 1100.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1795.1 sec: 23 segments, 1 merges 1105.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1800.1 sec: 23 segments, 1 merges 1110.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1805.1 sec: 23 segments, 1 merges 1115.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1810.1 sec: 23 segments, 1 merges 1120.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1815.1 sec: 23 segments, 1 merges 1125.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1820.1 sec: 23 segments, 1 merges 1130.5s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1825.0 sec: 23 segments, 1 merges 1135.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB 1830.0 sec: 23 segments, 1 merges 1140.4s _1ft: 8 segs, 1281.0 K docs, 5119.1 MB done first pass waiting for merges done second pass waiting for merges (CMS.sync()) Indexed 8000000 docs in 3069 seconds reindex takes 3069.46 sec index has 16 segments: segments_2: _fx(11.0.0):C443008 _po(11.0.0):C1009902 _7z(11.0.0):C361083 _j0(11.0.0):C322804 _15r(11.0.0):C1208301 _1bh(11.0.0):C1177140 _yq(11.0.0):C425684 _1ft(11.0.0):C1281040 _121(11.0.0):C210237 _1fr(11.0.0):C725322 _1fs(11.0.0):C539977 _1e1(11.0.0):C106983 _1bo(11.0.0):C58823 _1cm(11.0.0):C50286 _1ea(11.0.0):C38061 _1fq(11.0.0):C41349 _fx: 1771.9 MB _po: 4042.4 MB _7z: 1444.0 MB _j0: 1290.8 MB _15r: 4838.0 MB _1bh: 4712.9 MB _yq: 1702.5 MB _1ft: 5129.7 MB _121: 840.4 MB _1fr: 2902.2 MB _1fs: 2160.0 MB _1e1: 427.3 MB _1bo: 234.7 MB _1cm: 200.6 MB _1ea: 151.7 MB _1fq: 164.8 MB encodingByteSize=4 origByteSize=4 realEncodingByteSize=4.0 index disk usage is 32013.75 MB vector disk usage is 31250.00 MB vector RAM usage is 31250.00 MB exact nn key = cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100 read pre-cached exact match vectors from cache file "knn-reuse/exact-nn/cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100.bin" read pre-cached exact match scores from cache file "knn-reuse/exact-nn/cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100.scores" EXACT_NN_SCORES_PATH: /l/util.nightly/knn-reuse/exact-nn/cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100.scores EXACT_NN_METRIC: dot_product path=/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec dim=1024 vectorEncoding.byteSize=4 1778739 query vectors in queryPath "/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec" searching 1000 query vectors; topK=100, fanout=100 done warmup thread 3 name=main cpu@start=54910148459 cpu@end=67108935848 deltaMS=12198.787389 thread 14 name=Reference Handler cpu@start=1808756 cpu@end=1808756 deltaMS=0.0 thread 15 name=Finalizer cpu@start=139750 cpu@end=139750 deltaMS=0.0 thread 16 name=Signal Dispatcher cpu@start=65474 cpu@end=65474 deltaMS=0.0 thread 40 name=Common-Cleaner cpu@start=27678339 cpu@end=27678339 deltaMS=0.0 thread 41 name=JFR Recorder Thread cpu@start=49586939214 cpu@end=49589116446 deltaMS=2.177232 thread 42 name=JFR Periodic Tasks cpu@start=352287502092 cpu@end=352871392721 deltaMS=583.890629 thread 45 name=Notification Thread cpu@start=103334 cpu@end=103334 deltaMS=0.0 thread 56 name=hnsw-merge-1-thread-1 cpu@start=4854050409102 cpu@end=4854050409102 deltaMS=0.0 thread 57 name=hnsw-merge-1-thread-2 cpu@start=4857903524094 cpu@end=4857903524094 deltaMS=0.0 thread 58 name=hnsw-merge-1-thread-3 cpu@start=4862733919062 cpu@end=4862733919062 deltaMS=0.0 thread 59 name=hnsw-merge-1-thread-4 cpu@start=4859120029368 cpu@end=4859120029368 deltaMS=0.0 thread 60 name=hnsw-merge-1-thread-5 cpu@start=4857831029436 cpu@end=4857831029436 deltaMS=0.0 thread 61 name=hnsw-merge-1-thread-6 cpu@start=4857520473777 cpu@end=4857520473777 deltaMS=0.0 thread 62 name=hnsw-merge-1-thread-7 cpu@start=4862909490510 cpu@end=4862909490510 deltaMS=0.0 thread 63 name=hnsw-merge-1-thread-8 cpu@start=4863343479405 cpu@end=4863343479405 deltaMS=0.0 thread 64 name=hnsw-merge-1-thread-9 cpu@start=4855823428534 cpu@end=4855823428534 deltaMS=0.0 thread 65 name=hnsw-merge-1-thread-10 cpu@start=4859332034799 cpu@end=4859332034799 deltaMS=0.0 thread 66 name=hnsw-merge-1-thread-11 cpu@start=4859028041563 cpu@end=4859028041563 deltaMS=0.0 thread 67 name=hnsw-merge-1-thread-12 cpu@start=4855706600000 cpu@end=4855706600000 deltaMS=0.0 thread 68 name=hnsw-merge-1-thread-13 cpu@start=4850951920913 cpu@end=4850951920913 deltaMS=0.0 thread 69 name=hnsw-merge-1-thread-14 cpu@start=4859443645414 cpu@end=4859443645414 deltaMS=0.0 thread 70 name=hnsw-merge-1-thread-15 cpu@start=4856777686374 cpu@end=4856777686374 deltaMS=0.0 thread 71 name=hnsw-merge-1-thread-16 cpu@start=4857388422134 cpu@end=4857388422134 deltaMS=0.0 Average CPU cores used: 1.0470901961357968 completed 1000 searches in 12209 ms: 81 QPS CPU time=12783 ms checking results SUMMARY: 0.975 12.209 12.783 1.047 8000000 KNN 100 100 N/A N/A 100.000 32 100 no 61562 3069.46 2606.32 0.00 16 32013.75 null N/A 1.000 31250.000 31250.000 false HNSW no Leaf 0 has 4 layers Leaf 0 has 443008 documents Graph level=3 size=23, Fanout min=2, mean=5.04, max=9, meandelta=51244.34 % 0 10 20 30 40 50 60 70 80 90 100 0 2 4 4 5 5 5 6 6 6 9 Graph level=2 size=331, Fanout min=5, mean=17.66, max=32, meandelta=21210.76 % 0 10 20 30 40 50 60 70 80 90 100 0 11 13 14 15 16 18 20 23 26 32 Graph level=1 size=13442, Fanout min=8, mean=27.69, max=32, meandelta=14621.65 % 0 10 20 30 40 50 60 70 80 90 100 0 19 22 25 28 32 32 32 32 32 32 Graph level=0 size=443008, Fanout min=1, mean=39.55, max=64, meandelta=10393.32 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 37 42 49 59 64 64 Graph level=3 size=23, connectedness=1.00 Graph level=2 size=331, connectedness=1.00 Graph level=1 size=13442, connectedness=1.00 Graph level=0 size=443008, connectedness=1.00 Leaf 1 has 4 layers Leaf 1 has 1009902 documents Graph level=3 size=59, Fanout min=3, mean=8.10, max=17, meandelta=101244.91 % 0 10 20 30 40 50 60 70 80 90 100 0 5 5 6 7 7 8 9 10 13 17 Graph level=2 size=926, Fanout min=8, mean=23.08, max=32, meandelta=39627.02 % 0 10 20 30 40 50 60 70 80 90 100 0 15 17 19 21 23 25 28 31 32 32 Graph level=1 size=30730, Fanout min=3, mean=28.06, max=32, meandelta=32893.27 % 0 10 20 30 40 50 60 70 80 90 100 0 19 23 26 29 32 32 32 32 32 32 Graph level=0 size=1009902, Fanout min=1, mean=39.48, max=64, meandelta=23681.83 % 0 10 20 30 40 50 60 70 80 90 100 0 20 24 28 32 37 42 49 60 64 64 Graph level=3 size=59, connectedness=1.00 Graph level=2 size=926, connectedness=1.00 Graph level=1 size=30730, connectedness=1.00 Graph level=0 size=1009902, connectedness=1.00 Leaf 2 has 4 layers Leaf 2 has 361083 documents Graph level=3 size=22, Fanout min=3, mean=5.55, max=10, meandelta=41559.84 % 0 10 20 30 40 50 60 70 80 90 100 0 3 4 4 4 5 6 6 6 8 10 Graph level=2 size=281, Fanout min=5, mean=16.73, max=32, meandelta=17992.13 % 0 10 20 30 40 50 60 70 80 90 100 0 10 12 13 15 16 18 19 21 24 32 Graph level=1 size=10992, Fanout min=7, mean=27.54, max=32, meandelta=11977.72 % 0 10 20 30 40 50 60 70 80 90 100 0 19 22 25 28 31 32 32 32 32 32 Graph level=0 size=361083, Fanout min=1, mean=39.53, max=64, meandelta=8478.63 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 37 42 49 59 64 64 Graph level=3 size=22, connectedness=1.00 Graph level=2 size=281, connectedness=1.00 Graph level=1 size=10992, connectedness=1.00 Graph level=0 size=361083, connectedness=1.00 Leaf 3 has 4 layers Leaf 3 has 322804 documents Graph level=3 size=17, Fanout min=2, mean=4.47, max=7, meandelta=53227.45 % 0 10 20 30 40 50 60 70 80 90 100 0 2 3 4 4 4 5 5 5 6 7 Graph level=2 size=276, Fanout min=5, mean=16.81, max=32, meandelta=16761.46 % 0 10 20 30 40 50 60 70 80 90 100 0 10 12 14 15 16 17 19 21 24 32 Graph level=1 size=9911, Fanout min=8, mean=27.59, max=32, meandelta=10671.80 % 0 10 20 30 40 50 60 70 80 90 100 0 19 22 25 28 32 32 32 32 32 32 Graph level=0 size=322804, Fanout min=1, mean=39.49, max=64, meandelta=7587.46 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 37 42 49 59 64 64 Graph level=3 size=17, connectedness=1.00 Graph level=2 size=276, connectedness=1.00 Graph level=1 size=9911, connectedness=1.00 Graph level=0 size=322804, connectedness=1.00 Leaf 4 has 4 layers Leaf 4 has 1208301 documents Graph level=3 size=67, Fanout min=5, mean=10.54, max=24, meandelta=90858.30 % 0 10 20 30 40 50 60 70 80 90 100 0 6 7 9 9 10 11 12 13 15 24 Graph level=2 size=1110, Fanout min=9, mean=23.78, max=32, meandelta=45409.61 % 0 10 20 30 40 50 60 70 80 90 100 0 15 17 19 22 24 27 29 32 32 32 Graph level=1 size=36895, Fanout min=1, mean=28.11, max=32, meandelta=39339.14 % 0 10 20 30 40 50 60 70 80 90 100 0 19 23 26 30 32 32 32 32 32 32 Graph level=0 size=1208301, Fanout min=1, mean=39.45, max=64, meandelta=28348.63 % 0 10 20 30 40 50 60 70 80 90 100 0 20 24 28 32 37 42 49 60 64 64 Graph level=3 size=67, connectedness=1.00 Graph level=2 size=1110, connectedness=1.00 Graph level=1 size=36895, connectedness=1.00 Graph level=0 size=1208301, connectedness=1.00 Leaf 5 has 4 layers Leaf 5 has 1177140 documents Graph level=3 size=45, Fanout min=3, mean=7.82, max=17, meandelta=115103.82 % 0 10 20 30 40 50 60 70 80 90 100 0 4 5 6 7 7 8 9 10 11 17 Graph level=2 size=1049, Fanout min=8, mean=23.60, max=32, meandelta=45282.53 % 0 10 20 30 40 50 60 70 80 90 100 0 15 17 19 21 24 26 29 32 32 32 Graph level=1 size=36112, Fanout min=3, mean=28.13, max=32, meandelta=38361.34 % 0 10 20 30 40 50 60 70 80 90 100 0 19 23 26 30 32 32 32 32 32 32 Graph level=0 size=1177140, Fanout min=1, mean=39.42, max=64, meandelta=27632.67 % 0 10 20 30 40 50 60 70 80 90 100 0 20 24 28 32 36 42 49 60 64 64 Graph level=3 size=45, connectedness=1.00 Graph level=2 size=1049, connectedness=1.00 Graph level=1 size=36112, connectedness=1.00 Graph level=0 size=1177140, connectedness=1.00 Leaf 6 has 4 layers Leaf 6 has 425684 documents Graph level=3 size=26, Fanout min=3, mean=6.31, max=11, meandelta=49538.81 % 0 10 20 30 40 50 60 70 80 90 100 0 3 4 5 5 6 7 7 8 8 11 Graph level=2 size=360, Fanout min=6, mean=18.30, max=32, meandelta=19674.28 % 0 10 20 30 40 50 60 70 80 90 100 0 12 13 15 16 18 19 21 23 27 32 Graph level=1 size=13002, Fanout min=5, mean=27.70, max=32, meandelta=14015.59 % 0 10 20 30 40 50 60 70 80 90 100 0 19 22 25 28 32 32 32 32 32 32 Graph level=0 size=425684, Fanout min=1, mean=39.58, max=64, meandelta=9980.55 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 37 42 49 59 64 64 Graph level=3 size=26, connectedness=1.00 Graph level=2 size=360, connectedness=1.00 Graph level=1 size=13002, connectedness=1.00 Graph level=0 size=425684, connectedness=1.00 Leaf 7 has 4 layers Leaf 7 has 1281040 documents Graph level=3 size=64, Fanout min=3, mean=8.50, max=18, meandelta=121064.75 % 0 10 20 30 40 50 60 70 80 90 100 0 5 6 7 7 8 9 9 11 13 18 Graph level=2 size=1187, Fanout min=8, mean=24.15, max=32, meandelta=47996.70 % 0 10 20 30 40 50 60 70 80 90 100 0 15 18 20 22 24 27 30 32 32 32 Graph level=1 size=39331, Fanout min=3, mean=28.14, max=32, meandelta=41738.53 % 0 10 20 30 40 50 60 70 80 90 100 0 19 23 26 30 32 32 32 32 32 32 Graph level=0 size=1281040, Fanout min=1, mean=39.41, max=64, meandelta=30076.33 % 0 10 20 30 40 50 60 70 80 90 100 0 20 24 28 32 36 42 49 60 64 64 Graph level=3 size=64, connectedness=1.00 Graph level=2 size=1187, connectedness=1.00 Graph level=1 size=39331, connectedness=1.00 Graph level=0 size=1281040, connectedness=1.00 Leaf 8 has 4 layers Leaf 8 has 210237 documents Graph level=3 size=9, Fanout min=3, mean=3.78, max=5, meandelta=35947.47 % 0 10 20 30 40 50 60 70 80 90 100 0 1 3 3 3 4 4 4 4 4 5 Graph level=2 size=188, Fanout min=5, mean=14.62, max=29, meandelta=12285.76 % 0 10 20 30 40 50 60 70 80 90 100 0 9 11 12 13 14 15 17 18 20 29 Graph level=1 size=6506, Fanout min=7, mean=27.23, max=32, meandelta=7049.12 % 0 10 20 30 40 50 60 70 80 90 100 0 18 21 24 27 31 32 32 32 32 32 Graph level=0 size=210237, Fanout min=1, mean=39.38, max=64, meandelta=4960.67 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 36 42 49 58 64 64 Graph level=3 size=9, connectedness=1.00 Graph level=2 size=188, connectedness=1.00 Graph level=1 size=6506, connectedness=1.00 Graph level=0 size=210237, connectedness=1.00 Leaf 9 has 4 layers Leaf 9 has 725322 documents Graph level=3 size=25, Fanout min=3, mean=5.92, max=12, meandelta=94916.29 % 0 10 20 30 40 50 60 70 80 90 100 0 3 4 4 5 5 6 6 7 8 12 Graph level=2 size=695, Fanout min=8, mean=21.79, max=32, meandelta=29755.22 % 0 10 20 30 40 50 60 70 80 90 100 0 13 15 17 19 21 24 26 29 32 32 Graph level=1 size=22443, Fanout min=4, mean=27.92, max=32, meandelta=23761.23 % 0 10 20 30 40 50 60 70 80 90 100 0 19 23 26 29 32 32 32 32 32 32 Graph level=0 size=725322, Fanout min=1, mean=39.54, max=64, meandelta=17001.92 % 0 10 20 30 40 50 60 70 80 90 100 0 20 24 28 32 37 42 49 60 64 64 Graph level=3 size=25, connectedness=1.00 Graph level=2 size=695, connectedness=1.00 Graph level=1 size=22443, connectedness=1.00 Graph level=0 size=725322, connectedness=1.00 Leaf 10 has 4 layers Leaf 10 has 539977 documents Graph level=3 size=16, Fanout min=3, mean=5.25, max=8, meandelta=57197.98 % 0 10 20 30 40 50 60 70 80 90 100 0 3 4 4 4 5 5 6 6 7 8 Graph level=2 size=518, Fanout min=5, mean=20.30, max=32, meandelta=23368.94 % 0 10 20 30 40 50 60 70 80 90 100 0 12 14 16 17 19 22 24 27 31 32 Graph level=1 size=16728, Fanout min=5, mean=27.73, max=32, meandelta=17830.22 % 0 10 20 30 40 50 60 70 80 90 100 0 19 22 25 29 32 32 32 32 32 32 Graph level=0 size=539977, Fanout min=1, mean=39.54, max=64, meandelta=12662.83 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 37 42 49 59 64 64 Graph level=3 size=16, connectedness=1.00 Graph level=2 size=518, connectedness=1.00 Graph level=1 size=16728, connectedness=1.00 Graph level=0 size=539977, connectedness=1.00 Leaf 11 has 4 layers Leaf 11 has 106983 documents Graph level=3 size=5, Fanout min=2, mean=2.40, max=3, meandelta=21391.33 % 0 10 20 30 40 50 60 70 80 90 100 0 1 2 2 2 2 2 2 3 3 3 Graph level=2 size=99, Fanout min=5, mean=11.19, max=25, meandelta=7981.86 % 0 10 20 30 40 50 60 70 80 90 100 0 7 8 9 10 11 11 12 14 17 25 Graph level=1 size=3290, Fanout min=8, mean=26.35, max=32, meandelta=3716.05 % 0 10 20 30 40 50 60 70 80 90 100 0 17 20 23 25 28 32 32 32 32 32 Graph level=0 size=106983, Fanout min=2, mean=38.94, max=64, meandelta=2549.19 % 0 10 20 30 40 50 60 70 80 90 100 0 20 25 28 32 36 41 48 57 64 64 Graph level=3 size=5, connectedness=1.00 Graph level=2 size=99, connectedness=1.00 Graph level=1 size=3290, connectedness=1.00 Graph level=0 size=106983, connectedness=1.00 Leaf 12 has 4 layers Leaf 12 has 58823 documents Graph level=3 size=4, Fanout min=2, mean=2.00, max=2, meandelta=13163.50 % 0 10 20 30 40 50 60 70 80 90 100 0 1 1 2 2 2 2 2 2 2 2 Graph level=2 size=54, Fanout min=4, mean=8.56, max=17, meandelta=5368.21 % 0 10 20 30 40 50 60 70 80 90 100 0 5 6 7 7 8 9 9 10 12 17 Graph level=1 size=1811, Fanout min=8, mean=25.13, max=32, meandelta=2134.01 % 0 10 20 30 40 50 60 70 80 90 100 0 16 19 21 23 26 29 32 32 32 32 Graph level=0 size=58823, Fanout min=3, mean=38.43, max=64, meandelta=1420.08 % 0 10 20 30 40 50 60 70 80 90 100 0 20 24 28 31 35 40 46 56 64 64 Graph level=3 size=4, connectedness=1.00 Graph level=2 size=54, connectedness=1.00 Graph level=1 size=1811, connectedness=1.00 Graph level=0 size=58823, connectedness=1.00 Leaf 13 has 4 layers Leaf 13 has 50286 documents Graph level=3 size=2, Fanout min=1, mean=1.00, max=1, meandelta=0.00 % 0 10 20 30 40 50 60 70 80 90 100 0 1 1 1 1 1 1 1 1 1 1 Graph level=2 size=43, Fanout min=5, mean=8.14, max=14, meandelta=4846.01 % 0 10 20 30 40 50 60 70 80 90 100 0 5 6 6 7 7 8 9 10 12 14 Graph level=1 size=1530, Fanout min=8, mean=24.95, max=32, meandelta=1820.92 % 0 10 20 30 40 50 60 70 80 90 100 0 16 18 21 23 26 29 32 32 32 32 Graph level=0 size=50286, Fanout min=3, mean=38.24, max=64, meandelta=1219.57 % 0 10 20 30 40 50 60 70 80 90 100 0 20 24 28 31 35 40 46 55 64 64 Graph level=3 size=2, connectedness=1.00 Graph level=2 size=43, connectedness=1.00 Graph level=1 size=1530, connectedness=1.00 Graph level=0 size=50286, connectedness=1.00 Leaf 14 has 4 layers Leaf 14 has 38061 documents Graph level=3 size=0, Fanout min=0, mean=NaN, max=0, meandelta=NaN % 0 10 20 30 40 50 60 70 80 90 100 1 Graph level=2 size=30, Fanout min=3, mean=6.33, max=14, meandelta=4285.46 % 0 10 20 30 40 50 60 70 80 90 100 0 4 5 5 6 6 7 7 8 8 14 Graph level=1 size=1174, Fanout min=8, mean=24.01, max=32, meandelta=1435.20 % 0 10 20 30 40 50 60 70 80 90 100 0 15 18 20 22 24 27 30 32 32 32 Graph level=0 size=38061, Fanout min=3, mean=37.87, max=64, meandelta=931.12 % 0 10 20 30 40 50 60 70 80 90 100 0 20 24 27 31 35 39 45 54 64 64 Graph level=3 size=1, connectedness=1.00 Graph level=2 size=30, connectedness=1.00 Graph level=1 size=1174, connectedness=1.00 Graph level=0 size=38061, connectedness=1.00 Leaf 15 has 4 layers Leaf 15 has 41349 documents Graph level=3 size=2, Fanout min=1, mean=1.00, max=1, meandelta=0.00 % 0 10 20 30 40 50 60 70 80 90 100 0 1 1 1 1 1 1 1 1 1 1 Graph level=2 size=35, Fanout min=2, mean=7.77, max=14, meandelta=4390.32 % 0 10 20 30 40 50 60 70 80 90 100 0 5 6 6 7 8 8 8 9 11 14 Graph level=1 size=1256, Fanout min=7, mean=24.37, max=32, meandelta=1514.71 % 0 10 20 30 40 50 60 70 80 90 100 0 15 18 20 22 25 27 30 32 32 32 Graph level=0 size=41349, Fanout min=4, mean=37.98, max=64, meandelta=1008.58 % 0 10 20 30 40 50 60 70 80 90 100 0 20 24 27 31 35 40 46 55 64 64 Graph level=3 size=2, connectedness=1.00 Graph level=2 size=35, connectedness=1.00 Graph level=1 size=1256, connectedness=1.00 Graph level=0 size=41349, connectedness=1.00 Performance counter stats for '/usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build:/l/util.nightly/build --add-modules jdk.incubator.vector --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmFalse.jfr knn.KnnGraphTester -maxConn 32 -dim 1024 -docs /big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec -ndoc 8000000 -topK 100 -numIndexThreads 8 -beamWidthIndex 100 -search-and-stats /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -metric dot_product -numMergeThread 16 -numMergeWorker 48 -reindex': 172,727,454.56 msec task-clock:u 652,362,276,686,040 cycles:u (36.36%) 47,260,569,912,017 instructions:u (36.36%) 9,463,908,614,156 cache-references:u (36.36%) 2,283,682,792,461 cache-misses:u (36.36%) 26,286,102,385,313 L1-dcache-loads:u (36.36%) 2,697,983,525,782 L1-dcache-load-misses:u (36.36%) 3,260,956,879,924 L1-icache-loads:u (36.36%) 33,650,699,154 L1-icache-load-misses:u (36.36%) LLC-loads:u LLC-load-misses:u LLC-stores:u LLC-store-misses:u LLC-prefetches:u LLC-prefetch-misses:u 31,407,549 faults:u 8,614,846 minor-faults:u 183 major-faults:u 4,756,601,373,228 branches:u (36.36%) 82,741,672,941 branch-misses:u (36.36%) 9,290,850,730,587 stalled-cycles-frontend:u (36.36%) stalled-cycles-backend:u 4994.168395280 seconds time elapsed 171727.599703000 seconds user 966.463173000 seconds sys took 1:23:14.198882 to run KnnGraphTester result: KNNResultV1(lucene_git_rev='de92f115a3125624bf7c7141b8e700efa9a89427', luceneutil_git_rev='63c1b2b252f377e272313c1ac0f182be79ad78b6', index_vectors_file='/big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec', search_vectors_file='/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec', vector_dims=1024, do_force_merge=False, recall=0.975, cpu_time_ms=12.209, net_cpu_ms=12.783, avg_cpu_core_count=1.047, num_docs=8000000, top_k=100, fanout=100, max_conn=32, beam_width=100, quantize_desc='no', total_visited=61562, index_time_sec=3069.46, index_docs_per_sec=2606.32, force_merge_time_sec=0.0, index_num_segments=16, index_size_on_disk_mb=32013.75, selectivity=None, pre_post_filter='null', vec_disk_mb=31250.0, vec_ram_mb=31250.0, graph_level_conn_p_values={3: (2, {0: 0, 10: 1, 20: 1, 30: 1, 40: 1, 50: 1, 60: 1, 70: 1, 80: 1, 90: 1, 100: 1}), 2: (35, {0: 0, 10: 5, 20: 6, 30: 6, 40: 7, 50: 8, 60: 8, 70: 8, 80: 9, 90: 11, 100: 14}), 1: (1256, {0: 0, 10: 15, 20: 18, 30: 20, 40: 22, 50: 25, 60: 27, 70: 30, 80: 32, 90: 32, 100: 32}), 0: (41349, {0: 0, 10: 20, 20: 24, 30: 27, 40: 31, 50: 35, 60: 40, 70: 46, 80: 55, 90: 64, 100: 64})}, combined_run_time=datetime.timedelta(seconds=4994, microseconds=198882)) Profiler summary for /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmFalse.jfr Version: 2.1 Chunks: 164 Start: 2026-05-15 23:34:27 (UTC) Duration: 3436 s Event Type Count Size (bytes) ============================================================= jdk.CPUTimeSample 105245889 1840370601 jdk.FileWrite 7765627 166989397 jdk.FileRead 3205286 75314939 jdk.BooleanFlag 81344 2582228 jdk.CPULoad 63525 1281403 jdk.ObjectAllocationInNewTLAB 38636 770997 jdk.Checkpoint 11483 35470108 jdk.UnsignedIntFlag 7872 267896 jdk.IntFlag 7216 264076 jdk.StringFlag 5576 217216 jdk.Compilation 1160 31718 jdk.ObjectAllocationOutsideTLAB 1090 20442 jdk.CPUInformation 164 246340 jdk.GCConfiguration 164 4276 jdk.JVMInformation 164 148596 jdk.Metadata 164 18126440 jdk.GarbageCollection 25 610 jdk.ActiveRecording 0 0 jdk.ActiveSetting 0 0 jdk.AllocationRequiringGC 0 0 jdk.BooleanFlagChanged 0 0 jdk.CPUTimeSamplesLost 0 0 jdk.CPUTimeStampCounter 0 0 jdk.ClassDefine 0 0 jdk.ClassLoad 0 0 jdk.ClassLoaderStatistics 0 0 jdk.ClassLoadingStatistics 0 0 jdk.ClassRedefinition 0 0 jdk.ClassUnload 0 0 jdk.CodeCacheConfiguration 0 0 jdk.CodeCacheFull 0 0 jdk.CodeCacheStatistics 0 0 jdk.CompilationFailure 0 0 jdk.CompilerConfiguration 0 0 jdk.CompilerInlining 0 0 jdk.CompilerPhase 0 0 jdk.CompilerQueueUtilization 0 0 jdk.CompilerStatistics 0 0 jdk.ConcurrentModeFailure 0 0 jdk.ContainerCPUThrottling 0 0 jdk.ContainerCPUUsage 0 0 jdk.ContainerConfiguration 0 0 jdk.ContainerIOUsage 0 0 jdk.ContainerMemoryUsage 0 0 jdk.ContinuationFreeze 0 0 jdk.ContinuationFreezeFast 0 0 jdk.ContinuationFreezeSlow 0 0 jdk.ContinuationThaw 0 0 jdk.ContinuationThawFast 0 0 jdk.ContinuationThawSlow 0 0 jdk.DataLoss 0 0 jdk.Deoptimization 0 0 jdk.DeprecatedInvocation 0 0 jdk.Deserialization 0 0 jdk.DirectBufferStatistics 0 0 jdk.DoubleFlag 0 0 jdk.DoubleFlagChanged 0 0 jdk.DumpReason 0 0 jdk.EvacuationFailed 0 0 jdk.EvacuationInformation 0 0 jdk.ExceptionStatistics 0 0 jdk.ExecuteVMOperation 0 0 jdk.ExecutionSample 0 0 jdk.FileForce 0 0 jdk.FinalizerStatistics 0 0 jdk.Flush 0 0 jdk.G1AdaptiveIHOP 0 0 jdk.G1BasicIHOP 0 0 jdk.G1EvacuationOldStatistics 0 0 jdk.G1EvacuationYoungStatistics 0 0 jdk.G1GarbageCollection 0 0 jdk.G1HeapRegionInformation 0 0 jdk.G1HeapRegionTypeChange 0 0 jdk.G1HeapSummary 0 0 jdk.G1MMU 0 0 jdk.GCCPUTime 0 0 jdk.GCHeapConfiguration 0 0 jdk.GCHeapMemoryPoolUsage 0 0 jdk.GCHeapMemoryUsage 0 0 jdk.GCHeapSummary 0 0 jdk.GCPhaseConcurrent 0 0 jdk.GCPhaseConcurrentLevel1 0 0 jdk.GCPhaseConcurrentLevel2 0 0 jdk.GCPhaseParallel 0 0 jdk.GCPhasePause 0 0 jdk.GCPhasePauseLevel1 0 0 jdk.GCPhasePauseLevel2 0 0 jdk.GCPhasePauseLevel3 0 0 jdk.GCPhasePauseLevel4 0 0 jdk.GCReferenceStatistics 0 0 jdk.GCSurvivorConfiguration 0 0 jdk.GCTLABConfiguration 0 0 jdk.HeapDump 0 0 jdk.InitialEnvironmentVariable 0 0 jdk.InitialSecurityProperty 0 0 jdk.InitialSystemProperty 0 0 jdk.IntFlagChanged 0 0 jdk.JITRestart 0 0 jdk.JavaAgent 0 0 jdk.JavaErrorThrow 0 0 jdk.JavaExceptionThrow 0 0 jdk.JavaMonitorDeflate 0 0 jdk.JavaMonitorEnter 0 0 jdk.JavaMonitorInflate 0 0 jdk.JavaMonitorNotify 0 0 jdk.JavaMonitorStatistics 0 0 jdk.JavaMonitorWait 0 0 jdk.JavaThreadStatistics 0 0 jdk.LongFlag 0 0 jdk.LongFlagChanged 0 0 jdk.MetaspaceAllocationFailure 0 0 jdk.MetaspaceChunkFreeListSummary 0 0 jdk.MetaspaceGCThreshold 0 0 jdk.MetaspaceOOM 0 0 jdk.MetaspaceSummary 0 0 jdk.MethodTiming 0 0 jdk.MethodTrace 0 0 jdk.ModuleExport 0 0 jdk.ModuleRequire 0 0 jdk.NativeAgent 0 0 jdk.NativeLibrary 0 0 jdk.NativeLibraryLoad 0 0 jdk.NativeLibraryUnload 0 0 jdk.NativeMemoryUsage 0 0 jdk.NativeMemoryUsageTotal 0 0 jdk.NativeMethodSample 0 0 jdk.NetworkUtilization 0 0 jdk.OSInformation 0 0 jdk.ObjectAllocationSample 0 0 jdk.ObjectCount 0 0 jdk.ObjectCountAfterGC 0 0 jdk.OldGarbageCollection 0 0 jdk.OldObjectSample 0 0 jdk.PSHeapSummary 0 0 jdk.ParallelOldGarbageCollection 0 0 jdk.PhysicalMemory 0 0 jdk.ProcessStart 0 0 jdk.PromoteObjectInNewPLAB 0 0 jdk.PromoteObjectOutsidePLAB 0 0 jdk.PromotionFailed 0 0 jdk.RedefineClasses 0 0 jdk.ReservedStackActivation 0 0 jdk.ResidentSetSize 0 0 jdk.RetransformClasses 0 0 jdk.SafepointBegin 0 0 jdk.SafepointEnd 0 0 jdk.SafepointLatency 0 0 jdk.SafepointStateSynchronization 0 0 jdk.SecurityPropertyModification 0 0 jdk.SecurityProviderService 0 0 jdk.SerializationMisdeclaration 0 0 jdk.ShenandoahEvacuationInformation 0 0 jdk.ShenandoahHeapRegionInformation 0 0 jdk.ShenandoahHeapRegionStateChange 0 0 jdk.Shutdown 0 0 jdk.SocketRead 0 0 jdk.SocketWrite 0 0 jdk.StringFlagChanged 0 0 jdk.StringTableStatistics 0 0 jdk.SwapSpace 0 0 jdk.SymbolTableStatistics 0 0 jdk.SyncOnValueBasedClass 0 0 jdk.SystemGC 0 0 jdk.SystemProcess 0 0 jdk.TLSHandshake 0 0 jdk.TenuringDistribution 0 0 jdk.ThreadAllocationStatistics 0 0 jdk.ThreadCPULoad 0 0 jdk.ThreadContextSwitchRate 0 0 jdk.ThreadDump 0 0 jdk.ThreadEnd 0 0 jdk.ThreadPark 0 0 jdk.ThreadSleep 0 0 jdk.ThreadStart 0 0 jdk.UnsignedIntFlagChanged 0 0 jdk.UnsignedLongFlag 0 0 jdk.UnsignedLongFlagChanged 0 0 jdk.VirtualThreadEnd 0 0 jdk.VirtualThreadPinned 0 0 jdk.VirtualThreadStart 0 0 jdk.VirtualThreadSubmitFailed 0 0 jdk.VirtualizationInformation 0 0 jdk.X509Certificate 0 0 jdk.X509Validation 0 0 jdk.YoungGarbageCollection 0 0 jdk.YoungGenerationConfiguration 0 0 jdk.ZAllocationStall 0 0 jdk.ZOldGarbageCollection 0 0 jdk.ZPageAllocation 0 0 jdk.ZRelocationSet 0 0 jdk.ZRelocationSetGroup 0 0 jdk.ZStatisticsCounter 0 0 jdk.ZStatisticsSampler 0 0 jdk.ZThreadPhase 0 0 jdk.ZUncommit 0 0 jdk.ZYoungGarbageCollection 0 0 profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmFalse.jfr Profiler for cpu at stackSize=1 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmFalse.jfr is 2042.88 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 105245889 events (total: 105M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 83.48% 87M org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] 8.80% 9M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] 2.32% 2M org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] 1.14% 1M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] 0.67% 703547 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] 0.59% 615975 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():739 [Inlined code] 0.39% 412474 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():256 [Inlined code] 0.28% 291093 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [Inlined code] 0.26% 268886 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [JIT compiled code] 0.22% 236666 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] 0.21% 216956 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] 0.16% 171838 jdk.jfr.internal.JVM#emitEvent() [Native code] 0.15% 162674 org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] 0.13% 133550 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] 0.12% 124147 java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():499 [Inlined code] 0.07% 74309 org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] 0.07% 74169 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] 0.05% 56123 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():363 [JIT compiled code] 0.04% 45614 sun.nio.ch.UnixFileDispatcherImpl#read0() [Native code] 0.04% 44092 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquire():650 [Inlined code] 0.04% 43230 org.apache.lucene.store.RateLimitedIndexOutput#writeBytes():55 [Inlined code] 0.04% 42514 org.apache.lucene.store.ChecksumIndexInput#skipByReading():81 [JIT compiled code] 0.04% 37521 org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():303 [JIT compiled code] 0.03% 31421 org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():512 [JIT compiled code] 0.03% 29061 org.apache.lucene.util.hnsw.HnswLock#write():48 [Inlined code] 0.03% 27064 sun.nio.ch.NativeThread#current0() [Native code] 0.02% 24496 org.apache.lucene.util.hnsw.NeighborArray#sort():171 [Inlined code] 0.02% 24455 org.apache.lucene.util.hnsw.NeighborQueue#encode():115 [Inlined code] 0.02% 23976 org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] 0.02% 22016 org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] 0.02% 20679 org.apache.lucene.util.TernaryLongHeap#downHeap():235 [Inlined code] 0.02% 18537 org.apache.lucene.util.TernaryLongHeap#downHeap():246 [Inlined code] 0.02% 17858 org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():347 [JIT compiled code] 0.02% 17850 java.util.concurrent.atomic.LongAdder#add():93 [Inlined code] 0.02% 16876 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():249 [Inlined code] 0.02% 16598 java.util.DualPivotQuicksort#sort():368 [JIT compiled code] 0.02% 16265 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] 0.01% 15760 org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.01% 15681 org.apache.lucene.util.hnsw.NeighborArray#clear():233 [Inlined code] 0.01% 15182 org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] 0.01% 14422 org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] 0.01% 14396 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] 0.01% 12889 org.apache.lucene.index.LockableConcurrentApproximatePriorityQueue#lockAndPoll():44 [JIT compiled code] 0.01% 12453 jdk.jfr.internal.event.EventWriter#reserveEventSizeField():199 [Inlined code] 0.01% 12189 java.util.Arrays#sort():99 [Inlined code] 0.01% 10925 org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] 0.01% 10845 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.01% 10596 org.apache.lucene.util.hnsw.NeighborArray#insertSortedInternal():184 [Inlined code] 0.01% 10101 java.util.DualPivotQuicksort#sort():238 [Inlined code] 0.01% 9844 sun.nio.ch.FileChannelImpl#implRead():251 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmFalse.jfr Profiler for cpu at stackSize=4 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmFalse.jfr is 2042.88 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 105245889 events (total: 105M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 77.69% 81M org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] 8.80% 9M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] 5.77% 6M org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] 1.45% 1M org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] 1.14% 1M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] 0.71% 752211 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] 0.59% 615975 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():739 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [Inlined code] 0.43% 447819 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():101 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] 0.38% 395246 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():256 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.27% 286870 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.24% 247401 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] 0.21% 219327 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():249 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.18% 186929 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.16% 171838 jdk.jfr.internal.JVM#emitEvent() [Native code] at jdk.jfr.internal.periodic.JVMEventTask#execute():54 [Inlined code] at jdk.jfr.internal.periodic.PeriodicTask#run():125 [Inlined code] at jdk.jfr.internal.periodic.PeriodicEvents#doPeriodic():145 [JIT compiled code] 0.16% 164726 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#insertSortedInternal():184 [Inlined code] 0.13% 141777 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#pop():124 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#pop():129 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():322 [JIT compiled code] 0.12% 123777 java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():499 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [JIT compiled code] 0.07% 74285 org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#collect():713 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():350 [JIT compiled code] 0.07% 74169 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] 0.07% 70459 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#updateTop():153 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] 0.05% 56952 org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.05% 54338 org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] 0.05% 48997 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():363 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.05% 48216 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] 0.05% 47562 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.04% 45614 sun.nio.ch.UnixFileDispatcherImpl#read0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#read():51 [Inlined code] at sun.nio.ch.IOUtil#readIntoNativeBuffer():341 [Inlined code] at sun.nio.ch.IOUtil#read():307 [Inlined code] 0.04% 44092 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquire():650 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$WriteLock#lock():966 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswLock#write():48 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():412 [JIT compiled code] 0.04% 42018 org.apache.lucene.store.RateLimitedIndexOutput#writeBytes():55 [Inlined code] at org.apache.lucene.store.DataOutput#writeBytes():54 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter#writeVectorData():302 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter#mergeOneFlatVectorField():235 [Interpreted code] 0.04% 38315 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():415 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.03% 34750 org.apache.lucene.store.ChecksumIndexInput#skipByReading():81 [JIT compiled code] at org.apache.lucene.store.ChecksumIndexInput#seek():64 [Inlined code] at org.apache.lucene.codecs.CodecUtil#checksumEntireFile():619 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsReader#checkIntegrity():194 [Inlined code] 0.03% 31421 org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():512 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] 0.03% 29759 org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] 0.03% 29061 org.apache.lucene.util.hnsw.HnswLock#write():48 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():412 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.03% 28722 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.02% 23303 org.apache.lucene.util.hnsw.NeighborQueue#encode():115 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#collect():713 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():350 [JIT compiled code] 0.02% 22786 org.apache.lucene.util.hnsw.NeighborArray#sort():171 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] 0.02% 22016 org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] 0.02% 21009 org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():303 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.02% 20086 sun.nio.ch.NativeThread#current0() [Native code] at sun.nio.ch.NativeThread#current():51 [Inlined code] at sun.nio.ch.NativeThreadSet#add():48 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():349 [Inlined code] 0.02% 19948 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.02% 17847 org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.02% 17631 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():57 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorer$DotProductScorer#vectorOp():194 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorer#bulkScore():92 [JIT compiled code] 0.02% 17228 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():256 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.02% 15862 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] 0.01% 15681 org.apache.lucene.util.hnsw.NeighborArray#clear():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():493 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.01% 15264 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():249 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.01% 14936 org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():303 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.01% 14434 java.util.DualPivotQuicksort#sort():368 [JIT compiled code] at java.util.DualPivotQuicksort#sort():238 [JIT compiled code] at java.util.Arrays#sort():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#sort():173 [Inlined code] 0.01% 14396 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.01% 13368 org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmFalse.jfr Profiler for cpu at stackSize=12 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmFalse.jfr is 2042.88 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 105245889 events (total: 105M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 68.75% 72M org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] 8.35% 8M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 4.59% 4M org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] 3.60% 3M org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] 2.56% 2M org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] 2.46% 2M org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] 1.37% 1M org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] 0.71% 742559 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.68% 713613 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] 0.56% 589835 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] 0.53% 553589 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():739 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] 0.36% 374059 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] 0.28% 292313 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] 0.26% 271738 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():101 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#collect():713 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():350 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.25% 265662 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] 0.25% 263225 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] 0.23% 239779 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():256 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [JIT compiled code] 0.20% 207222 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():249 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] 0.19% 195826 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 0.16% 164726 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#insertSortedInternal():184 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#sort():164 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.15% 158764 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 0.15% 152839 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():101 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#collect():713 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():350 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.14% 145260 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.14% 143590 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x000000005519cd58#run() [JIT compiled code] 0.13% 137479 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] 0.12% 131360 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():256 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.12% 127741 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.12% 127529 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [JIT compiled code] 0.11% 113459 java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():499 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.09% 95859 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#pop():124 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#pop():129 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():322 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 0.09% 90236 jdk.jfr.internal.JVM#emitEvent() [Native code] at jdk.jfr.internal.periodic.JVMEventTask#execute():54 [Inlined code] at jdk.jfr.internal.periodic.PeriodicTask#run():125 [Inlined code] at jdk.jfr.internal.periodic.PeriodicEvents#doPeriodic():145 [JIT compiled code] at jdk.jfr.internal.PlatformRecorder#periodicTask():502 [Interpreted code] at jdk.jfr.internal.PlatformRecorder#lambda$startDiskMonitor$0():428 [Interpreted code] at jdk.jfr.internal.PlatformRecorder$$Lambda.0x000000005507aa58#run() [Interpreted code] at java.lang.Thread#runWith():1487 [Interpreted code] at java.lang.Thread#run():1474 [Interpreted code] 0.08% 85740 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.08% 81602 jdk.jfr.internal.JVM#emitEvent() [Native code] at jdk.jfr.internal.periodic.JVMEventTask#execute():54 [Inlined code] at jdk.jfr.internal.periodic.PeriodicTask#run():125 [Inlined code] at jdk.jfr.internal.periodic.PeriodicEvents#doPeriodic():145 [JIT compiled code] at jdk.jfr.internal.PlatformRecorder#periodicTask():502 [JIT compiled code] at jdk.jfr.internal.PlatformRecorder#lambda$startDiskMonitor$0():428 [Interpreted code] at jdk.jfr.internal.PlatformRecorder$$Lambda.0x000000005507aa58#run() [Interpreted code] at java.lang.Thread#runWith():1487 [Interpreted code] at java.lang.Thread#run():1474 [Interpreted code] 0.07% 73951 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] at sun.nio.ch.IOUtil#write():72 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():355 [Inlined code] at sun.nio.ch.FileChannelImpl#traceImplWrite():374 [Inlined code] at sun.nio.ch.FileChannelImpl#write():333 [Inlined code] at sun.nio.ch.ChannelOutputStream#writeFully():68 [Inlined code] at sun.nio.ch.ChannelOutputStream#write():105 [Inlined code] at org.apache.lucene.store.FSDirectory$FSIndexOutput$1#write():391 [Inlined code] at java.util.zip.CheckedOutputStream#write():73 [Inlined code] 0.06% 66414 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.AbstractHnswGraphSearcher#scoreEntryPoints():97 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.06% 62430 org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#collect():713 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():350 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 0.05% 55694 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#updateTop():153 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#collect():713 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():350 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.05% 50801 org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] 0.04% 45605 sun.nio.ch.UnixFileDispatcherImpl#read0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#read():51 [Inlined code] at sun.nio.ch.IOUtil#readIntoNativeBuffer():341 [Inlined code] at sun.nio.ch.IOUtil#read():307 [Inlined code] at sun.nio.ch.IOUtil#read():284 [JIT compiled code] at sun.nio.ch.FileChannelImpl#implRead():251 [Inlined code] at sun.nio.ch.FileChannelImpl#traceImplRead():269 [JIT compiled code] at sun.nio.ch.FileChannelImpl#read():229 [Inlined code] at knn.VectorReader#readNext():57 [Inlined code] at knn.VectorReaderFloat32#next():30 [Inlined code] at knn.IndexerThread#_run():105 [JIT compiled code] at knn.IndexerThread#run():77 [Interpreted code] 0.04% 45540 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.04% 43282 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 0.04% 41950 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquire():650 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$WriteLock#lock():966 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswLock#write():48 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():412 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 0.04% 38598 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.03% 36461 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.AbstractHnswGraphSearcher#scoreEntryPoints():97 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.03% 36373 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#build():101 [JIT compiled code] 0.03% 34369 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#pop():124 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#pop():129 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():322 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.03% 33938 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 0.03% 33189 org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.03% 30878 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.03% 30750 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():739 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmFalse.jfr Profiler for heap at stackSize=1 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmFalse.jfr is 2042.88 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 39718 events (total: 227240M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 28.29% 64289M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] 25.48% 57894M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] 25.02% 56853M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] 5.68% 12910M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] 3.30% 7500M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] 3.10% 7039M java.lang.Integer#valueOf():1006 [Inlined code] 1.51% 3422M java.util.Arrays#copyOf():3478 [Inlined code] 0.77% 1745M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] 0.75% 1693M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] 0.74% 1677M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] 0.72% 1646M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] 0.42% 944M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] 0.37% 837M org.apache.lucene.search.AbstractKnnVectorQuery#getKnnCollectorManager():248 [Inlined code] 0.34% 782M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] 0.31% 701M org.apache.lucene.util.SparseFixedBitSet#insertLong():230 [Inlined code] 0.19% 428M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():320 [JIT compiled code] 0.16% 365M java.util.HashMap#newNode():1910 [Inlined code] 0.16% 364M knn.KnnIndexer$TrackingConcurrentMergeScheduler#doMerge():355 [Interpreted code] 0.16% 360M java.util.ArrayList#grow():240 [Inlined code] 0.15% 351M java.lang.invoke.DirectMethodHandle#allocateInstance():500 [Inlined code] 0.15% 334M org.apache.lucene.codecs.lucene95.OffHeapFloatVectorValues#():59 [Inlined code] 0.15% 329M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():158 [JIT compiled code] 0.14% 328M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():306 [JIT compiled code] 0.13% 306M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] 0.12% 269M java.lang.reflect.Array#newInstance():76 [Inlined code] 0.12% 265M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] 0.11% 257M jdk.internal.misc.Unsafe#allocateUninitializedArray():1396 [Inlined code] 0.10% 236M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():556 [JIT compiled code] 0.10% 232M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():618 [JIT compiled code] 0.09% 206M knn.IndexerThread#_run():108 [JIT compiled code] 0.09% 203M java.util.HashMap#resize():711 [JIT compiled code] 0.08% 192M java.util.DualPivotQuicksort#tryMergeRuns():816 [JIT compiled code] 0.08% 184M org.apache.lucene.internal.hppc.IntIntHashMap#allocateBuffers():743 [Interpreted code] 0.08% 183M java.util.DualPivotQuicksort#sort():354 [JIT compiled code] 0.08% 175M org.apache.lucene.util.TernaryLongHeap#():68 [Inlined code] 0.07% 149M java.util.List#of():935 [Inlined code] 0.05% 113M knn.IndexerThread#_run():125 [JIT compiled code] 0.05% 108M org.apache.lucene.document.Document#():42 [Inlined code] 0.04% 100M java.lang.Thread#beforeSleep():473 [Inlined code] 0.04% 98M org.apache.lucene.util.hnsw.OnHeapHnswGraph#():86 [JIT compiled code] 0.04% 93M knn.KnnIndexer#createIndex():264 [Interpreted code] 0.04% 90M java.util.logging.LogManager#reset():1298 [Interpreted code] 0.04% 90M jdk.jfr.internal.ShutdownHook#run():48 [Interpreted code] 0.04% 88M java.io.BufferedOutputStream#():92 [Inlined code] 0.04% 80M java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject#await():1767 [Interpreted code] 0.03% 68M org.apache.lucene.util.FixedBitSet#():148 [Inlined code] 0.02% 55M java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquire():389 [JIT compiled code] 0.02% 53M knn.KnnIndexer#waitForMergesWithStatus():297 [Interpreted code] 0.02% 51M org.apache.lucene.util.packed.DirectMonotonicWriter#():72 [Inlined code] 0.02% 50M knn.IndexerThread#_run():86 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmFalse.jfr Profiler for heap at stackSize=4 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmFalse.jfr is 2042.88 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 39718 events (total: 227240M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 20.90% 47499M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] 20.52% 46619M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] 17.40% 39549M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollector#():44 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [JIT compiled code] 10.89% 24739M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollector#():44 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [Interpreted code] 5.68% 12910M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():335 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] 4.53% 10302M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] 4.50% 10234M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] 3.30% 7500M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 3.08% 6996M java.lang.Integer#valueOf():1006 [Inlined code] at knn.KnnGraphTester#printGraphConnectedNess():1131 [JIT compiled code] at knn.KnnGraphTester#printFanoutHist():1086 [Interpreted code] at knn.KnnGraphTester#printFanoutHist():1061 [Interpreted code] 1.48% 3373M java.util.Arrays#copyOf():3478 [Inlined code] at java.util.ArrayDeque#grow():146 [JIT compiled code] at java.util.ArrayDeque#addFirst():288 [Inlined code] at java.util.ArrayDeque#push():577 [Inlined code] 0.74% 1677M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.70% 1579M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] 0.40% 900M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.38% 862M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.33% 744M org.apache.lucene.search.AbstractKnnVectorQuery#getKnnCollectorManager():248 [Inlined code] at org.apache.lucene.search.AbstractKnnVectorQuery#rewrite():106 [JIT compiled code] at org.apache.lucene.search.KnnFloatVectorQuery#rewrite():48 [Inlined code] at knn.KnnGraphTester$ProfiledKnnFloatVectorQuery#rewrite():2274 [JIT compiled code] 0.31% 700M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.29% 668M org.apache.lucene.util.SparseFixedBitSet#insertLong():230 [Inlined code] at org.apache.lucene.util.SparseFixedBitSet#getAndSet():170 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] at org.apache.lucene.util.hnsw.AbstractHnswGraphSearcher#search():83 [Inlined code] 0.28% 640M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.25% 559M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.21% 476M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] 0.16% 364M knn.KnnIndexer$TrackingConcurrentMergeScheduler#doMerge():355 [Interpreted code] at org.apache.lucene.index.ConcurrentMergeScheduler$MergeThread#run():726 [Interpreted code] 0.16% 360M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] 0.15% 351M java.lang.invoke.DirectMethodHandle#allocateInstance():500 [Inlined code] at java.lang.invoke.DirectMethodHandle$Holder#newInvokeSpecial() [Inlined code] at java.lang.invoke.Invokers$Holder#linkToTargetMethod() [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] 0.15% 334M org.apache.lucene.codecs.lucene95.OffHeapFloatVectorValues#():59 [Inlined code] at org.apache.lucene.codecs.lucene95.OffHeapFloatVectorValues$DenseOffHeapVectorValues#():154 [Inlined code] at org.apache.lucene.codecs.lucene95.OffHeapFloatVectorValues#load():122 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsReader#getRandomVectorScorer():265 [Inlined code] 0.13% 306M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] 0.12% 269M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] 0.12% 269M java.lang.reflect.Array#newInstance():76 [Inlined code] at org.apache.lucene.util.ArrayUtil#growExact():216 [Inlined code] at org.apache.lucene.util.ArrayUtil#grow():234 [JIT compiled code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():152 [JIT compiled code] 0.12% 265M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] 0.11% 257M jdk.internal.misc.Unsafe#allocateUninitializedArray():1396 [Inlined code] at java.lang.StringConcatHelper#newArray():578 [Inlined code] at java.lang.StringConcatHelper#newArrayWithSuffix():611 [Inlined code] at java.lang.String$$StringConcat.0x0000000055184000#concat() [Inlined code] 0.11% 250M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():320 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] 0.10% 236M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():556 [JIT compiled code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader#serializedDocument():645 [Inlined code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#copyOneDoc():508 [JIT compiled code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#merge():630 [JIT compiled code] 0.10% 235M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():306 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] 0.10% 232M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():618 [JIT compiled code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader#serializedDocument():645 [Inlined code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#copyOneDoc():508 [JIT compiled code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#merge():630 [JIT compiled code] 0.09% 215M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():158 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.09% 206M knn.IndexerThread#_run():108 [JIT compiled code] at knn.IndexerThread#run():77 [Interpreted code] 0.09% 205M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():238 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] 0.09% 203M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():238 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] 0.08% 192M java.util.DualPivotQuicksort#tryMergeRuns():816 [JIT compiled code] at java.util.DualPivotQuicksort#sort():277 [JIT compiled code] at java.util.DualPivotQuicksort#sort():238 [Inlined code] at java.util.Arrays#sort():123 [Inlined code] 0.08% 184M org.apache.lucene.internal.hppc.IntIntHashMap#allocateBuffers():743 [Interpreted code] at org.apache.lucene.internal.hppc.IntIntHashMap#ensureCapacity():450 [Inlined code] at org.apache.lucene.internal.hppc.IntIntHashMap#():107 [Inlined code] at org.apache.lucene.internal.hppc.IntIntHashMap#():93 [Inlined code] 0.07% 167M org.apache.lucene.util.TernaryLongHeap#():68 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#():60 [Inlined code] at org.apache.lucene.search.TopKnnCollector#():45 [Inlined code] at org.apache.lucene.search.knn.TopKnnCollectorManager#newOptimisticCollector():52 [Inlined code] 0.07% 167M java.util.HashMap#newNode():1910 [Inlined code] at java.util.HashMap#putVal():649 [Inlined code] at java.util.HashMap#put():619 [JIT compiled code] at java.util.HashSet#add():230 [Inlined code] 0.07% 150M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] 0.07% 149M java.util.List#of():935 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1883 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] at knn.IndexerThread#_run():126 [JIT compiled code] 0.06% 143M java.util.DualPivotQuicksort#sort():354 [JIT compiled code] at java.util.DualPivotQuicksort#sort():238 [Inlined code] at java.util.Arrays#sort():123 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#writeGraph():534 [JIT compiled code] 0.06% 140M java.util.HashMap#resize():711 [JIT compiled code] at java.util.HashMap#putVal():670 [Inlined code] at java.util.HashMap#put():619 [Inlined code] at java.util.HashSet#add():230 [Inlined code] 0.06% 138M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():320 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] 0.06% 130M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():238 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] 0.05% 113M knn.IndexerThread#_run():125 [JIT compiled code] at knn.IndexerThread#run():77 [Interpreted code] 0.05% 108M org.apache.lucene.document.Document#():42 [Inlined code] at knn.IndexerThread#_run():86 [JIT compiled code] at knn.IndexerThread#run():77 [Interpreted code] 0.05% 106M java.util.HashMap#newNode():1910 [Inlined code] at java.util.HashMap#putVal():638 [Inlined code] at java.util.HashMap#put():619 [Inlined code] at java.util.HashSet#add():230 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmFalse.jfr Profiler for heap at stackSize=12 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmFalse.jfr is 2042.88 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 39718 events (total: 227240M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 17.38% 39485M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollector#():44 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():28 [Inlined code] at org.apache.lucene.search.IndexSearcher#search():752 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#searchAfter():601 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#search():624 [Inlined code] at knn.KnnGraphTester#doFloatVectorQuery():1527 [JIT compiled code] at knn.KnnGraphTester#testSearch():1253 [Interpreted code] at knn.KnnGraphTester#run():770 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] 13.86% 31494M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] 13.44% 30543M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] 7.26% 16493M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollector#():44 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():28 [Interpreted code] at org.apache.lucene.search.IndexSearcher#search():752 [Interpreted code] at org.apache.lucene.search.IndexSearcher#searchAfter():601 [Interpreted code] at org.apache.lucene.search.IndexSearcher#search():624 [Interpreted code] at knn.KnnGraphTester#doFloatVectorQuery():1527 [Interpreted code] at knn.KnnGraphTester#testSearch():1253 [Interpreted code] at knn.KnnGraphTester#run():770 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] 5.68% 12910M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():335 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():783 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 3.94% 8963M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 3.79% 8611M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 3.63% 8245M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollector#():44 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():28 [Interpreted code] at org.apache.lucene.search.IndexSearcher#search():752 [Interpreted code] at org.apache.lucene.search.IndexSearcher#searchAfter():601 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#search():624 [Inlined code] at knn.KnnGraphTester#doFloatVectorQuery():1527 [JIT compiled code] at knn.KnnGraphTester#testSearch():1253 [Interpreted code] at knn.KnnGraphTester#run():770 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] 3.08% 6996M java.lang.Integer#valueOf():1006 [Inlined code] at knn.KnnGraphTester#printGraphConnectedNess():1131 [JIT compiled code] at knn.KnnGraphTester#printFanoutHist():1086 [Interpreted code] at knn.KnnGraphTester#printFanoutHist():1061 [Interpreted code] at knn.KnnGraphTester#run():775 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] at knn.KnnGraphTester#main():275 [Interpreted code] 2.40% 5463M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] 2.39% 5423M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] 1.58% 3584M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 1.48% 3373M java.util.Arrays#copyOf():3478 [Inlined code] at java.util.ArrayDeque#grow():146 [JIT compiled code] at java.util.ArrayDeque#addFirst():288 [Inlined code] at java.util.ArrayDeque#push():577 [Inlined code] at knn.KnnGraphTester#printGraphConnectedNess():1131 [JIT compiled code] at knn.KnnGraphTester#printFanoutHist():1086 [Interpreted code] at knn.KnnGraphTester#printFanoutHist():1061 [Interpreted code] at knn.KnnGraphTester#run():775 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] at knn.KnnGraphTester#main():275 [Interpreted code] 1.48% 3358M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 1.41% 3214M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [JIT compiled code] 1.39% 3169M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():255 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initGraph():148 [Interpreted code] at org.apache.lucene.util.hnsw.ConcurrentHnswMerger#createBuilder():81 [Interpreted code] at org.apache.lucene.util.hnsw.IncrementalHnswGraphMerger#merge():212 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#buildAndWriteGraph():485 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#lambda$mergeOneField$0():453 [Interpreted code] 1.23% 2792M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():255 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initGraph():148 [Interpreted code] at org.apache.lucene.util.hnsw.ConcurrentHnswMerger#createBuilder():81 [Interpreted code] at org.apache.lucene.util.hnsw.IncrementalHnswGraphMerger#merge():212 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#buildAndWriteGraph():485 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#lambda$mergeOneField$0():453 [Interpreted code] 0.86% 1960M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.81% 1840M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 0.73% 1647M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] 0.68% 1551M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.67% 1528M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] 0.67% 1524M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] 0.59% 1336M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.58% 1313M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#replayBufferedVectors():771 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():787 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.56% 1263M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#replayBufferedVectors():771 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():787 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.31% 695M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.29% 668M org.apache.lucene.util.SparseFixedBitSet#insertLong():230 [Inlined code] at org.apache.lucene.util.SparseFixedBitSet#getAndSet():170 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] at org.apache.lucene.util.hnsw.AbstractHnswGraphSearcher#search():83 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#search():36 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#search():162 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsReader#search():352 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsReader#search():307 [Inlined code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsReader#search():305 [Inlined code] at org.apache.lucene.index.CodecReader#searchNearestVectors():273 [Inlined code] at org.apache.lucene.search.KnnFloatVectorQuery#approximateSearch():118 [JIT compiled code] at org.apache.lucene.search.AbstractKnnVectorQuery#getLeafResults():196 [Inlined code] 0.29% 668M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.29% 665M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [JIT compiled code] 0.27% 622M org.apache.lucene.search.AbstractKnnVectorQuery#getKnnCollectorManager():248 [Inlined code] at org.apache.lucene.search.AbstractKnnVectorQuery#rewrite():106 [JIT compiled code] at org.apache.lucene.search.KnnFloatVectorQuery#rewrite():48 [Inlined code] at knn.KnnGraphTester$ProfiledKnnFloatVectorQuery#rewrite():2274 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#rewrite():873 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#rewrite():884 [Inlined code] at org.apache.lucene.search.IndexSearcher#search():753 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#searchAfter():601 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#search():624 [Inlined code] at knn.KnnGraphTester#doFloatVectorQuery():1527 [JIT compiled code] at knn.KnnGraphTester#testSearch():1253 [Interpreted code] at knn.KnnGraphTester#run():770 [Interpreted code] 0.19% 442M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.17% 384M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [JIT compiled code] 0.16% 373M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [JIT compiled code] 0.16% 370M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 0.16% 364M knn.KnnIndexer$TrackingConcurrentMergeScheduler#doMerge():355 [Interpreted code] at org.apache.lucene.index.ConcurrentMergeScheduler$MergeThread#run():726 [Interpreted code] 0.16% 360M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] at org.apache.lucene.document.Document#add():62 [Inlined code] at knn.IndexerThread#_run():108 [JIT compiled code] at knn.IndexerThread#run():77 [Interpreted code] 0.15% 340M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#build():101 [JIT compiled code] 0.15% 334M org.apache.lucene.codecs.lucene95.OffHeapFloatVectorValues#():59 [Inlined code] at org.apache.lucene.codecs.lucene95.OffHeapFloatVectorValues$DenseOffHeapVectorValues#():154 [Inlined code] at org.apache.lucene.codecs.lucene95.OffHeapFloatVectorValues#load():122 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsReader#getRandomVectorScorer():265 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsReader#lambda$search$0():311 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsReader$$Lambda.0x00000000551b94f8#get() [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsReader#search():334 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsReader#search():307 [Inlined code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsReader#search():305 [Inlined code] at org.apache.lucene.index.CodecReader#searchNearestVectors():273 [Inlined code] at org.apache.lucene.search.KnnFloatVectorQuery#approximateSearch():118 [JIT compiled code] at org.apache.lucene.search.AbstractKnnVectorQuery#getLeafResults():196 [Inlined code] 0.15% 330M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [JIT compiled code] 0.14% 325M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 0.13% 298M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#build():101 [JIT compiled code] at org.apache.lucene.util.hnsw.IncrementalHnswGraphMerger#merge():214 [Interpreted code] 0.12% 272M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [JIT compiled code] 0.12% 269M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] at knn.IndexerThread#_run():126 [JIT compiled code] 0.11% 251M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 0.11% 246M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.10% 238M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 0.10% 236M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():556 [JIT compiled code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader#serializedDocument():645 [Inlined code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#copyOneDoc():508 [JIT compiled code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#merge():630 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#mergeFields():249 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x0000000055196aa8#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():290 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():120 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] at org.apache.lucene.index.IndexWriter#merge():4785 [Interpreted code] at org.apache.lucene.index.IndexWriter$IndexWriterMergeSource#merge():6590 [Interpreted code] at org.apache.lucene.index.ConcurrentMergeScheduler#doMerge():661 [Interpreted code] 0.10% 232M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():618 [JIT compiled code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader#serializedDocument():645 [Inlined code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#copyOneDoc():508 [JIT compiled code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#merge():630 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#mergeFields():249 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x0000000055196aa8#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():290 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():120 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] at org.apache.lucene.index.IndexWriter#merge():4785 [Interpreted code] at org.apache.lucene.index.IndexWriter$IndexWriterMergeSource#merge():6590 [Interpreted code] at org.apache.lucene.index.ConcurrentMergeScheduler#doMerge():661 [Interpreted code] 0.10% 216M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000005519c800#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [JIT compiled code] cmd: ['/usr/sbin/perf', 'stat', '-dd', '-e', 'task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend', '/usr/lib/jvm/java-25-openjdk/bin/java', '--add-modules', 'jdk.incubator.vector', '-Xmx32g', '-Xms32g', '-server', '-XX:+UseParallelGC', '-Djava.io.tmpdir=/l/tmp', '--enable-native-access=ALL-UNNAMED', '-cp', '/l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build:/l/util.nightly/build', '--add-modules', 'jdk.incubator.vector', '--enable-native-access=ALL-UNNAMED', '-XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmTrue.jfr', 'knn.KnnGraphTester', '-maxConn', '32', '-dim', '1024', '-docs', '/big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec', '-ndoc', '8000000', '-topK', '100', '-numIndexThreads', '8', '-beamWidthIndex', '100', '-search-and-stats', '/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec', '-metric', 'dot_product', '-numMergeThread', '16', '-numMergeWorker', '48', '-forceMerge'] WARNING: Using incubator modules: jdk.incubator.vector [0.213s][info][jfr,startup] Started recording 1. [0.213s][info][jfr,startup] [0.213s][info][jfr,startup] Use jcmd 2250872 JFR.dump name=1 to copy recording data to file. maxConn = 32 Vector Dimensions: 1024 numDocs = 8000000 beamWidth = 100 similarity = DOT_PRODUCT Seed = 2379441813423909 index key = dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-fm Index Path = knn-reuse/indices/dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-fm will now reindex: index does not exist May 15, 2026 8:59:09 PM org.apache.lucene.internal.vectorization.PanamaVectorizationProvider logIncubatorSetup INFO: Java vector incubator API enabled; uses preferredBitSize=256; FMA enabled creating index in knn-reuse/indices/dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-fm 39709371 doc vectors in docsPath "/big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec" parentJoin=false Done indexing 25000 documents. Done indexing 50000 documents. Done indexing 75000 documents. Done indexing 100000 documents. Done indexing 125000 documents. Done indexing 150000 documents. Done indexing 175000 documents. Done indexing 200000 documents. Done indexing 225000 documents. Done indexing 250000 documents. Done indexing 275000 documents. Done indexing 300000 documents. Done indexing 325000 documents. Done indexing 350000 documents. Done indexing 375000 documents. Done indexing 400000 documents. Done indexing 425000 documents. Done indexing 450000 documents. Done indexing 475000 documents. Done indexing 500000 documents. Done indexing 525000 documents. Done indexing 550000 documents. Done indexing 575000 documents. Done indexing 600000 documents. Done indexing 625000 documents. Done indexing 650000 documents. Done indexing 675000 documents. Done indexing 700000 documents. Done indexing 725000 documents. Done indexing 750000 documents. Done indexing 775000 documents. Done indexing 800000 documents. Done indexing 825000 documents. Done indexing 850000 documents. Done indexing 875000 documents. Done indexing 900000 documents. Done indexing 925000 documents. Done indexing 950000 documents. Done indexing 975000 documents. Done indexing 1000000 documents. Done indexing 1025000 documents. Done indexing 1050000 documents. Done indexing 1075000 documents. Done indexing 1100000 documents. Done indexing 1125000 documents. Done indexing 1150000 documents. Done indexing 1175000 documents. Done indexing 1200000 documents. Done indexing 1225000 documents. Done indexing 1250000 documents. Done indexing 1275000 documents. Done indexing 1300000 documents. Done indexing 1325000 documents. Done indexing 1350000 documents. Done indexing 1375000 documents. Done indexing 1400000 documents. Done indexing 1425000 documents. Done indexing 1450000 documents. Done indexing 1475000 documents. Done indexing 1500000 documents. Done indexing 1525000 documents. Done indexing 1550000 documents. Done indexing 1575000 documents. Done indexing 1600000 documents. Done indexing 1625000 documents. Done indexing 1650000 documents. Done indexing 1675000 documents. Done indexing 1700000 documents. Done indexing 1725000 documents. Done indexing 1750000 documents. Done indexing 1775000 documents. Done indexing 1800000 documents. Done indexing 1825000 documents. Done indexing 1850000 documents. Done indexing 1875000 documents. Done indexing 1900000 documents. Done indexing 1925000 documents. Done indexing 1950000 documents. Done indexing 1975000 documents. Done indexing 2000000 documents. Done indexing 2025000 documents. Done indexing 2050000 documents. Done indexing 2075000 documents. Done indexing 2100000 documents. Done indexing 2125000 documents. Done indexing 2150000 documents. Done indexing 2175000 documents. Done indexing 2200000 documents. Done indexing 2225000 documents. Done indexing 2250000 documents. Done indexing 2275000 documents. Done indexing 2300000 documents. Done indexing 2325000 documents. Done indexing 2350000 documents. Done indexing 2375000 documents. Done indexing 2400000 documents. Done indexing 2425000 documents. Done indexing 2450000 documents. Done indexing 2475000 documents. Done indexing 2500000 documents. Done indexing 2525000 documents. Done indexing 2550000 documents. Done indexing 2575000 documents. Done indexing 2600000 documents. Done indexing 2625000 documents. Done indexing 2650000 documents. Done indexing 2675000 documents. Done indexing 2700000 documents. Done indexing 2725000 documents. Done indexing 2750000 documents. Done indexing 2775000 documents. Done indexing 2800000 documents. Done indexing 2825000 documents. Done indexing 2850000 documents. Done indexing 2875000 documents. Done indexing 2900000 documents. Done indexing 2925000 documents. Done indexing 2950000 documents. Done indexing 2975000 documents. Done indexing 3000000 documents. Done indexing 3025000 documents. Done indexing 3050000 documents. Done indexing 3075000 documents. Done indexing 3100000 documents. Done indexing 3125000 documents. Done indexing 3150000 documents. Done indexing 3175000 documents. Done indexing 3200000 documents. Done indexing 3225000 documents. Done indexing 3250000 documents. Done indexing 3275000 documents. Done indexing 3300000 documents. Done indexing 3325000 documents. Done indexing 3350000 documents. Done indexing 3375000 documents. Done indexing 3400000 documents. Done indexing 3425000 documents. Done indexing 3450000 documents. Done indexing 3475000 documents. Done indexing 3500000 documents. Done indexing 3525000 documents. Done indexing 3550000 documents. Done indexing 3575000 documents. Done indexing 3600000 documents. Done indexing 3625000 documents. Done indexing 3650000 documents. Done indexing 3675000 documents. Done indexing 3700000 documents. Done indexing 3725000 documents. Done indexing 3750000 documents. Done indexing 3775000 documents. Done indexing 3800000 documents. Done indexing 3825000 documents. Done indexing 3850000 documents. Done indexing 3875000 documents. Done indexing 3900000 documents. Done indexing 3925000 documents. Done indexing 3950000 documents. Done indexing 3975000 documents. Done indexing 4000000 documents. Done indexing 4025000 documents. Done indexing 4050000 documents. Done indexing 4075000 documents. Done indexing 4100000 documents. Done indexing 4125000 documents. Done indexing 4150000 documents. Done indexing 4175000 documents. Done indexing 4200000 documents. Done indexing 4225000 documents. Done indexing 4250000 documents. Done indexing 4275000 documents. Done indexing 4300000 documents. Done indexing 4325000 documents. Done indexing 4350000 documents. Done indexing 4375000 documents. Done indexing 4400000 documents. Done indexing 4425000 documents. Done indexing 4450000 documents. Done indexing 4475000 documents. Done indexing 4500000 documents. Done indexing 4525000 documents. Done indexing 4550000 documents. Done indexing 4575000 documents. Done indexing 4600000 documents. Done indexing 4625000 documents. Done indexing 4650000 documents. Done indexing 4675000 documents. Done indexing 4700000 documents. Done indexing 4725000 documents. Done indexing 4750000 documents. Done indexing 4775000 documents. Done indexing 4800000 documents. Done indexing 4825000 documents. Done indexing 4850000 documents. Done indexing 4875000 documents. Done indexing 4900000 documents. Done indexing 4925000 documents. Done indexing 4950000 documents. Done indexing 4975000 documents. Done indexing 5000000 documents. Done indexing 5025000 documents. Done indexing 5050000 documents. Done indexing 5075000 documents. Done indexing 5100000 documents. Done indexing 5125000 documents. Done indexing 5150000 documents. Done indexing 5175000 documents. Done indexing 5200000 documents. Done indexing 5225000 documents. Done indexing 5250000 documents. Done indexing 5275000 documents. Done indexing 5300000 documents. Done indexing 5325000 documents. Done indexing 5350000 documents. Done indexing 5375000 documents. Done indexing 5400000 documents. Done indexing 5425000 documents. Done indexing 5450000 documents. Done indexing 5475000 documents. Done indexing 5500000 documents. Done indexing 5525000 documents. Done indexing 5550000 documents. Done indexing 5575000 documents. Done indexing 5600000 documents. Done indexing 5625000 documents. Done indexing 5650000 documents. Done indexing 5675000 documents. Done indexing 5700000 documents. Done indexing 5725000 documents. Done indexing 5750000 documents. Done indexing 5775000 documents. Done indexing 5800000 documents. Done indexing 5825000 documents. Done indexing 5850000 documents. Done indexing 5875000 documents. Done indexing 5900000 documents. Done indexing 5925000 documents. Done indexing 5950000 documents. Done indexing 5975000 documents. Done indexing 6000000 documents. Done indexing 6025000 documents. Done indexing 6050000 documents. Done indexing 6075000 documents. Done indexing 6100000 documents. Done indexing 6125000 documents. Done indexing 6150000 documents. Done indexing 6175000 documents. Done indexing 6200000 documents. Done indexing 6225000 documents. Done indexing 6250000 documents. Done indexing 6275000 documents. Done indexing 6300000 documents. Done indexing 6325000 documents. Done indexing 6350000 documents. Done indexing 6375000 documents. Done indexing 6400000 documents. Done indexing 6425000 documents. Done indexing 6450000 documents. Done indexing 6475000 documents. Done indexing 6500000 documents. Done indexing 6525000 documents. Done indexing 6550000 documents. Done indexing 6575000 documents. Done indexing 6600000 documents. Done indexing 6625000 documents. Done indexing 6650000 documents. Done indexing 6675000 documents. Done indexing 6700000 documents. Done indexing 6725000 documents. Done indexing 6750000 documents. Done indexing 6775000 documents. Done indexing 6800000 documents. Done indexing 6825000 documents. Done indexing 6850000 documents. Done indexing 6875000 documents. Done indexing 6900000 documents. Done indexing 6925000 documents. Done indexing 6950000 documents. Done indexing 6975000 documents. Done indexing 7000000 documents. Done indexing 7025000 documents. Done indexing 7050000 documents. Done indexing 7075000 documents. Done indexing 7100000 documents. Done indexing 7125000 documents. Done indexing 7150000 documents. Done indexing 7175000 documents. Done indexing 7200000 documents. Done indexing 7225000 documents. Done indexing 7250000 documents. Done indexing 7275000 documents. Done indexing 7300000 documents. Done indexing 7325000 documents. Done indexing 7350000 documents. Done indexing 7375000 documents. Done indexing 7400000 documents. Done indexing 7425000 documents. Done indexing 7450000 documents. Done indexing 7475000 documents. Done indexing 7500000 documents. Done indexing 7525000 documents. Done indexing 7550000 documents. Done indexing 7575000 documents. Done indexing 7600000 documents. Done indexing 7625000 documents. Done indexing 7650000 documents. Done indexing 7675000 documents. Done indexing 7700000 documents. Done indexing 7725000 documents. Done indexing 7750000 documents. Done indexing 7775000 documents. Done indexing 7800000 documents. Done indexing 7825000 documents. Done indexing 7850000 documents. Done indexing 7875000 documents. Done indexing 7900000 documents. Done indexing 7925000 documents. Done indexing 7950000 documents. Done indexing 7975000 documents. Done indexing 8000000 documents. now IndexWriter.commit() now wait for already running merges to finish 0.0 sec: 237 segments, 25 merges 750.8s _15h: 8 segs, 310.5 K docs, 1239.2 MB 644.5s _16u: 8 segs, 109.8 K docs, 436.8 MB 611.0s _179: 8 segs, 206.8 K docs, 824.7 MB 579.7s _17p: 8 segs, 38.3 K docs, 151.8 MB 525.9s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 509.3s _18j: 12 segs, 58.0 K docs, 229.8 MB 424.2s _19g: 10 segs, 48.6 K docs, 192.4 MB 354.6s _1aa: 9 segs, 43.7 K docs, 173.1 MB 271.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 256.8s _1bq: 8 segs, 37.9 K docs, 150.0 MB 240.7s _1by: 8 segs, 87.5 K docs, 347.9 MB 227.9s _1c5: 8 segs, 174.2 K docs, 694.3 MB 213.8s _1cc: 8 segs, 116.0 K docs, 461.8 MB 200.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 153.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 142.5s _1df: 8 segs, 73.9 K docs, 293.5 MB 131.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 117.1s _1dv: 8 segs, 247.1 K docs, 985.9 MB 103.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 90.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 80.4s _1ei: 12 segs, 59.1 K docs, 233.9 MB 59.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 37.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 17.6s _1fg: 10 segs, 49.3 K docs, 195.1 MB 5.0 sec: 237 segments, 25 merges 755.8s _15h: 8 segs, 310.5 K docs, 1239.2 MB 649.5s _16u: 8 segs, 109.8 K docs, 436.8 MB 616.0s _179: 8 segs, 206.8 K docs, 824.7 MB 584.7s _17p: 8 segs, 38.3 K docs, 151.8 MB 530.9s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 514.3s _18j: 12 segs, 58.0 K docs, 229.8 MB 429.2s _19g: 10 segs, 48.6 K docs, 192.4 MB 359.6s _1aa: 9 segs, 43.7 K docs, 173.1 MB 276.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 261.8s _1bq: 8 segs, 37.9 K docs, 150.0 MB 245.7s _1by: 8 segs, 87.5 K docs, 347.9 MB 232.9s _1c5: 8 segs, 174.2 K docs, 694.3 MB 218.8s _1cc: 8 segs, 116.0 K docs, 461.8 MB 205.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 158.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 147.5s _1df: 8 segs, 73.9 K docs, 293.5 MB 136.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 122.1s _1dv: 8 segs, 247.1 K docs, 985.9 MB 108.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 95.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 85.4s _1ei: 12 segs, 59.1 K docs, 233.9 MB 64.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 42.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 22.6s _1fg: 10 segs, 49.3 K docs, 195.1 MB 5.0s _1fp: 15 segs, 62.4 K docs, 246.9 MB 10.0 sec: 230 segments, 24 merges 760.8s _15h: 8 segs, 310.5 K docs, 1239.2 MB 654.5s _16u: 8 segs, 109.8 K docs, 436.8 MB 621.0s _179: 8 segs, 206.8 K docs, 824.7 MB 589.7s _17p: 8 segs, 38.3 K docs, 151.8 MB 536.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 519.3s _18j: 12 segs, 58.0 K docs, 229.8 MB 434.2s _19g: 10 segs, 48.6 K docs, 192.4 MB 364.6s _1aa: 9 segs, 43.7 K docs, 173.1 MB 281.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 250.7s _1by: 8 segs, 87.5 K docs, 347.9 MB 237.9s _1c5: 8 segs, 174.2 K docs, 694.3 MB 223.8s _1cc: 8 segs, 116.0 K docs, 461.8 MB 210.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 163.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 152.5s _1df: 8 segs, 73.9 K docs, 293.5 MB 141.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 127.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 113.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 100.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 90.4s _1ei: 12 segs, 59.1 K docs, 233.9 MB 69.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 47.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 27.6s _1fg: 10 segs, 49.3 K docs, 195.1 MB 10.0s _1fp: 15 segs, 62.4 K docs, 246.9 MB 15.0 sec: 230 segments, 24 merges 765.8s _15h: 8 segs, 310.5 K docs, 1239.2 MB 659.5s _16u: 8 segs, 109.8 K docs, 436.8 MB 626.0s _179: 8 segs, 206.8 K docs, 824.7 MB 594.7s _17p: 8 segs, 38.3 K docs, 151.8 MB 541.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 524.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 439.2s _19g: 10 segs, 48.6 K docs, 192.4 MB 369.6s _1aa: 9 segs, 43.7 K docs, 173.1 MB 286.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 255.7s _1by: 8 segs, 87.5 K docs, 347.9 MB 242.9s _1c5: 8 segs, 174.2 K docs, 694.3 MB 228.9s _1cc: 8 segs, 116.0 K docs, 461.8 MB 215.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 168.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 157.5s _1df: 8 segs, 73.9 K docs, 293.5 MB 146.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 132.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 118.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 105.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 95.4s _1ei: 12 segs, 59.1 K docs, 233.9 MB 74.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 52.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 32.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 15.0s _1fp: 15 segs, 62.4 K docs, 246.9 MB 20.0 sec: 230 segments, 24 merges 770.9s _15h: 8 segs, 310.5 K docs, 1239.2 MB 664.5s _16u: 8 segs, 109.8 K docs, 436.8 MB 631.0s _179: 8 segs, 206.8 K docs, 824.7 MB 599.7s _17p: 8 segs, 38.3 K docs, 151.8 MB 546.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 529.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 444.3s _19g: 10 segs, 48.6 K docs, 192.4 MB 374.6s _1aa: 9 segs, 43.7 K docs, 173.1 MB 291.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 260.7s _1by: 8 segs, 87.5 K docs, 347.9 MB 247.9s _1c5: 8 segs, 174.2 K docs, 694.3 MB 233.9s _1cc: 8 segs, 116.0 K docs, 461.8 MB 220.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 173.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 162.5s _1df: 8 segs, 73.9 K docs, 293.5 MB 151.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 137.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 123.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 110.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 100.4s _1ei: 12 segs, 59.1 K docs, 233.9 MB 79.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 57.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 37.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 20.0s _1fp: 15 segs, 62.4 K docs, 246.9 MB 25.0 sec: 230 segments, 24 merges 775.9s _15h: 8 segs, 310.5 K docs, 1239.2 MB 669.6s _16u: 8 segs, 109.8 K docs, 436.8 MB 636.1s _179: 8 segs, 206.8 K docs, 824.7 MB 604.7s _17p: 8 segs, 38.3 K docs, 151.8 MB 551.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 534.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 449.3s _19g: 10 segs, 48.6 K docs, 192.4 MB 379.6s _1aa: 9 segs, 43.7 K docs, 173.1 MB 296.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 265.8s _1by: 8 segs, 87.5 K docs, 347.9 MB 252.9s _1c5: 8 segs, 174.2 K docs, 694.3 MB 238.9s _1cc: 8 segs, 116.0 K docs, 461.8 MB 225.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 178.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 167.5s _1df: 8 segs, 73.9 K docs, 293.5 MB 156.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 142.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 128.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 115.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 105.4s _1ei: 12 segs, 59.1 K docs, 233.9 MB 84.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 62.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 42.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 25.0s _1fp: 15 segs, 62.4 K docs, 246.9 MB 30.1 sec: 223 segments, 23 merges 780.9s _15h: 8 segs, 310.5 K docs, 1239.2 MB 674.6s _16u: 8 segs, 109.8 K docs, 436.8 MB 641.1s _179: 8 segs, 206.8 K docs, 824.7 MB 556.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 539.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 454.3s _19g: 10 segs, 48.6 K docs, 192.4 MB 384.6s _1aa: 9 segs, 43.7 K docs, 173.1 MB 301.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 270.8s _1by: 8 segs, 87.5 K docs, 347.9 MB 257.9s _1c5: 8 segs, 174.2 K docs, 694.3 MB 243.9s _1cc: 8 segs, 116.0 K docs, 461.8 MB 231.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 183.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 172.5s _1df: 8 segs, 73.9 K docs, 293.5 MB 161.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 147.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 133.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 120.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 110.4s _1ei: 12 segs, 59.1 K docs, 233.9 MB 89.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 67.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 47.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 30.1s _1fp: 15 segs, 62.4 K docs, 246.9 MB 35.1 sec: 223 segments, 23 merges 785.9s _15h: 8 segs, 310.5 K docs, 1239.2 MB 679.6s _16u: 8 segs, 109.8 K docs, 436.8 MB 646.1s _179: 8 segs, 206.8 K docs, 824.7 MB 561.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 544.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 459.3s _19g: 10 segs, 48.6 K docs, 192.4 MB 389.6s _1aa: 9 segs, 43.7 K docs, 173.1 MB 306.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 275.8s _1by: 8 segs, 87.5 K docs, 347.9 MB 262.9s _1c5: 8 segs, 174.2 K docs, 694.3 MB 248.9s _1cc: 8 segs, 116.0 K docs, 461.8 MB 236.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 188.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 177.5s _1df: 8 segs, 73.9 K docs, 293.5 MB 166.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 152.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 138.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 125.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 115.4s _1ei: 12 segs, 59.1 K docs, 233.9 MB 94.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 72.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 52.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 35.1s _1fp: 15 segs, 62.4 K docs, 246.9 MB 40.1 sec: 215 segments, 22 merges 790.9s _15h: 8 segs, 310.5 K docs, 1239.2 MB 684.6s _16u: 8 segs, 109.8 K docs, 436.8 MB 651.1s _179: 8 segs, 206.8 K docs, 824.7 MB 566.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 549.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 464.3s _19g: 10 segs, 48.6 K docs, 192.4 MB 311.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 280.8s _1by: 8 segs, 87.5 K docs, 347.9 MB 267.9s _1c5: 8 segs, 174.2 K docs, 694.3 MB 253.9s _1cc: 8 segs, 116.0 K docs, 461.8 MB 241.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 193.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 182.5s _1df: 8 segs, 73.9 K docs, 293.5 MB 171.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 157.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 143.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 130.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 120.4s _1ei: 12 segs, 59.1 K docs, 233.9 MB 99.1s _1eu: 11 segs, 55.1 K docs, 218.0 MB 77.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 57.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 40.1s _1fp: 15 segs, 62.4 K docs, 246.9 MB 45.1 sec: 215 segments, 22 merges 795.9s _15h: 8 segs, 310.5 K docs, 1239.2 MB 689.6s _16u: 8 segs, 109.8 K docs, 436.8 MB 656.1s _179: 8 segs, 206.8 K docs, 824.7 MB 571.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 554.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 469.3s _19g: 10 segs, 48.6 K docs, 192.4 MB 316.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 285.8s _1by: 8 segs, 87.5 K docs, 347.9 MB 272.9s _1c5: 8 segs, 174.2 K docs, 694.3 MB 258.9s _1cc: 8 segs, 116.0 K docs, 461.8 MB 246.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 198.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 187.5s _1df: 8 segs, 73.9 K docs, 293.5 MB 176.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 162.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 148.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 135.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 125.4s _1ei: 12 segs, 59.1 K docs, 233.9 MB 104.1s _1eu: 11 segs, 55.1 K docs, 218.0 MB 82.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 62.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 45.1s _1fp: 15 segs, 62.4 K docs, 246.9 MB 50.1 sec: 215 segments, 22 merges 800.9s _15h: 8 segs, 310.5 K docs, 1239.2 MB 694.6s _16u: 8 segs, 109.8 K docs, 436.8 MB 661.1s _179: 8 segs, 206.8 K docs, 824.7 MB 576.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 559.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 474.3s _19g: 10 segs, 48.6 K docs, 192.4 MB 321.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 290.8s _1by: 8 segs, 87.5 K docs, 347.9 MB 277.9s _1c5: 8 segs, 174.2 K docs, 694.3 MB 263.9s _1cc: 8 segs, 116.0 K docs, 461.8 MB 251.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 203.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 192.5s _1df: 8 segs, 73.9 K docs, 293.5 MB 181.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 167.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 153.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 140.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 130.4s _1ei: 12 segs, 59.1 K docs, 233.9 MB 109.1s _1eu: 11 segs, 55.1 K docs, 218.0 MB 87.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 67.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 50.1s _1fp: 15 segs, 62.4 K docs, 246.9 MB 55.1 sec: 215 segments, 22 merges 805.9s _15h: 8 segs, 310.5 K docs, 1239.2 MB 699.6s _16u: 8 segs, 109.8 K docs, 436.8 MB 666.1s _179: 8 segs, 206.8 K docs, 824.7 MB 581.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 564.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 479.3s _19g: 10 segs, 48.6 K docs, 192.4 MB 326.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 295.8s _1by: 8 segs, 87.5 K docs, 347.9 MB 283.0s _1c5: 8 segs, 174.2 K docs, 694.3 MB 268.9s _1cc: 8 segs, 116.0 K docs, 461.8 MB 256.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 208.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 197.5s _1df: 8 segs, 73.9 K docs, 293.5 MB 186.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 172.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 158.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 145.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 135.4s _1ei: 12 segs, 59.1 K docs, 233.9 MB 114.1s _1eu: 11 segs, 55.1 K docs, 218.0 MB 92.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 72.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 55.1s _1fp: 15 segs, 62.4 K docs, 246.9 MB 60.1 sec: 215 segments, 22 merges 810.9s _15h: 8 segs, 310.5 K docs, 1239.2 MB 704.6s _16u: 8 segs, 109.8 K docs, 436.8 MB 671.1s _179: 8 segs, 206.8 K docs, 824.7 MB 586.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 569.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 484.3s _19g: 10 segs, 48.6 K docs, 192.4 MB 331.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 300.8s _1by: 8 segs, 87.5 K docs, 347.9 MB 288.0s _1c5: 8 segs, 174.2 K docs, 694.3 MB 273.9s _1cc: 8 segs, 116.0 K docs, 461.8 MB 261.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 213.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 202.5s _1df: 8 segs, 73.9 K docs, 293.5 MB 191.7s _1dn: 8 segs, 72.7 K docs, 288.7 MB 177.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 163.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 150.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 140.4s _1ei: 12 segs, 59.1 K docs, 233.9 MB 119.1s _1eu: 11 segs, 55.1 K docs, 218.0 MB 97.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 77.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 60.1s _1fp: 15 segs, 62.4 K docs, 246.9 MB 65.0 sec: 215 segments, 22 merges 815.8s _15h: 8 segs, 310.5 K docs, 1239.2 MB 709.5s _16u: 8 segs, 109.8 K docs, 436.8 MB 676.0s _179: 8 segs, 206.8 K docs, 824.7 MB 590.9s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 574.3s _18j: 12 segs, 58.0 K docs, 229.8 MB 489.2s _19g: 10 segs, 48.6 K docs, 192.4 MB 336.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 305.7s _1by: 8 segs, 87.5 K docs, 347.9 MB 292.9s _1c5: 8 segs, 174.2 K docs, 694.3 MB 278.8s _1cc: 8 segs, 116.0 K docs, 461.8 MB 265.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 218.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 207.5s _1df: 8 segs, 73.9 K docs, 293.5 MB 196.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 182.1s _1dv: 8 segs, 247.1 K docs, 985.9 MB 168.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 155.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 145.4s _1ei: 12 segs, 59.1 K docs, 233.9 MB 124.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 102.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 82.6s _1fg: 10 segs, 49.3 K docs, 195.1 MB 65.0s _1fp: 15 segs, 62.4 K docs, 246.9 MB 70.0 sec: 215 segments, 22 merges 820.8s _15h: 8 segs, 310.5 K docs, 1239.2 MB 714.5s _16u: 8 segs, 109.8 K docs, 436.8 MB 681.0s _179: 8 segs, 206.8 K docs, 824.7 MB 595.9s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 579.3s _18j: 12 segs, 58.0 K docs, 229.8 MB 494.2s _19g: 10 segs, 48.6 K docs, 192.4 MB 341.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 310.7s _1by: 8 segs, 87.5 K docs, 347.9 MB 297.9s _1c5: 8 segs, 174.2 K docs, 694.3 MB 283.8s _1cc: 8 segs, 116.0 K docs, 461.8 MB 270.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 223.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 212.5s _1df: 8 segs, 73.9 K docs, 293.5 MB 201.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 187.1s _1dv: 8 segs, 247.1 K docs, 985.9 MB 173.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 160.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 150.4s _1ei: 12 segs, 59.1 K docs, 233.9 MB 129.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 107.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 87.6s _1fg: 10 segs, 49.3 K docs, 195.1 MB 70.0s _1fp: 15 segs, 62.4 K docs, 246.9 MB 75.0 sec: 208 segments, 21 merges 825.8s _15h: 8 segs, 310.5 K docs, 1239.2 MB 719.5s _16u: 8 segs, 109.8 K docs, 436.8 MB 686.0s _179: 8 segs, 206.8 K docs, 824.7 MB 600.9s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 584.3s _18j: 12 segs, 58.0 K docs, 229.8 MB 499.2s _19g: 10 segs, 48.6 K docs, 192.4 MB 346.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 315.7s _1by: 8 segs, 87.5 K docs, 347.9 MB 302.9s _1c5: 8 segs, 174.2 K docs, 694.3 MB 288.8s _1cc: 8 segs, 116.0 K docs, 461.8 MB 275.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 228.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 206.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 192.1s _1dv: 8 segs, 247.1 K docs, 985.9 MB 178.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 165.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 155.4s _1ei: 12 segs, 59.1 K docs, 233.9 MB 134.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 112.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 92.6s _1fg: 10 segs, 49.3 K docs, 195.1 MB 75.0s _1fp: 15 segs, 62.4 K docs, 246.9 MB 80.0 sec: 208 segments, 21 merges 830.8s _15h: 8 segs, 310.5 K docs, 1239.2 MB 724.5s _16u: 8 segs, 109.8 K docs, 436.8 MB 691.0s _179: 8 segs, 206.8 K docs, 824.7 MB 606.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 589.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 504.2s _19g: 10 segs, 48.6 K docs, 192.4 MB 351.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 320.7s _1by: 8 segs, 87.5 K docs, 347.9 MB 307.9s _1c5: 8 segs, 174.2 K docs, 694.3 MB 293.9s _1cc: 8 segs, 116.0 K docs, 461.8 MB 280.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 233.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 211.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 197.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 183.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 170.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 160.4s _1ei: 12 segs, 59.1 K docs, 233.9 MB 139.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 117.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 97.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 80.0s _1fp: 15 segs, 62.4 K docs, 246.9 MB 85.0 sec: 197 segments, 20 merges 835.8s _15h: 8 segs, 310.5 K docs, 1239.2 MB 729.5s _16u: 8 segs, 109.8 K docs, 436.8 MB 696.0s _179: 8 segs, 206.8 K docs, 824.7 MB 611.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 594.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 509.2s _19g: 10 segs, 48.6 K docs, 192.4 MB 356.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 325.7s _1by: 8 segs, 87.5 K docs, 347.9 MB 312.9s _1c5: 8 segs, 174.2 K docs, 694.3 MB 298.9s _1cc: 8 segs, 116.0 K docs, 461.8 MB 285.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 238.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 216.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 202.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 188.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 175.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 144.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 122.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 102.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 85.0s _1fp: 15 segs, 62.4 K docs, 246.9 MB 90.0 sec: 197 segments, 20 merges 840.9s _15h: 8 segs, 310.5 K docs, 1239.2 MB 734.5s _16u: 8 segs, 109.8 K docs, 436.8 MB 701.0s _179: 8 segs, 206.8 K docs, 824.7 MB 616.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 599.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 514.3s _19g: 10 segs, 48.6 K docs, 192.4 MB 361.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 330.7s _1by: 8 segs, 87.5 K docs, 347.9 MB 317.9s _1c5: 8 segs, 174.2 K docs, 694.3 MB 303.9s _1cc: 8 segs, 116.0 K docs, 461.8 MB 290.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 243.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 221.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 207.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 193.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 180.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 149.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 127.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 107.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 90.0s _1fp: 15 segs, 62.4 K docs, 246.9 MB 95.0 sec: 197 segments, 20 merges 845.9s _15h: 8 segs, 310.5 K docs, 1239.2 MB 739.6s _16u: 8 segs, 109.8 K docs, 436.8 MB 706.1s _179: 8 segs, 206.8 K docs, 824.7 MB 621.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 604.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 519.3s _19g: 10 segs, 48.6 K docs, 192.4 MB 366.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 335.8s _1by: 8 segs, 87.5 K docs, 347.9 MB 322.9s _1c5: 8 segs, 174.2 K docs, 694.3 MB 308.9s _1cc: 8 segs, 116.0 K docs, 461.8 MB 295.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 248.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 226.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 212.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 198.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 185.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 154.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 132.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 112.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 95.0s _1fp: 15 segs, 62.4 K docs, 246.9 MB 100.1 sec: 190 segments, 19 merges 850.9s _15h: 8 segs, 310.5 K docs, 1239.2 MB 744.6s _16u: 8 segs, 109.8 K docs, 436.8 MB 711.1s _179: 8 segs, 206.8 K docs, 824.7 MB 626.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 609.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 524.3s _19g: 10 segs, 48.6 K docs, 192.4 MB 371.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 340.8s _1by: 8 segs, 87.5 K docs, 347.9 MB 327.9s _1c5: 8 segs, 174.2 K docs, 694.3 MB 301.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 253.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 231.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 217.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 203.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 190.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 159.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 137.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 117.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 100.1s _1fp: 15 segs, 62.4 K docs, 246.9 MB 105.1 sec: 190 segments, 19 merges 855.9s _15h: 8 segs, 310.5 K docs, 1239.2 MB 749.6s _16u: 8 segs, 109.8 K docs, 436.8 MB 716.1s _179: 8 segs, 206.8 K docs, 824.7 MB 631.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 614.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 529.3s _19g: 10 segs, 48.6 K docs, 192.4 MB 376.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 345.8s _1by: 8 segs, 87.5 K docs, 347.9 MB 332.9s _1c5: 8 segs, 174.2 K docs, 694.3 MB 306.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 258.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 236.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 222.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 208.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 195.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 164.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 142.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 122.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 105.1s _1fp: 15 segs, 62.4 K docs, 246.9 MB 110.1 sec: 183 segments, 18 merges 754.6s _16u: 8 segs, 109.8 K docs, 436.8 MB 721.1s _179: 8 segs, 206.8 K docs, 824.7 MB 636.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 619.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 534.3s _19g: 10 segs, 48.6 K docs, 192.4 MB 381.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 350.8s _1by: 8 segs, 87.5 K docs, 347.9 MB 337.9s _1c5: 8 segs, 174.2 K docs, 694.3 MB 311.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 263.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 241.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 227.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 213.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 200.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 169.1s _1eu: 11 segs, 55.1 K docs, 218.0 MB 147.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 127.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 110.1s _1fp: 15 segs, 62.4 K docs, 246.9 MB 115.1 sec: 183 segments, 18 merges 759.6s _16u: 8 segs, 109.8 K docs, 436.8 MB 726.1s _179: 8 segs, 206.8 K docs, 824.7 MB 641.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 624.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 539.3s _19g: 10 segs, 48.6 K docs, 192.4 MB 386.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 355.8s _1by: 8 segs, 87.5 K docs, 347.9 MB 342.9s _1c5: 8 segs, 174.2 K docs, 694.3 MB 316.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 268.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 246.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 232.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 218.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 205.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 174.1s _1eu: 11 segs, 55.1 K docs, 218.0 MB 152.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 132.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 115.1s _1fp: 15 segs, 62.4 K docs, 246.9 MB 120.1 sec: 183 segments, 18 merges 764.6s _16u: 8 segs, 109.8 K docs, 436.8 MB 731.1s _179: 8 segs, 206.8 K docs, 824.7 MB 646.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 629.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 544.3s _19g: 10 segs, 48.6 K docs, 192.4 MB 391.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 360.8s _1by: 8 segs, 87.5 K docs, 347.9 MB 348.0s _1c5: 8 segs, 174.2 K docs, 694.3 MB 321.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 273.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 251.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 237.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 223.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 210.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 179.1s _1eu: 11 segs, 55.1 K docs, 218.0 MB 157.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 137.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 120.1s _1fp: 15 segs, 62.4 K docs, 246.9 MB 125.1 sec: 176 segments, 18 merges 769.6s _16u: 8 segs, 109.8 K docs, 436.8 MB 736.1s _179: 8 segs, 206.8 K docs, 824.7 MB 651.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 634.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 549.3s _19g: 10 segs, 48.6 K docs, 192.4 MB 396.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 365.8s _1by: 8 segs, 87.5 K docs, 347.9 MB 326.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 278.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 256.7s _1dn: 8 segs, 72.7 K docs, 288.7 MB 242.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 228.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 215.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 184.1s _1eu: 11 segs, 55.1 K docs, 218.0 MB 162.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 142.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 125.1s _1fp: 15 segs, 62.4 K docs, 246.9 MB 3.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 130.1 sec: 176 segments, 18 merges 774.6s _16u: 8 segs, 109.8 K docs, 436.8 MB 741.1s _179: 8 segs, 206.8 K docs, 824.7 MB 656.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 639.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 554.3s _19g: 10 segs, 48.6 K docs, 192.4 MB 401.1s _1bh: 8 segs, 75.4 K docs, 299.7 MB 370.8s _1by: 8 segs, 87.5 K docs, 347.9 MB 331.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 283.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 261.7s _1dn: 8 segs, 72.7 K docs, 288.7 MB 247.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 233.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 220.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 189.1s _1eu: 11 segs, 55.1 K docs, 218.0 MB 167.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 147.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 130.1s _1fp: 15 segs, 62.4 K docs, 246.9 MB 8.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 135.0 sec: 176 segments, 18 merges 779.5s _16u: 8 segs, 109.8 K docs, 436.8 MB 746.0s _179: 8 segs, 206.8 K docs, 824.7 MB 660.9s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 644.3s _18j: 12 segs, 58.0 K docs, 229.8 MB 559.2s _19g: 10 segs, 48.6 K docs, 192.4 MB 406.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 375.7s _1by: 8 segs, 87.5 K docs, 347.9 MB 335.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 288.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 266.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 252.1s _1dv: 8 segs, 247.1 K docs, 985.9 MB 238.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 225.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 194.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 172.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 152.6s _1fg: 10 segs, 49.3 K docs, 195.1 MB 135.0s _1fp: 15 segs, 62.4 K docs, 246.9 MB 13.6s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 140.0 sec: 169 segments, 17 merges 751.0s _179: 8 segs, 206.8 K docs, 824.7 MB 665.9s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 649.3s _18j: 12 segs, 58.0 K docs, 229.8 MB 564.2s _19g: 10 segs, 48.6 K docs, 192.4 MB 411.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 380.7s _1by: 8 segs, 87.5 K docs, 347.9 MB 340.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 293.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 271.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 257.1s _1dv: 8 segs, 247.1 K docs, 985.9 MB 243.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 230.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 199.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 177.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 157.6s _1fg: 10 segs, 49.3 K docs, 195.1 MB 140.0s _1fp: 15 segs, 62.4 K docs, 246.9 MB 18.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 145.0 sec: 169 segments, 17 merges 756.0s _179: 8 segs, 206.8 K docs, 824.7 MB 671.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 654.3s _18j: 12 segs, 58.0 K docs, 229.8 MB 569.2s _19g: 10 segs, 48.6 K docs, 192.4 MB 416.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 385.7s _1by: 8 segs, 87.5 K docs, 347.9 MB 345.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 298.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 276.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 262.1s _1dv: 8 segs, 247.1 K docs, 985.9 MB 248.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 235.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 204.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 182.4s _1f5: 10 segs, 49.1 K docs, 194.6 MB 162.6s _1fg: 10 segs, 49.3 K docs, 195.1 MB 145.0s _1fp: 15 segs, 62.4 K docs, 246.9 MB 23.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 150.0 sec: 160 segments, 16 merges 761.0s _179: 8 segs, 206.8 K docs, 824.7 MB 676.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 659.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 574.2s _19g: 10 segs, 48.6 K docs, 192.4 MB 421.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 390.7s _1by: 8 segs, 87.5 K docs, 347.9 MB 350.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 303.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 281.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 267.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 253.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 240.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 209.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 167.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 150.0s _1fp: 15 segs, 62.4 K docs, 246.9 MB 28.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 155.0 sec: 160 segments, 16 merges 766.0s _179: 8 segs, 206.8 K docs, 824.7 MB 681.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 664.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 579.2s _19g: 10 segs, 48.6 K docs, 192.4 MB 426.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 395.7s _1by: 8 segs, 87.5 K docs, 347.9 MB 355.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 308.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 286.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 272.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 258.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 245.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 214.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 172.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 155.0s _1fp: 15 segs, 62.4 K docs, 246.9 MB 33.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 160.0 sec: 151 segments, 15 merges 771.0s _179: 8 segs, 206.8 K docs, 824.7 MB 686.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 669.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 431.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 400.8s _1by: 8 segs, 87.5 K docs, 347.9 MB 360.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 313.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 291.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 277.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 263.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 250.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 219.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 177.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 160.0s _1fp: 15 segs, 62.4 K docs, 246.9 MB 38.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 165.0 sec: 151 segments, 15 merges 776.1s _179: 8 segs, 206.8 K docs, 824.7 MB 691.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 674.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 436.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 405.8s _1by: 8 segs, 87.5 K docs, 347.9 MB 366.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 318.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 296.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 282.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 268.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 255.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 224.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 182.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 165.0s _1fp: 15 segs, 62.4 K docs, 246.9 MB 43.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 170.1 sec: 151 segments, 15 merges 781.1s _179: 8 segs, 206.8 K docs, 824.7 MB 696.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 679.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 441.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 410.8s _1by: 8 segs, 87.5 K docs, 347.9 MB 371.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 323.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 301.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 287.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 273.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 260.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 229.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 187.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 170.1s _1fp: 15 segs, 62.4 K docs, 246.9 MB 48.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 175.1 sec: 151 segments, 15 merges 786.1s _179: 8 segs, 206.8 K docs, 824.7 MB 701.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 684.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 446.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 415.8s _1by: 8 segs, 87.5 K docs, 347.9 MB 376.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 328.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 306.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 292.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 278.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 265.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 234.1s _1eu: 11 segs, 55.1 K docs, 218.0 MB 192.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 175.1s _1fp: 15 segs, 62.4 K docs, 246.9 MB 53.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 180.1 sec: 151 segments, 15 merges 791.1s _179: 8 segs, 206.8 K docs, 824.7 MB 706.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 689.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 451.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 420.8s _1by: 8 segs, 87.5 K docs, 347.9 MB 381.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 333.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 311.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 297.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 283.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 270.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 239.1s _1eu: 11 segs, 55.1 K docs, 218.0 MB 197.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 180.1s _1fp: 15 segs, 62.4 K docs, 246.9 MB 58.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 185.1 sec: 151 segments, 15 merges 796.1s _179: 8 segs, 206.8 K docs, 824.7 MB 711.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 694.4s _18j: 12 segs, 58.0 K docs, 229.8 MB 456.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 425.8s _1by: 8 segs, 87.5 K docs, 347.9 MB 386.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 338.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 316.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 302.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 288.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 275.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 244.1s _1eu: 11 segs, 55.1 K docs, 218.0 MB 202.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 185.1s _1fp: 15 segs, 62.4 K docs, 246.9 MB 63.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 190.0 sec: 133 segments, 13 merges 715.9s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 461.0s _1bh: 8 segs, 75.4 K docs, 299.7 MB 430.7s _1by: 8 segs, 87.5 K docs, 347.9 MB 390.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 343.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 321.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 307.1s _1dv: 8 segs, 247.1 K docs, 985.9 MB 293.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 280.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 249.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 207.6s _1fg: 10 segs, 49.3 K docs, 195.1 MB 190.0s _1fp: 15 segs, 62.4 K docs, 246.9 MB 68.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 195.0 sec: 126 segments, 12 merges 720.9s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 435.7s _1by: 8 segs, 87.5 K docs, 347.9 MB 395.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 348.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 326.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 312.1s _1dv: 8 segs, 247.1 K docs, 985.9 MB 298.3s _1e3: 8 segs, 37.8 K docs, 149.7 MB 285.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 254.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 212.6s _1fg: 10 segs, 49.3 K docs, 195.1 MB 195.0s _1fp: 15 segs, 62.4 K docs, 246.9 MB 73.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 200.0 sec: 119 segments, 11 merges 725.9s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 440.7s _1by: 8 segs, 87.5 K docs, 347.9 MB 400.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 353.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 331.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 317.1s _1dv: 8 segs, 247.1 K docs, 985.9 MB 290.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 259.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 217.6s _1fg: 10 segs, 49.3 K docs, 195.1 MB 200.0s _1fp: 15 segs, 62.4 K docs, 246.9 MB 78.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 205.0 sec: 105 segments, 11 merges 731.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 445.7s _1by: 8 segs, 87.5 K docs, 347.9 MB 405.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 358.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 336.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 322.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 295.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 264.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 222.6s _1fg: 10 segs, 49.3 K docs, 195.1 MB 83.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 0.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 210.0 sec: 105 segments, 11 merges 736.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 450.7s _1by: 8 segs, 87.5 K docs, 347.9 MB 410.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 363.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 341.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 327.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 300.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 269.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 227.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 88.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 5.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 215.0 sec: 105 segments, 11 merges 741.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 455.7s _1by: 8 segs, 87.5 K docs, 347.9 MB 415.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 368.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 346.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 332.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 305.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 274.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 232.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 93.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 10.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 220.0 sec: 105 segments, 11 merges 746.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 460.7s _1by: 8 segs, 87.5 K docs, 347.9 MB 420.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 373.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 351.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 337.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 310.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 279.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 237.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 98.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 15.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 225.0 sec: 105 segments, 11 merges 751.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 465.8s _1by: 8 segs, 87.5 K docs, 347.9 MB 425.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 378.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 356.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 342.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 315.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 284.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 242.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 103.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 20.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 230.0 sec: 98 segments, 10 merges 756.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 430.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 383.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 361.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 347.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 320.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 289.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 247.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 108.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 25.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 235.1 sec: 98 segments, 10 merges 761.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 436.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 388.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 366.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 352.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 325.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 294.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 252.7s _1fg: 10 segs, 49.3 K docs, 195.1 MB 113.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 30.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 240.1 sec: 89 segments, 9 merges 766.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 441.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 393.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 371.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 357.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 330.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 299.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 118.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 35.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 245.1 sec: 89 segments, 9 merges 771.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 446.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 398.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 376.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 362.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 335.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 304.0s _1eu: 11 segs, 55.1 K docs, 218.0 MB 123.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 40.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 250.1 sec: 89 segments, 9 merges 776.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 451.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 403.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 381.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 367.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 340.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 309.1s _1eu: 11 segs, 55.1 K docs, 218.0 MB 128.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 45.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 255.1 sec: 79 segments, 8 merges 781.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 456.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 408.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 386.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 372.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 345.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 133.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 50.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 260.1 sec: 79 segments, 8 merges 786.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 461.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 413.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 391.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 377.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 350.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 138.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 55.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 265.1 sec: 79 segments, 8 merges 791.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 466.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 418.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 396.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 382.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 355.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 143.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 60.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 270.1 sec: 79 segments, 8 merges 796.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 471.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 423.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 401.6s _1dn: 8 segs, 72.7 K docs, 288.7 MB 387.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 360.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 148.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 65.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 275.1 sec: 79 segments, 8 merges 801.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 476.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 428.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 406.7s _1dn: 8 segs, 72.7 K docs, 288.7 MB 392.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 365.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 153.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 70.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 280.1 sec: 72 segments, 7 merges 806.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 481.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 433.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 397.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 370.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 158.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 75.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 285.1 sec: 72 segments, 7 merges 811.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 486.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 438.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 402.2s _1dv: 8 segs, 247.1 K docs, 985.9 MB 375.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 163.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 80.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 290.0 sec: 72 segments, 7 merges 815.9s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 490.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 443.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 407.1s _1dv: 8 segs, 247.1 K docs, 985.9 MB 380.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 168.6s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 85.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 295.0 sec: 72 segments, 7 merges 820.9s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 495.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 448.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 412.1s _1dv: 8 segs, 247.1 K docs, 985.9 MB 385.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 173.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 90.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 300.0 sec: 65 segments, 6 merges 825.9s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 500.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 453.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 390.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 178.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 95.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 305.0 sec: 65 segments, 6 merges 830.9s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 505.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 458.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 395.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 183.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 100.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 310.0 sec: 65 segments, 6 merges 836.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 510.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 463.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 400.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 188.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 105.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 315.0 sec: 65 segments, 6 merges 841.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 515.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 468.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 405.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 193.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 110.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 320.0 sec: 65 segments, 6 merges 846.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 520.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 473.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 410.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 198.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 115.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 325.0 sec: 65 segments, 6 merges 851.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 525.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 478.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 415.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 203.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 120.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 330.0 sec: 65 segments, 6 merges 856.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 530.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 483.5s _1d8: 8 segs, 182.6 K docs, 728.0 MB 420.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 208.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 125.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 335.0 sec: 65 segments, 6 merges 861.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 535.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 488.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 425.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 213.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 130.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 340.0 sec: 65 segments, 6 merges 866.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 540.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 493.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 430.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 218.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 135.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 345.0 sec: 65 segments, 6 merges 871.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 545.9s _1cj: 8 segs, 153.2 K docs, 610.3 MB 498.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 435.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 223.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 140.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 350.1 sec: 65 segments, 6 merges 876.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 551.0s _1cj: 8 segs, 153.2 K docs, 610.3 MB 503.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 440.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 228.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 145.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 355.1 sec: 58 segments, 5 merges 881.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 508.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 445.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 233.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 150.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 360.1 sec: 58 segments, 5 merges 886.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 513.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 450.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 238.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 155.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 365.1 sec: 58 segments, 5 merges 891.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 518.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 455.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 243.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 160.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 370.1 sec: 58 segments, 5 merges 896.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 523.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 460.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 248.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 165.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 375.1 sec: 58 segments, 5 merges 901.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 528.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 465.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 253.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 170.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 380.1 sec: 58 segments, 5 merges 906.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 533.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 470.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 258.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 175.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 385.1 sec: 58 segments, 5 merges 911.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 538.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 475.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 263.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 180.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 390.1 sec: 58 segments, 5 merges 916.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 543.6s _1d8: 8 segs, 182.6 K docs, 728.0 MB 480.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 268.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 185.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 395.1 sec: 51 segments, 4 merges 921.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 485.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 273.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 190.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 400.1 sec: 51 segments, 4 merges 926.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 490.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 278.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 195.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 405.1 sec: 51 segments, 4 merges 931.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 495.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 283.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 200.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 410.0 sec: 51 segments, 4 merges 935.9s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 500.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 288.6s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 205.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 415.0 sec: 51 segments, 4 merges 940.9s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 505.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 293.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 210.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 420.0 sec: 51 segments, 4 merges 946.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 510.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 298.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 215.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 425.0 sec: 51 segments, 4 merges 951.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 515.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 303.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 220.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 430.0 sec: 51 segments, 4 merges 956.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 520.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 308.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 225.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 435.1 sec: 51 segments, 4 merges 961.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 525.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 313.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 230.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 440.1 sec: 51 segments, 4 merges 966.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 530.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 318.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 235.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 445.1 sec: 51 segments, 4 merges 971.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 535.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 323.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 240.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 450.1 sec: 51 segments, 4 merges 976.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 540.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 328.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 245.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 455.1 sec: 51 segments, 4 merges 981.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 545.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 333.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 250.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 460.1 sec: 51 segments, 4 merges 986.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 550.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 338.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 255.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 465.1 sec: 51 segments, 4 merges 991.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 555.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 343.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 260.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 470.1 sec: 51 segments, 4 merges 996.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 560.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 348.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 265.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 475.1 sec: 51 segments, 4 merges 1001.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 565.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 353.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 270.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 480.1 sec: 51 segments, 4 merges 1006.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 570.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 358.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 275.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 485.1 sec: 51 segments, 4 merges 1011.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 575.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 363.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 280.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 490.1 sec: 51 segments, 4 merges 1016.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 580.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 368.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 285.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 495.1 sec: 51 segments, 4 merges 1021.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 585.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 373.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 290.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 500.0 sec: 51 segments, 4 merges 1025.9s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 590.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 378.6s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 295.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 505.0 sec: 51 segments, 4 merges 1030.9s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 595.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 383.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 300.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 510.0 sec: 51 segments, 4 merges 1035.9s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 600.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 388.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 305.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 515.0 sec: 51 segments, 4 merges 1040.9s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 605.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 393.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 310.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 520.0 sec: 51 segments, 4 merges 1046.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 610.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 398.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 315.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 525.0 sec: 51 segments, 4 merges 1051.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 615.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 403.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 320.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 530.0 sec: 51 segments, 4 merges 1056.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 620.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 408.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 325.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 535.0 sec: 51 segments, 4 merges 1061.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 625.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 413.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 330.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 540.0 sec: 51 segments, 4 merges 1066.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 630.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 418.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 335.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 545.0 sec: 51 segments, 4 merges 1071.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 635.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 423.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 340.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 550.0 sec: 51 segments, 4 merges 1076.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 640.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 428.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 345.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 555.0 sec: 51 segments, 4 merges 1081.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 645.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 433.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 350.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 560.1 sec: 51 segments, 4 merges 1086.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 650.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 438.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 355.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 565.1 sec: 51 segments, 4 merges 1091.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 655.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 443.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 360.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 570.1 sec: 51 segments, 4 merges 1096.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 660.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 448.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 365.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 575.1 sec: 51 segments, 4 merges 1101.0s _18b: 8 segs, 1088.4 K docs, 4348.7 MB 665.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 453.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 370.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 580.1 sec: 44 segments, 4 merges 670.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 458.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 375.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 4.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 585.1 sec: 44 segments, 4 merges 675.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 463.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 380.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 9.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 590.1 sec: 44 segments, 4 merges 680.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 468.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 385.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 14.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 595.1 sec: 44 segments, 4 merges 685.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 473.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 390.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 19.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 600.1 sec: 44 segments, 4 merges 690.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 478.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 395.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 24.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 605.0 sec: 44 segments, 4 merges 695.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 483.6s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 400.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 29.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 610.0 sec: 44 segments, 4 merges 700.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 488.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 405.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 34.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 615.0 sec: 44 segments, 4 merges 705.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 493.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 410.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 39.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 620.0 sec: 44 segments, 4 merges 710.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 498.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 415.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 44.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 625.0 sec: 44 segments, 4 merges 715.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 503.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 420.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 49.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 630.0 sec: 44 segments, 4 merges 720.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 508.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 425.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 54.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 635.0 sec: 44 segments, 4 merges 725.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 513.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 430.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 59.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 640.0 sec: 44 segments, 4 merges 730.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 518.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 435.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 64.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 645.0 sec: 44 segments, 4 merges 735.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 523.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 440.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 69.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 650.0 sec: 44 segments, 4 merges 740.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 528.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 445.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 74.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 655.0 sec: 44 segments, 4 merges 745.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 533.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 450.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 79.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 660.1 sec: 44 segments, 4 merges 750.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 538.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 455.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 84.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 665.1 sec: 44 segments, 4 merges 755.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 543.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 460.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 89.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 670.1 sec: 44 segments, 4 merges 760.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 548.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 465.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 94.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 675.1 sec: 44 segments, 4 merges 765.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 553.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 470.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 99.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 680.1 sec: 44 segments, 4 merges 770.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 558.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 475.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 104.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 685.1 sec: 44 segments, 4 merges 775.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 563.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 480.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 109.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 690.1 sec: 44 segments, 4 merges 780.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 568.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 485.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 114.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 695.1 sec: 44 segments, 4 merges 785.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 573.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 490.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 119.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 700.1 sec: 44 segments, 4 merges 790.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 578.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 495.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 124.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 705.1 sec: 44 segments, 4 merges 795.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 583.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 500.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 129.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 710.1 sec: 44 segments, 4 merges 800.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 588.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 505.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 134.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 715.1 sec: 44 segments, 4 merges 805.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 593.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 510.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 139.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 720.1 sec: 44 segments, 4 merges 810.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 598.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 515.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 144.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 725.1 sec: 44 segments, 4 merges 815.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 603.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 520.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 149.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 730.1 sec: 44 segments, 4 merges 820.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 608.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 525.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 154.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 735.1 sec: 44 segments, 4 merges 825.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 613.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 530.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 159.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 740.1 sec: 44 segments, 4 merges 830.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 618.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 535.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 164.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 745.1 sec: 44 segments, 4 merges 835.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 623.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 540.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 169.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 750.0 sec: 44 segments, 4 merges 840.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 628.6s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 545.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 174.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 755.0 sec: 44 segments, 4 merges 845.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 633.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 550.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 179.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 760.0 sec: 44 segments, 4 merges 850.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 638.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 555.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 184.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 765.0 sec: 44 segments, 4 merges 855.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 643.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 560.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 189.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 770.0 sec: 44 segments, 4 merges 860.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 648.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 565.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 194.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 775.0 sec: 44 segments, 4 merges 865.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 653.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 570.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 199.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 780.0 sec: 44 segments, 4 merges 870.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 658.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 575.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 204.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 785.0 sec: 44 segments, 4 merges 875.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 663.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 580.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 209.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 790.0 sec: 44 segments, 4 merges 880.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 668.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 585.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 214.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 795.1 sec: 44 segments, 4 merges 885.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 673.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 590.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 219.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 800.1 sec: 44 segments, 4 merges 890.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 678.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 595.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 224.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 805.1 sec: 44 segments, 4 merges 895.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 683.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 600.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 229.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 810.1 sec: 44 segments, 4 merges 900.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 688.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 605.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 234.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 815.1 sec: 44 segments, 4 merges 905.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 693.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 610.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 239.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 820.1 sec: 44 segments, 4 merges 910.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 698.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 615.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 244.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 825.1 sec: 44 segments, 4 merges 915.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 703.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 620.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 249.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 830.1 sec: 44 segments, 4 merges 920.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 708.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 625.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 254.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 835.1 sec: 44 segments, 4 merges 925.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 713.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 630.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 259.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 840.0 sec: 44 segments, 4 merges 930.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 718.6s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 635.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 264.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 845.0 sec: 44 segments, 4 merges 935.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 723.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 640.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 269.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 850.0 sec: 44 segments, 4 merges 940.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 728.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 645.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 274.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 855.0 sec: 44 segments, 4 merges 945.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 733.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 650.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 279.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 860.0 sec: 44 segments, 4 merges 950.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 738.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 655.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 284.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 865.0 sec: 44 segments, 4 merges 955.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 743.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 660.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 289.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 870.0 sec: 44 segments, 4 merges 960.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 748.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 665.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 294.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 875.0 sec: 44 segments, 4 merges 965.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 753.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 670.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 299.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 880.0 sec: 44 segments, 4 merges 970.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 758.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 675.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 304.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 885.0 sec: 44 segments, 4 merges 975.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 763.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 680.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 309.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 890.0 sec: 44 segments, 4 merges 980.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 768.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 685.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 314.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 895.1 sec: 44 segments, 4 merges 985.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 773.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 690.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 319.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 900.1 sec: 44 segments, 4 merges 990.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 778.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 695.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 324.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 905.1 sec: 44 segments, 4 merges 995.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 783.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 700.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 329.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 910.1 sec: 44 segments, 4 merges 1000.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 788.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 705.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 334.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 915.1 sec: 44 segments, 4 merges 1005.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 793.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 710.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 339.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 920.1 sec: 44 segments, 4 merges 1010.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 798.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 715.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 344.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 925.1 sec: 44 segments, 4 merges 1015.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 803.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 720.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 349.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 930.1 sec: 44 segments, 4 merges 1020.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 808.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 725.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 354.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 935.1 sec: 44 segments, 4 merges 1025.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 813.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 730.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 359.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 940.1 sec: 44 segments, 4 merges 1030.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 818.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 735.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 364.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 945.1 sec: 44 segments, 4 merges 1035.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 823.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 740.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 369.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 950.0 sec: 44 segments, 4 merges 1040.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 828.6s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 745.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 374.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 955.0 sec: 44 segments, 4 merges 1045.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 833.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 750.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 379.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 960.0 sec: 44 segments, 4 merges 1050.6s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 838.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 755.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 384.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 965.1 sec: 44 segments, 4 merges 1055.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 843.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 760.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 389.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 970.1 sec: 44 segments, 4 merges 1060.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 848.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 765.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 394.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 975.1 sec: 44 segments, 4 merges 1065.7s _1eb: 8 segs, 1264.0 K docs, 5051.4 MB 853.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 770.9s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 399.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 980.0 sec: 37 segments, 3 merges 858.6s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 775.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 404.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 985.0 sec: 37 segments, 3 merges 863.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 780.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 409.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 990.0 sec: 37 segments, 3 merges 868.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 785.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 414.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 995.0 sec: 37 segments, 3 merges 873.7s _1fq: 8 segs, 372.8 K docs, 1486.9 MB 790.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 419.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1000.0 sec: 30 segments, 2 merges 795.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 424.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1005.0 sec: 30 segments, 2 merges 800.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 429.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1010.0 sec: 30 segments, 2 merges 805.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 434.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1015.0 sec: 30 segments, 2 merges 810.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 439.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1020.0 sec: 30 segments, 2 merges 815.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 444.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1025.0 sec: 30 segments, 2 merges 820.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 449.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1030.0 sec: 30 segments, 2 merges 825.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 454.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1035.0 sec: 30 segments, 2 merges 830.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 459.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1040.1 sec: 30 segments, 2 merges 835.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 464.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1045.1 sec: 30 segments, 2 merges 840.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 469.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1050.1 sec: 30 segments, 2 merges 845.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 474.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1055.1 sec: 30 segments, 2 merges 850.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 479.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1060.1 sec: 30 segments, 2 merges 855.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 484.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1065.1 sec: 30 segments, 2 merges 860.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 489.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1070.1 sec: 30 segments, 2 merges 865.8s _1fr: 8 segs, 493.0 K docs, 1967.2 MB 494.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1075.1 sec: 23 segments, 1 merges 499.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1080.1 sec: 23 segments, 1 merges 504.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1085.1 sec: 23 segments, 1 merges 509.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1090.1 sec: 23 segments, 1 merges 514.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1095.0 sec: 23 segments, 1 merges 519.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1100.0 sec: 23 segments, 1 merges 524.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1105.0 sec: 23 segments, 1 merges 529.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1110.0 sec: 23 segments, 1 merges 534.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1115.0 sec: 23 segments, 1 merges 539.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1120.0 sec: 23 segments, 1 merges 544.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1125.0 sec: 23 segments, 1 merges 549.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1130.0 sec: 23 segments, 1 merges 554.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1135.0 sec: 23 segments, 1 merges 559.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1140.0 sec: 23 segments, 1 merges 564.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1145.0 sec: 23 segments, 1 merges 569.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1150.1 sec: 23 segments, 1 merges 574.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1155.1 sec: 23 segments, 1 merges 579.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1160.1 sec: 23 segments, 1 merges 584.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1165.1 sec: 23 segments, 1 merges 589.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1170.1 sec: 23 segments, 1 merges 594.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1175.1 sec: 23 segments, 1 merges 599.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1180.1 sec: 23 segments, 1 merges 604.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1185.1 sec: 23 segments, 1 merges 609.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1190.1 sec: 23 segments, 1 merges 614.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1195.1 sec: 23 segments, 1 merges 619.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1200.1 sec: 23 segments, 1 merges 624.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1205.1 sec: 23 segments, 1 merges 629.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1210.1 sec: 23 segments, 1 merges 634.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1215.0 sec: 23 segments, 1 merges 639.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1220.0 sec: 23 segments, 1 merges 644.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1225.0 sec: 23 segments, 1 merges 649.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1230.0 sec: 23 segments, 1 merges 654.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1235.0 sec: 23 segments, 1 merges 659.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1240.0 sec: 23 segments, 1 merges 664.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1245.0 sec: 23 segments, 1 merges 669.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1250.0 sec: 23 segments, 1 merges 674.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1255.0 sec: 23 segments, 1 merges 679.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1260.0 sec: 23 segments, 1 merges 684.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1265.0 sec: 23 segments, 1 merges 689.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1270.0 sec: 23 segments, 1 merges 694.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1275.0 sec: 23 segments, 1 merges 699.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1280.1 sec: 23 segments, 1 merges 704.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1285.1 sec: 23 segments, 1 merges 709.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1290.1 sec: 23 segments, 1 merges 714.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1295.1 sec: 23 segments, 1 merges 719.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1300.1 sec: 23 segments, 1 merges 724.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1305.1 sec: 23 segments, 1 merges 729.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1310.1 sec: 23 segments, 1 merges 734.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1315.1 sec: 23 segments, 1 merges 739.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1320.1 sec: 23 segments, 1 merges 744.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1325.1 sec: 23 segments, 1 merges 749.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1330.1 sec: 23 segments, 1 merges 754.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1335.1 sec: 23 segments, 1 merges 759.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1340.1 sec: 23 segments, 1 merges 764.8s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1345.0 sec: 23 segments, 1 merges 769.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB 1350.0 sec: 23 segments, 1 merges 774.7s _1fs: 8 segs, 1041.5 K docs, 4160.9 MB done first pass waiting for merges done second pass waiting for merges (CMS.sync()) Indexed 8000000 docs in 3017 seconds reindex takes 3017.78 sec Force merge index in knn-reuse/indices/dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-fm now wait for already running merges to finish 0.0 sec: 16 segments, 1 merges 5.0 sec: 16 segments, 1 merges 5.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 10.0 sec: 16 segments, 1 merges 10.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 15.0 sec: 16 segments, 1 merges 15.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 20.0 sec: 16 segments, 1 merges 20.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 25.0 sec: 16 segments, 1 merges 25.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 30.0 sec: 16 segments, 1 merges 30.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 35.0 sec: 16 segments, 1 merges 35.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 40.1 sec: 16 segments, 1 merges 40.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 45.1 sec: 16 segments, 1 merges 45.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 50.1 sec: 16 segments, 1 merges 50.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 55.1 sec: 16 segments, 1 merges 55.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 60.1 sec: 16 segments, 1 merges 60.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 65.1 sec: 16 segments, 1 merges 65.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 70.0 sec: 16 segments, 1 merges 70.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 75.0 sec: 16 segments, 1 merges 75.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 80.0 sec: 16 segments, 1 merges 80.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 85.0 sec: 16 segments, 1 merges 85.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 90.0 sec: 16 segments, 1 merges 90.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 95.0 sec: 16 segments, 1 merges 95.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 100.0 sec: 16 segments, 1 merges 100.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 105.0 sec: 16 segments, 1 merges 105.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 110.0 sec: 16 segments, 1 merges 110.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 115.0 sec: 16 segments, 1 merges 115.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 120.0 sec: 16 segments, 1 merges 120.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 125.1 sec: 16 segments, 1 merges 125.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 130.1 sec: 16 segments, 1 merges 130.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 135.1 sec: 16 segments, 1 merges 135.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 140.1 sec: 16 segments, 1 merges 140.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 145.1 sec: 16 segments, 1 merges 145.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 150.1 sec: 16 segments, 1 merges 150.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 155.1 sec: 16 segments, 1 merges 155.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 160.1 sec: 16 segments, 1 merges 160.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 165.1 sec: 16 segments, 1 merges 165.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 170.1 sec: 16 segments, 1 merges 170.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 175.1 sec: 16 segments, 1 merges 175.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 180.1 sec: 16 segments, 1 merges 180.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 185.1 sec: 16 segments, 1 merges 185.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 190.1 sec: 16 segments, 1 merges 190.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 195.0 sec: 16 segments, 1 merges 195.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 200.0 sec: 16 segments, 1 merges 200.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 205.0 sec: 16 segments, 1 merges 205.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 210.0 sec: 16 segments, 1 merges 210.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 215.0 sec: 16 segments, 1 merges 215.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 220.0 sec: 16 segments, 1 merges 220.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 225.0 sec: 16 segments, 1 merges 225.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 230.0 sec: 16 segments, 1 merges 230.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 235.0 sec: 16 segments, 1 merges 235.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 240.0 sec: 16 segments, 1 merges 240.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 245.0 sec: 16 segments, 1 merges 245.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 250.0 sec: 16 segments, 1 merges 250.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 255.1 sec: 16 segments, 1 merges 255.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 260.1 sec: 16 segments, 1 merges 260.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 265.1 sec: 16 segments, 1 merges 265.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 270.1 sec: 16 segments, 1 merges 270.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 275.1 sec: 16 segments, 1 merges 275.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 280.1 sec: 16 segments, 1 merges 280.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 285.1 sec: 16 segments, 1 merges 285.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 290.1 sec: 16 segments, 1 merges 290.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 295.1 sec: 16 segments, 1 merges 295.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 300.1 sec: 16 segments, 1 merges 300.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 305.1 sec: 16 segments, 1 merges 305.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 310.1 sec: 16 segments, 1 merges 310.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 315.1 sec: 16 segments, 1 merges 315.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 320.0 sec: 16 segments, 1 merges 320.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 325.0 sec: 16 segments, 1 merges 325.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 330.0 sec: 16 segments, 1 merges 330.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 335.0 sec: 16 segments, 1 merges 335.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 340.0 sec: 16 segments, 1 merges 340.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 345.0 sec: 16 segments, 1 merges 345.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 350.0 sec: 16 segments, 1 merges 350.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 355.0 sec: 16 segments, 1 merges 355.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 360.0 sec: 16 segments, 1 merges 360.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 365.0 sec: 16 segments, 1 merges 365.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 370.0 sec: 16 segments, 1 merges 370.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 375.0 sec: 16 segments, 1 merges 375.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 380.0 sec: 16 segments, 1 merges 380.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 385.1 sec: 16 segments, 1 merges 385.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 390.1 sec: 16 segments, 1 merges 390.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 395.1 sec: 16 segments, 1 merges 395.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 400.1 sec: 16 segments, 1 merges 400.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 405.1 sec: 16 segments, 1 merges 405.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 410.1 sec: 16 segments, 1 merges 410.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 415.1 sec: 16 segments, 1 merges 415.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 420.1 sec: 16 segments, 1 merges 420.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 425.1 sec: 16 segments, 1 merges 425.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 430.1 sec: 16 segments, 1 merges 430.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 435.1 sec: 16 segments, 1 merges 435.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 440.1 sec: 16 segments, 1 merges 440.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 445.1 sec: 16 segments, 1 merges 445.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 450.0 sec: 16 segments, 1 merges 450.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 455.0 sec: 16 segments, 1 merges 455.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 460.0 sec: 16 segments, 1 merges 460.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 465.0 sec: 16 segments, 1 merges 465.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 470.0 sec: 16 segments, 1 merges 470.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 475.1 sec: 16 segments, 1 merges 475.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 480.1 sec: 16 segments, 1 merges 480.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 485.1 sec: 16 segments, 1 merges 485.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 490.1 sec: 16 segments, 1 merges 490.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 495.1 sec: 16 segments, 1 merges 495.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 500.1 sec: 16 segments, 1 merges 500.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 505.0 sec: 16 segments, 1 merges 505.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 510.0 sec: 16 segments, 1 merges 510.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 515.0 sec: 16 segments, 1 merges 515.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 520.0 sec: 16 segments, 1 merges 520.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 525.0 sec: 16 segments, 1 merges 525.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 530.0 sec: 16 segments, 1 merges 530.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 535.0 sec: 16 segments, 1 merges 535.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 540.0 sec: 16 segments, 1 merges 540.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 545.0 sec: 16 segments, 1 merges 545.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 550.0 sec: 16 segments, 1 merges 550.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 555.0 sec: 16 segments, 1 merges 555.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 560.0 sec: 16 segments, 1 merges 560.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 565.1 sec: 16 segments, 1 merges 565.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 570.1 sec: 16 segments, 1 merges 570.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 575.1 sec: 16 segments, 1 merges 575.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 580.1 sec: 16 segments, 1 merges 580.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 585.1 sec: 16 segments, 1 merges 585.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 590.1 sec: 16 segments, 1 merges 590.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 595.1 sec: 16 segments, 1 merges 595.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 600.1 sec: 16 segments, 1 merges 600.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 605.1 sec: 16 segments, 1 merges 605.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 610.1 sec: 16 segments, 1 merges 610.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 615.1 sec: 16 segments, 1 merges 615.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 620.1 sec: 16 segments, 1 merges 620.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 625.1 sec: 16 segments, 1 merges 625.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 630.0 sec: 16 segments, 1 merges 630.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 635.0 sec: 16 segments, 1 merges 635.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 640.0 sec: 16 segments, 1 merges 640.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 645.0 sec: 16 segments, 1 merges 645.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 650.0 sec: 16 segments, 1 merges 650.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 655.0 sec: 16 segments, 1 merges 655.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 660.0 sec: 16 segments, 1 merges 660.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 665.0 sec: 16 segments, 1 merges 665.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 670.0 sec: 16 segments, 1 merges 670.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 675.0 sec: 16 segments, 1 merges 675.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 680.0 sec: 16 segments, 1 merges 680.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 685.0 sec: 16 segments, 1 merges 685.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 690.0 sec: 16 segments, 1 merges 690.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 695.1 sec: 16 segments, 1 merges 695.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 700.1 sec: 16 segments, 1 merges 700.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 705.1 sec: 16 segments, 1 merges 705.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 710.1 sec: 16 segments, 1 merges 710.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 715.1 sec: 16 segments, 1 merges 715.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 720.1 sec: 16 segments, 1 merges 720.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 725.1 sec: 16 segments, 1 merges 725.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 730.1 sec: 16 segments, 1 merges 730.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 735.1 sec: 16 segments, 1 merges 735.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 740.1 sec: 16 segments, 1 merges 740.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 745.0 sec: 16 segments, 1 merges 745.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 750.0 sec: 16 segments, 1 merges 750.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 755.0 sec: 16 segments, 1 merges 755.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 760.0 sec: 16 segments, 1 merges 760.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 765.0 sec: 16 segments, 1 merges 765.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 770.0 sec: 16 segments, 1 merges 770.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 775.0 sec: 16 segments, 1 merges 775.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 780.0 sec: 16 segments, 1 merges 780.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 785.0 sec: 16 segments, 1 merges 785.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 790.0 sec: 16 segments, 1 merges 790.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 795.1 sec: 16 segments, 1 merges 795.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 800.1 sec: 16 segments, 1 merges 800.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 805.1 sec: 16 segments, 1 merges 805.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 810.1 sec: 16 segments, 1 merges 810.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 815.1 sec: 16 segments, 1 merges 815.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 820.1 sec: 16 segments, 1 merges 820.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 825.1 sec: 16 segments, 1 merges 825.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 830.1 sec: 16 segments, 1 merges 830.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 835.1 sec: 16 segments, 1 merges 835.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 840.1 sec: 16 segments, 1 merges 840.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 845.1 sec: 16 segments, 1 merges 845.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 850.1 sec: 16 segments, 1 merges 850.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 855.0 sec: 16 segments, 1 merges 855.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 860.0 sec: 16 segments, 1 merges 860.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 865.0 sec: 16 segments, 1 merges 865.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 870.0 sec: 16 segments, 1 merges 870.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 875.0 sec: 16 segments, 1 merges 875.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 880.0 sec: 16 segments, 1 merges 880.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 885.0 sec: 16 segments, 1 merges 885.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 890.0 sec: 16 segments, 1 merges 890.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 895.0 sec: 16 segments, 1 merges 895.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 900.0 sec: 16 segments, 1 merges 900.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 905.0 sec: 16 segments, 1 merges 905.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 910.0 sec: 16 segments, 1 merges 910.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 915.1 sec: 16 segments, 1 merges 915.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 920.1 sec: 16 segments, 1 merges 920.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 925.1 sec: 16 segments, 1 merges 925.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 930.1 sec: 16 segments, 1 merges 930.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 935.1 sec: 16 segments, 1 merges 935.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 940.1 sec: 16 segments, 1 merges 940.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 945.1 sec: 16 segments, 1 merges 945.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 950.1 sec: 16 segments, 1 merges 950.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 955.1 sec: 16 segments, 1 merges 955.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 960.1 sec: 16 segments, 1 merges 960.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 965.1 sec: 16 segments, 1 merges 965.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 970.1 sec: 16 segments, 1 merges 970.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 975.1 sec: 16 segments, 1 merges 975.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 980.1 sec: 16 segments, 1 merges 980.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 985.1 sec: 16 segments, 1 merges 985.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 990.1 sec: 16 segments, 1 merges 990.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 995.1 sec: 16 segments, 1 merges 995.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1000.1 sec: 16 segments, 1 merges 1000.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1005.1 sec: 16 segments, 1 merges 1005.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1010.1 sec: 16 segments, 1 merges 1010.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1015.0 sec: 16 segments, 1 merges 1015.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1020.0 sec: 16 segments, 1 merges 1020.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1025.0 sec: 16 segments, 1 merges 1025.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1030.0 sec: 16 segments, 1 merges 1030.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1035.0 sec: 16 segments, 1 merges 1035.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1040.0 sec: 16 segments, 1 merges 1040.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1045.0 sec: 16 segments, 1 merges 1045.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1050.0 sec: 16 segments, 1 merges 1050.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1055.0 sec: 16 segments, 1 merges 1055.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1060.0 sec: 16 segments, 1 merges 1060.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1065.1 sec: 16 segments, 1 merges 1065.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1070.1 sec: 16 segments, 1 merges 1070.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1075.1 sec: 16 segments, 1 merges 1075.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1080.1 sec: 16 segments, 1 merges 1080.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1085.1 sec: 16 segments, 1 merges 1085.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1090.1 sec: 16 segments, 1 merges 1090.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1095.1 sec: 16 segments, 1 merges 1095.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1100.1 sec: 16 segments, 1 merges 1100.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1105.1 sec: 16 segments, 1 merges 1105.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1110.1 sec: 16 segments, 1 merges 1110.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1115.1 sec: 16 segments, 1 merges 1115.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1120.0 sec: 16 segments, 1 merges 1120.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1125.0 sec: 16 segments, 1 merges 1125.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1130.0 sec: 16 segments, 1 merges 1130.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1135.0 sec: 16 segments, 1 merges 1135.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1140.0 sec: 16 segments, 1 merges 1140.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1145.0 sec: 16 segments, 1 merges 1145.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1150.0 sec: 16 segments, 1 merges 1150.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1155.0 sec: 16 segments, 1 merges 1155.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1160.0 sec: 16 segments, 1 merges 1160.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1165.0 sec: 16 segments, 1 merges 1165.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1170.0 sec: 16 segments, 1 merges 1170.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1175.0 sec: 16 segments, 1 merges 1175.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1180.1 sec: 16 segments, 1 merges 1180.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1185.1 sec: 16 segments, 1 merges 1185.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1190.1 sec: 16 segments, 1 merges 1190.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1195.1 sec: 16 segments, 1 merges 1195.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1200.1 sec: 16 segments, 1 merges 1200.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1205.1 sec: 16 segments, 1 merges 1205.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1210.1 sec: 16 segments, 1 merges 1210.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1215.0 sec: 16 segments, 1 merges 1215.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1220.0 sec: 16 segments, 1 merges 1220.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1225.0 sec: 16 segments, 1 merges 1225.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1230.0 sec: 16 segments, 1 merges 1230.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1235.0 sec: 16 segments, 1 merges 1235.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1240.0 sec: 16 segments, 1 merges 1240.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1245.0 sec: 16 segments, 1 merges 1245.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1250.0 sec: 16 segments, 1 merges 1250.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1255.0 sec: 16 segments, 1 merges 1255.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1260.0 sec: 16 segments, 1 merges 1260.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1265.0 sec: 16 segments, 1 merges 1265.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1270.0 sec: 16 segments, 1 merges 1270.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1275.1 sec: 16 segments, 1 merges 1275.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1280.1 sec: 16 segments, 1 merges 1280.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1285.1 sec: 16 segments, 1 merges 1285.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1290.1 sec: 16 segments, 1 merges 1290.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1295.1 sec: 16 segments, 1 merges 1295.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1300.1 sec: 16 segments, 1 merges 1300.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1305.1 sec: 16 segments, 1 merges 1305.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1310.1 sec: 16 segments, 1 merges 1310.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1315.1 sec: 16 segments, 1 merges 1315.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1320.1 sec: 16 segments, 1 merges 1320.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1325.1 sec: 16 segments, 1 merges 1325.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1330.1 sec: 16 segments, 1 merges 1330.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1335.0 sec: 16 segments, 1 merges 1335.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1340.0 sec: 16 segments, 1 merges 1340.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1345.0 sec: 16 segments, 1 merges 1345.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1350.0 sec: 16 segments, 1 merges 1350.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1355.0 sec: 16 segments, 1 merges 1355.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1360.0 sec: 16 segments, 1 merges 1360.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1365.0 sec: 16 segments, 1 merges 1365.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1370.0 sec: 16 segments, 1 merges 1370.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1375.0 sec: 16 segments, 1 merges 1375.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1380.0 sec: 16 segments, 1 merges 1380.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1385.0 sec: 16 segments, 1 merges 1385.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1390.0 sec: 16 segments, 1 merges 1390.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1395.0 sec: 16 segments, 1 merges 1395.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1400.1 sec: 16 segments, 1 merges 1400.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1405.1 sec: 16 segments, 1 merges 1405.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1410.1 sec: 16 segments, 1 merges 1410.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1415.1 sec: 16 segments, 1 merges 1415.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1420.1 sec: 16 segments, 1 merges 1420.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1425.1 sec: 16 segments, 1 merges 1425.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1430.1 sec: 16 segments, 1 merges 1430.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1435.1 sec: 16 segments, 1 merges 1435.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1440.1 sec: 16 segments, 1 merges 1440.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1445.0 sec: 16 segments, 1 merges 1445.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1450.0 sec: 16 segments, 1 merges 1450.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1455.0 sec: 16 segments, 1 merges 1455.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1460.0 sec: 16 segments, 1 merges 1460.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1465.0 sec: 16 segments, 1 merges 1465.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1470.0 sec: 16 segments, 1 merges 1470.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1475.0 sec: 16 segments, 1 merges 1475.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1480.0 sec: 16 segments, 1 merges 1480.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1485.0 sec: 16 segments, 1 merges 1485.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1490.0 sec: 16 segments, 1 merges 1490.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1495.1 sec: 16 segments, 1 merges 1495.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1500.1 sec: 16 segments, 1 merges 1500.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1505.1 sec: 16 segments, 1 merges 1505.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1510.1 sec: 16 segments, 1 merges 1510.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1515.1 sec: 16 segments, 1 merges 1515.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1520.1 sec: 16 segments, 1 merges 1520.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1525.1 sec: 16 segments, 1 merges 1525.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1530.1 sec: 16 segments, 1 merges 1530.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1535.1 sec: 16 segments, 1 merges 1535.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1540.1 sec: 16 segments, 1 merges 1540.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1545.1 sec: 16 segments, 1 merges 1545.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1550.1 sec: 16 segments, 1 merges 1550.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1555.0 sec: 16 segments, 1 merges 1555.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1560.0 sec: 16 segments, 1 merges 1560.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1565.0 sec: 16 segments, 1 merges 1565.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1570.0 sec: 16 segments, 1 merges 1570.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1575.0 sec: 16 segments, 1 merges 1575.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1580.0 sec: 16 segments, 1 merges 1580.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1585.0 sec: 16 segments, 1 merges 1585.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1590.0 sec: 16 segments, 1 merges 1590.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1595.0 sec: 16 segments, 1 merges 1595.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1600.0 sec: 16 segments, 1 merges 1600.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1605.0 sec: 16 segments, 1 merges 1605.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1610.0 sec: 16 segments, 1 merges 1610.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1615.1 sec: 16 segments, 1 merges 1615.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1620.1 sec: 16 segments, 1 merges 1620.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1625.1 sec: 16 segments, 1 merges 1625.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1630.1 sec: 16 segments, 1 merges 1630.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1635.1 sec: 16 segments, 1 merges 1635.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1640.1 sec: 16 segments, 1 merges 1640.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1645.1 sec: 16 segments, 1 merges 1645.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1650.1 sec: 16 segments, 1 merges 1650.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1655.1 sec: 16 segments, 1 merges 1655.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1660.1 sec: 16 segments, 1 merges 1660.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1665.1 sec: 16 segments, 1 merges 1665.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1670.1 sec: 16 segments, 1 merges 1670.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1675.0 sec: 16 segments, 1 merges 1675.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1680.0 sec: 16 segments, 1 merges 1680.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1685.0 sec: 16 segments, 1 merges 1685.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1690.0 sec: 16 segments, 1 merges 1690.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1695.0 sec: 16 segments, 1 merges 1695.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1700.0 sec: 16 segments, 1 merges 1700.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1705.0 sec: 16 segments, 1 merges 1705.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1710.0 sec: 16 segments, 1 merges 1710.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1715.0 sec: 16 segments, 1 merges 1715.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1720.0 sec: 16 segments, 1 merges 1720.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1725.0 sec: 16 segments, 1 merges 1725.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1730.0 sec: 16 segments, 1 merges 1730.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1735.0 sec: 16 segments, 1 merges 1735.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1740.1 sec: 16 segments, 1 merges 1740.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1745.1 sec: 16 segments, 1 merges 1745.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1750.1 sec: 16 segments, 1 merges 1750.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1755.1 sec: 16 segments, 1 merges 1755.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1760.1 sec: 16 segments, 1 merges 1760.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1765.1 sec: 16 segments, 1 merges 1765.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1770.1 sec: 16 segments, 1 merges 1770.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1775.1 sec: 16 segments, 1 merges 1775.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1780.1 sec: 16 segments, 1 merges 1780.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1785.1 sec: 16 segments, 1 merges 1785.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1790.1 sec: 16 segments, 1 merges 1790.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1795.1 sec: 16 segments, 1 merges 1795.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1800.1 sec: 16 segments, 1 merges 1800.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1805.0 sec: 16 segments, 1 merges 1805.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1810.0 sec: 16 segments, 1 merges 1810.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1815.0 sec: 16 segments, 1 merges 1815.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1820.0 sec: 16 segments, 1 merges 1820.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1825.0 sec: 16 segments, 1 merges 1825.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1830.0 sec: 16 segments, 1 merges 1830.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1835.0 sec: 16 segments, 1 merges 1835.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1840.0 sec: 16 segments, 1 merges 1840.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1845.0 sec: 16 segments, 1 merges 1845.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1850.0 sec: 16 segments, 1 merges 1850.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1855.0 sec: 16 segments, 1 merges 1855.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1860.0 sec: 16 segments, 1 merges 1860.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1865.0 sec: 16 segments, 1 merges 1865.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1870.1 sec: 16 segments, 1 merges 1870.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1875.1 sec: 16 segments, 1 merges 1875.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1880.1 sec: 16 segments, 1 merges 1880.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1885.1 sec: 16 segments, 1 merges 1885.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1890.1 sec: 16 segments, 1 merges 1890.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1895.1 sec: 16 segments, 1 merges 1895.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1900.1 sec: 16 segments, 1 merges 1900.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1905.1 sec: 16 segments, 1 merges 1905.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1910.1 sec: 16 segments, 1 merges 1910.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1915.1 sec: 16 segments, 1 merges 1915.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1920.1 sec: 16 segments, 1 merges 1920.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1925.0 sec: 16 segments, 1 merges 1925.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1930.0 sec: 16 segments, 1 merges 1930.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1935.0 sec: 16 segments, 1 merges 1935.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1940.0 sec: 16 segments, 1 merges 1940.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1945.0 sec: 16 segments, 1 merges 1945.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1950.0 sec: 16 segments, 1 merges 1950.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1955.0 sec: 16 segments, 1 merges 1955.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1960.0 sec: 16 segments, 1 merges 1960.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1965.0 sec: 16 segments, 1 merges 1965.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1970.0 sec: 16 segments, 1 merges 1970.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1975.1 sec: 16 segments, 1 merges 1975.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1980.1 sec: 16 segments, 1 merges 1980.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1985.1 sec: 16 segments, 1 merges 1985.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1990.1 sec: 16 segments, 1 merges 1990.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 1995.1 sec: 16 segments, 1 merges 1995.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2000.1 sec: 16 segments, 1 merges 2000.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2005.1 sec: 16 segments, 1 merges 2005.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2010.1 sec: 16 segments, 1 merges 2010.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2015.1 sec: 16 segments, 1 merges 2015.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2020.1 sec: 16 segments, 1 merges 2020.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2025.1 sec: 16 segments, 1 merges 2025.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2030.1 sec: 16 segments, 1 merges 2030.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2035.0 sec: 16 segments, 1 merges 2035.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2040.0 sec: 16 segments, 1 merges 2040.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2045.0 sec: 16 segments, 1 merges 2045.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2050.0 sec: 16 segments, 1 merges 2050.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2055.0 sec: 16 segments, 1 merges 2055.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2060.0 sec: 16 segments, 1 merges 2060.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2065.0 sec: 16 segments, 1 merges 2065.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2070.0 sec: 16 segments, 1 merges 2070.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2075.0 sec: 16 segments, 1 merges 2075.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2080.0 sec: 16 segments, 1 merges 2080.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2085.0 sec: 16 segments, 1 merges 2085.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2090.0 sec: 16 segments, 1 merges 2090.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2095.1 sec: 16 segments, 1 merges 2095.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2100.1 sec: 16 segments, 1 merges 2100.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2105.1 sec: 16 segments, 1 merges 2105.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2110.1 sec: 16 segments, 1 merges 2110.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2115.1 sec: 16 segments, 1 merges 2115.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2120.1 sec: 16 segments, 1 merges 2120.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2125.1 sec: 16 segments, 1 merges 2125.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2130.1 sec: 16 segments, 1 merges 2130.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2135.1 sec: 16 segments, 1 merges 2135.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2140.1 sec: 16 segments, 1 merges 2140.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2145.1 sec: 16 segments, 1 merges 2145.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2150.1 sec: 16 segments, 1 merges 2150.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2155.1 sec: 16 segments, 1 merges 2155.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2160.0 sec: 16 segments, 1 merges 2160.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2165.0 sec: 16 segments, 1 merges 2165.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2170.0 sec: 16 segments, 1 merges 2170.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2175.0 sec: 16 segments, 1 merges 2175.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2180.0 sec: 16 segments, 1 merges 2180.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2185.0 sec: 16 segments, 1 merges 2185.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2190.0 sec: 16 segments, 1 merges 2190.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2195.0 sec: 16 segments, 1 merges 2195.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2200.0 sec: 16 segments, 1 merges 2200.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2205.0 sec: 16 segments, 1 merges 2205.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2210.0 sec: 16 segments, 1 merges 2210.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2215.0 sec: 16 segments, 1 merges 2215.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2220.1 sec: 16 segments, 1 merges 2220.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2225.1 sec: 16 segments, 1 merges 2225.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2230.1 sec: 16 segments, 1 merges 2230.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2235.1 sec: 16 segments, 1 merges 2235.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2240.1 sec: 16 segments, 1 merges 2240.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2245.1 sec: 16 segments, 1 merges 2245.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2250.1 sec: 16 segments, 1 merges 2250.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2255.0 sec: 16 segments, 1 merges 2255.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2260.0 sec: 16 segments, 1 merges 2260.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2265.0 sec: 16 segments, 1 merges 2265.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2270.0 sec: 16 segments, 1 merges 2270.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2275.0 sec: 16 segments, 1 merges 2275.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2280.0 sec: 16 segments, 1 merges 2280.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2285.0 sec: 16 segments, 1 merges 2285.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2290.0 sec: 16 segments, 1 merges 2290.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2295.0 sec: 16 segments, 1 merges 2295.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2300.2 sec: 16 segments, 1 merges 2300.2s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2305.0 sec: 16 segments, 1 merges 2305.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2310.0 sec: 16 segments, 1 merges 2310.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2315.0 sec: 16 segments, 1 merges 2315.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2320.0 sec: 16 segments, 1 merges 2320.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2325.0 sec: 16 segments, 1 merges 2325.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2330.0 sec: 16 segments, 1 merges 2330.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2335.1 sec: 16 segments, 1 merges 2335.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2340.1 sec: 16 segments, 1 merges 2340.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2345.1 sec: 16 segments, 1 merges 2345.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2350.1 sec: 16 segments, 1 merges 2350.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2355.1 sec: 16 segments, 1 merges 2355.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2360.1 sec: 16 segments, 1 merges 2360.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2365.1 sec: 16 segments, 1 merges 2365.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2370.1 sec: 16 segments, 1 merges 2370.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2375.1 sec: 16 segments, 1 merges 2375.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2380.1 sec: 16 segments, 1 merges 2380.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2385.1 sec: 16 segments, 1 merges 2385.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2390.1 sec: 16 segments, 1 merges 2390.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2395.0 sec: 16 segments, 1 merges 2395.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2400.0 sec: 16 segments, 1 merges 2400.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2405.0 sec: 16 segments, 1 merges 2405.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2410.0 sec: 16 segments, 1 merges 2410.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2415.0 sec: 16 segments, 1 merges 2415.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2420.0 sec: 16 segments, 1 merges 2420.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2425.0 sec: 16 segments, 1 merges 2425.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2430.0 sec: 16 segments, 1 merges 2430.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2435.0 sec: 16 segments, 1 merges 2435.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2440.0 sec: 16 segments, 1 merges 2440.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2445.0 sec: 16 segments, 1 merges 2445.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2450.0 sec: 16 segments, 1 merges 2450.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2455.1 sec: 16 segments, 1 merges 2455.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2460.1 sec: 16 segments, 1 merges 2460.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2465.1 sec: 16 segments, 1 merges 2465.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2470.1 sec: 16 segments, 1 merges 2470.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2475.1 sec: 16 segments, 1 merges 2475.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2480.1 sec: 16 segments, 1 merges 2480.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2485.1 sec: 16 segments, 1 merges 2485.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2490.1 sec: 16 segments, 1 merges 2490.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2495.1 sec: 16 segments, 1 merges 2495.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2500.1 sec: 16 segments, 1 merges 2500.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2505.1 sec: 16 segments, 1 merges 2505.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2510.1 sec: 16 segments, 1 merges 2510.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2515.0 sec: 16 segments, 1 merges 2515.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2520.0 sec: 16 segments, 1 merges 2520.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2525.0 sec: 16 segments, 1 merges 2525.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2530.0 sec: 16 segments, 1 merges 2530.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2535.0 sec: 16 segments, 1 merges 2535.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2540.0 sec: 16 segments, 1 merges 2540.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2545.0 sec: 16 segments, 1 merges 2545.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2550.0 sec: 16 segments, 1 merges 2550.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2555.0 sec: 16 segments, 1 merges 2555.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2560.0 sec: 16 segments, 1 merges 2560.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2565.0 sec: 16 segments, 1 merges 2565.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2570.0 sec: 16 segments, 1 merges 2570.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2575.0 sec: 16 segments, 1 merges 2575.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2580.1 sec: 16 segments, 1 merges 2580.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2585.1 sec: 16 segments, 1 merges 2585.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2590.1 sec: 16 segments, 1 merges 2590.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2595.1 sec: 16 segments, 1 merges 2595.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2600.1 sec: 16 segments, 1 merges 2600.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2605.1 sec: 16 segments, 1 merges 2605.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2610.1 sec: 16 segments, 1 merges 2610.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2615.1 sec: 16 segments, 1 merges 2615.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2620.1 sec: 16 segments, 1 merges 2620.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2625.1 sec: 16 segments, 1 merges 2625.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2630.1 sec: 16 segments, 1 merges 2630.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2635.1 sec: 16 segments, 1 merges 2635.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2640.1 sec: 16 segments, 1 merges 2640.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2645.0 sec: 16 segments, 1 merges 2645.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2650.0 sec: 16 segments, 1 merges 2650.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2655.0 sec: 16 segments, 1 merges 2655.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2660.0 sec: 16 segments, 1 merges 2660.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2665.0 sec: 16 segments, 1 merges 2665.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2670.0 sec: 16 segments, 1 merges 2670.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2675.0 sec: 16 segments, 1 merges 2675.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2680.1 sec: 16 segments, 1 merges 2680.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2685.1 sec: 16 segments, 1 merges 2685.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2690.1 sec: 16 segments, 1 merges 2690.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2695.0 sec: 16 segments, 1 merges 2695.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2700.0 sec: 16 segments, 1 merges 2700.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2705.0 sec: 16 segments, 1 merges 2705.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2710.0 sec: 16 segments, 1 merges 2710.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2715.0 sec: 16 segments, 1 merges 2715.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2720.0 sec: 16 segments, 1 merges 2720.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2725.0 sec: 16 segments, 1 merges 2725.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2730.0 sec: 16 segments, 1 merges 2730.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2735.0 sec: 16 segments, 1 merges 2735.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2740.0 sec: 16 segments, 1 merges 2740.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2745.0 sec: 16 segments, 1 merges 2745.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2750.0 sec: 16 segments, 1 merges 2750.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2755.0 sec: 16 segments, 1 merges 2755.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2760.1 sec: 16 segments, 1 merges 2760.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2765.1 sec: 16 segments, 1 merges 2765.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2770.1 sec: 16 segments, 1 merges 2770.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2775.1 sec: 16 segments, 1 merges 2775.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2780.1 sec: 16 segments, 1 merges 2780.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2785.1 sec: 16 segments, 1 merges 2785.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2790.1 sec: 16 segments, 1 merges 2790.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2795.1 sec: 16 segments, 1 merges 2795.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2800.1 sec: 16 segments, 1 merges 2800.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2805.1 sec: 16 segments, 1 merges 2805.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2810.1 sec: 16 segments, 1 merges 2810.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2815.1 sec: 16 segments, 1 merges 2815.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2820.1 sec: 16 segments, 1 merges 2820.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2825.0 sec: 16 segments, 1 merges 2825.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2830.0 sec: 16 segments, 1 merges 2830.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2835.0 sec: 16 segments, 1 merges 2835.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2840.0 sec: 16 segments, 1 merges 2840.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2845.0 sec: 16 segments, 1 merges 2845.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2850.0 sec: 16 segments, 1 merges 2850.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2855.0 sec: 16 segments, 1 merges 2855.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2860.0 sec: 16 segments, 1 merges 2860.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2865.0 sec: 16 segments, 1 merges 2865.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2870.0 sec: 16 segments, 1 merges 2870.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2875.0 sec: 16 segments, 1 merges 2875.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2880.0 sec: 16 segments, 1 merges 2880.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2885.1 sec: 16 segments, 1 merges 2885.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2890.1 sec: 16 segments, 1 merges 2890.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2895.1 sec: 16 segments, 1 merges 2895.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2900.1 sec: 16 segments, 1 merges 2900.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2905.1 sec: 16 segments, 1 merges 2905.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2910.1 sec: 16 segments, 1 merges 2910.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2915.1 sec: 16 segments, 1 merges 2915.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2920.1 sec: 16 segments, 1 merges 2920.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2925.1 sec: 16 segments, 1 merges 2925.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2930.1 sec: 16 segments, 1 merges 2930.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2935.1 sec: 16 segments, 1 merges 2935.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2940.1 sec: 16 segments, 1 merges 2940.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2945.0 sec: 16 segments, 1 merges 2945.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2950.0 sec: 16 segments, 1 merges 2950.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2955.0 sec: 16 segments, 1 merges 2955.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2960.0 sec: 16 segments, 1 merges 2960.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2965.0 sec: 16 segments, 1 merges 2965.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2970.0 sec: 16 segments, 1 merges 2970.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2975.0 sec: 16 segments, 1 merges 2975.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2980.0 sec: 16 segments, 1 merges 2980.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2985.0 sec: 16 segments, 1 merges 2985.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2990.0 sec: 16 segments, 1 merges 2990.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 2995.0 sec: 16 segments, 1 merges 2995.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3000.0 sec: 16 segments, 1 merges 3000.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3005.0 sec: 16 segments, 1 merges 3005.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3010.1 sec: 16 segments, 1 merges 3010.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3015.1 sec: 16 segments, 1 merges 3015.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3020.1 sec: 16 segments, 1 merges 3020.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3025.1 sec: 16 segments, 1 merges 3025.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3030.1 sec: 16 segments, 1 merges 3030.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3035.0 sec: 16 segments, 1 merges 3035.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3040.0 sec: 16 segments, 1 merges 3040.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3045.0 sec: 16 segments, 1 merges 3045.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3050.0 sec: 16 segments, 1 merges 3050.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3055.0 sec: 16 segments, 1 merges 3055.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3060.0 sec: 16 segments, 1 merges 3060.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3065.0 sec: 16 segments, 1 merges 3065.0s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3070.1 sec: 16 segments, 1 merges 3070.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3075.1 sec: 16 segments, 1 merges 3075.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3080.1 sec: 16 segments, 1 merges 3080.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3085.1 sec: 16 segments, 1 merges 3085.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3090.1 sec: 16 segments, 1 merges 3090.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3095.1 sec: 16 segments, 1 merges 3095.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3100.1 sec: 16 segments, 1 merges 3100.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3105.1 sec: 16 segments, 1 merges 3105.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3110.1 sec: 16 segments, 1 merges 3110.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3115.1 sec: 16 segments, 1 merges 3115.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3120.1 sec: 16 segments, 1 merges 3120.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB 3125.1 sec: 16 segments, 1 merges 3125.1s _1ft: 16 segs, 8000.0 K docs, 32011.7 MB done first pass waiting for merges done second pass waiting for merges (CMS.sync()) Force merge done in 3131.01 sec index has 1 segments: segments_3: _1ft(11.0.0):C8000000 _1ft: 32156.1 MB encodingByteSize=4 origByteSize=4 realEncodingByteSize=4.0 index disk usage is 32156.05 MB vector disk usage is 31250.00 MB vector RAM usage is 31250.00 MB exact nn key = cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100 read pre-cached exact match vectors from cache file "knn-reuse/exact-nn/cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100.bin" read pre-cached exact match scores from cache file "knn-reuse/exact-nn/cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100.scores" EXACT_NN_SCORES_PATH: /l/util.nightly/knn-reuse/exact-nn/cohere-v3-wikipedia-en-scattered-1024d.docs.vec-dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-8000000-qcohere-v3-wikipedia-en-scattered-1024d.queries.vec-1000-dot_product-knn-100.scores EXACT_NN_METRIC: dot_product path=/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec dim=1024 vectorEncoding.byteSize=4 1778739 query vectors in queryPath "/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec" searching 1000 query vectors; topK=100, fanout=100 done warmup thread 3 name=main cpu@start=48967528653 cpu@end=52124685438 deltaMS=3157.156785 thread 14 name=Reference Handler cpu@start=2491307 cpu@end=2491307 deltaMS=0.0 thread 15 name=Finalizer cpu@start=125475 cpu@end=125475 deltaMS=0.0 thread 16 name=Signal Dispatcher cpu@start=74903 cpu@end=74903 deltaMS=0.0 thread 40 name=Common-Cleaner cpu@start=28244542 cpu@end=28244542 deltaMS=0.0 thread 41 name=JFR Recorder Thread cpu@start=58580620983 cpu@end=58581166542 deltaMS=0.545559 thread 42 name=JFR Periodic Tasks cpu@start=522027179321 cpu@end=522180850669 deltaMS=153.671348 thread 45 name=Notification Thread cpu@start=125993 cpu@end=125993 deltaMS=0.0 thread 56 name=hnsw-merge-1-thread-1 cpu@start=7397158856058 cpu@end=7397158856058 deltaMS=0.0 thread 57 name=hnsw-merge-1-thread-2 cpu@start=7403130229142 cpu@end=7403130229142 deltaMS=0.0 thread 58 name=hnsw-merge-1-thread-3 cpu@start=7397339332934 cpu@end=7397339332934 deltaMS=0.0 thread 59 name=hnsw-merge-1-thread-4 cpu@start=7396352599677 cpu@end=7396352599677 deltaMS=0.0 thread 60 name=hnsw-merge-1-thread-5 cpu@start=7401913714989 cpu@end=7401913714989 deltaMS=0.0 thread 61 name=hnsw-merge-1-thread-6 cpu@start=7395117827950 cpu@end=7395117827950 deltaMS=0.0 thread 62 name=hnsw-merge-1-thread-7 cpu@start=7397332653378 cpu@end=7397332653378 deltaMS=0.0 thread 63 name=hnsw-merge-1-thread-8 cpu@start=7393258925271 cpu@end=7393258925271 deltaMS=0.0 thread 64 name=hnsw-merge-1-thread-9 cpu@start=7401244140343 cpu@end=7401244140343 deltaMS=0.0 thread 65 name=hnsw-merge-1-thread-10 cpu@start=7400174433748 cpu@end=7400174433748 deltaMS=0.0 thread 66 name=hnsw-merge-1-thread-11 cpu@start=7394183250646 cpu@end=7394183250646 deltaMS=0.0 thread 67 name=hnsw-merge-1-thread-12 cpu@start=7397886512195 cpu@end=7397886512195 deltaMS=0.0 thread 68 name=hnsw-merge-1-thread-13 cpu@start=7401669447707 cpu@end=7401669447707 deltaMS=0.0 thread 69 name=hnsw-merge-1-thread-14 cpu@start=7400729988621 cpu@end=7400729988621 deltaMS=0.0 thread 70 name=hnsw-merge-1-thread-15 cpu@start=7402745795244 cpu@end=7402745795244 deltaMS=0.0 thread 71 name=hnsw-merge-1-thread-16 cpu@start=7398639726931 cpu@end=7398639726931 deltaMS=0.0 Average CPU cores used: 1.046601980193695 completed 1000 searches in 3163 ms: 316 QPS CPU time=3310 ms checking results SUMMARY: 0.943 3.163 3.310 1.046 8000000 KNN 100 100 N/A N/A 100.000 32 100 no 5665 3017.78 2650.96 3131.01 1 32156.05 null N/A 1.000 31250.000 31250.000 false HNSW no Leaf 0 has 4 layers Leaf 0 has 8000000 documents Graph level=3 size=239, Fanout min=6, mean=15.83, max=32, meandelta=430106.19 % 0 10 20 30 40 50 60 70 80 90 100 0 10 12 13 14 15 16 18 20 22 32 Graph level=2 size=7623, Fanout min=8, mean=27.30, max=32, meandelta=267959.28 % 0 10 20 30 40 50 60 70 80 90 100 0 18 21 24 27 31 32 32 32 32 32 Graph level=1 size=247071, Fanout min=1, mean=28.28, max=32, meandelta=258552.00 % 0 10 20 30 40 50 60 70 80 90 100 0 19 23 27 31 32 32 32 32 32 32 Graph level=0 size=8000000, Fanout min=1, mean=37.66, max=64, meandelta=194606.95 % 0 10 20 30 40 50 60 70 80 90 100 0 17 22 26 30 34 40 47 58 64 64 Graph level=3 size=239, connectedness=1.00 Graph level=2 size=7623, connectedness=1.00 Graph level=1 size=247071, connectedness=1.00 Graph level=0 size=8000000, connectedness=1.00 Performance counter stats for '/usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build:/l/util.nightly/build --add-modules jdk.incubator.vector --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmTrue.jfr knn.KnnGraphTester -maxConn 32 -dim 1024 -docs /big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec -ndoc 8000000 -topK 100 -numIndexThreads 8 -beamWidthIndex 100 -search-and-stats /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -metric dot_product -numMergeThread 16 -numMergeWorker 48 -forceMerge': 212,947,353.74 msec task-clock:u 816,327,471,236,389 cycles:u (36.36%) 82,516,183,947,836 instructions:u (36.36%) 13,147,513,179,635 cache-references:u (36.36%) 3,621,920,425,060 cache-misses:u (36.36%) 52,323,631,381,510 L1-dcache-loads:u (36.36%) 3,508,530,062,637 L1-dcache-load-misses:u (36.36%) 3,950,642,431,302 L1-icache-loads:u (36.36%) 38,458,268,751 L1-icache-load-misses:u (36.36%) LLC-loads:u LLC-load-misses:u LLC-stores:u LLC-store-misses:u LLC-prefetches:u LLC-prefetch-misses:u 45,414,369 faults:u 22,567,581 minor-faults:u 142 major-faults:u 10,430,892,495,438 branches:u (36.36%) 112,808,414,043 branch-misses:u (36.36%) 10,277,233,829,558 stalled-cycles-frontend:u (36.36%) stalled-cycles-backend:u 7582.154464765 seconds time elapsed 211652.779691000 seconds user 1260.915599000 seconds sys took 2:06:22.181378 to run KnnGraphTester result: KNNResultV1(lucene_git_rev='de92f115a3125624bf7c7141b8e700efa9a89427', luceneutil_git_rev='63c1b2b252f377e272313c1ac0f182be79ad78b6', index_vectors_file='/big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec', search_vectors_file='/lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec', vector_dims=1024, do_force_merge=True, recall=0.943, cpu_time_ms=3.163, net_cpu_ms=3.31, avg_cpu_core_count=1.046, num_docs=8000000, top_k=100, fanout=100, max_conn=32, beam_width=100, quantize_desc='no', total_visited=5665, index_time_sec=3017.78, index_docs_per_sec=2650.96, force_merge_time_sec=3131.01, index_num_segments=1, index_size_on_disk_mb=32156.05, selectivity=None, pre_post_filter='null', vec_disk_mb=31250.0, vec_ram_mb=31250.0, graph_level_conn_p_values={3: (239, {0: 0, 10: 10, 20: 12, 30: 13, 40: 14, 50: 15, 60: 16, 70: 18, 80: 20, 90: 22, 100: 32}), 2: (7623, {0: 0, 10: 18, 20: 21, 30: 24, 40: 27, 50: 31, 60: 32, 70: 32, 80: 32, 90: 32, 100: 32}), 1: (247071, {0: 0, 10: 19, 20: 23, 30: 27, 40: 31, 50: 32, 60: 32, 70: 32, 80: 32, 90: 32, 100: 32}), 0: (8000000, {0: 0, 10: 17, 20: 22, 30: 26, 40: 30, 50: 34, 60: 40, 70: 47, 80: 58, 90: 64, 100: 64})}, combined_run_time=datetime.timedelta(seconds=7582, microseconds=181378)) Profiler summary for /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmTrue.jfr Version: 2.1 Chunks: 166 Start: 2026-05-16 01:39:59 (UTC) Duration: 5114 s Event Type Count Size (bytes) ============================================================= jdk.CPUTimeSample 105504324 1868530023 jdk.FileWrite 8217243 194213946 jdk.FileRead 1232962 28954390 jdk.CPULoad 95451 1968398 jdk.BooleanFlag 82336 2645886 jdk.ObjectAllocationInNewTLAB 31845 639317 jdk.Checkpoint 13887 24814171 jdk.UnsignedIntFlag 7968 274276 jdk.IntFlag 7304 270150 jdk.StringFlag 5644 221904 jdk.Compilation 1059 29042 jdk.ObjectAllocationOutsideTLAB 1036 19489 jdk.CPUInformation 166 249409 jdk.GCConfiguration 166 4393 jdk.JVMInformation 166 150805 jdk.Metadata 166 18347559 jdk.GarbageCollection 26 644 jdk.ActiveRecording 0 0 jdk.ActiveSetting 0 0 jdk.AllocationRequiringGC 0 0 jdk.BooleanFlagChanged 0 0 jdk.CPUTimeSamplesLost 0 0 jdk.CPUTimeStampCounter 0 0 jdk.ClassDefine 0 0 jdk.ClassLoad 0 0 jdk.ClassLoaderStatistics 0 0 jdk.ClassLoadingStatistics 0 0 jdk.ClassRedefinition 0 0 jdk.ClassUnload 0 0 jdk.CodeCacheConfiguration 0 0 jdk.CodeCacheFull 0 0 jdk.CodeCacheStatistics 0 0 jdk.CompilationFailure 0 0 jdk.CompilerConfiguration 0 0 jdk.CompilerInlining 0 0 jdk.CompilerPhase 0 0 jdk.CompilerQueueUtilization 0 0 jdk.CompilerStatistics 0 0 jdk.ConcurrentModeFailure 0 0 jdk.ContainerCPUThrottling 0 0 jdk.ContainerCPUUsage 0 0 jdk.ContainerConfiguration 0 0 jdk.ContainerIOUsage 0 0 jdk.ContainerMemoryUsage 0 0 jdk.ContinuationFreeze 0 0 jdk.ContinuationFreezeFast 0 0 jdk.ContinuationFreezeSlow 0 0 jdk.ContinuationThaw 0 0 jdk.ContinuationThawFast 0 0 jdk.ContinuationThawSlow 0 0 jdk.DataLoss 0 0 jdk.Deoptimization 0 0 jdk.DeprecatedInvocation 0 0 jdk.Deserialization 0 0 jdk.DirectBufferStatistics 0 0 jdk.DoubleFlag 0 0 jdk.DoubleFlagChanged 0 0 jdk.DumpReason 0 0 jdk.EvacuationFailed 0 0 jdk.EvacuationInformation 0 0 jdk.ExceptionStatistics 0 0 jdk.ExecuteVMOperation 0 0 jdk.ExecutionSample 0 0 jdk.FileForce 0 0 jdk.FinalizerStatistics 0 0 jdk.Flush 0 0 jdk.G1AdaptiveIHOP 0 0 jdk.G1BasicIHOP 0 0 jdk.G1EvacuationOldStatistics 0 0 jdk.G1EvacuationYoungStatistics 0 0 jdk.G1GarbageCollection 0 0 jdk.G1HeapRegionInformation 0 0 jdk.G1HeapRegionTypeChange 0 0 jdk.G1HeapSummary 0 0 jdk.G1MMU 0 0 jdk.GCCPUTime 0 0 jdk.GCHeapConfiguration 0 0 jdk.GCHeapMemoryPoolUsage 0 0 jdk.GCHeapMemoryUsage 0 0 jdk.GCHeapSummary 0 0 jdk.GCPhaseConcurrent 0 0 jdk.GCPhaseConcurrentLevel1 0 0 jdk.GCPhaseConcurrentLevel2 0 0 jdk.GCPhaseParallel 0 0 jdk.GCPhasePause 0 0 jdk.GCPhasePauseLevel1 0 0 jdk.GCPhasePauseLevel2 0 0 jdk.GCPhasePauseLevel3 0 0 jdk.GCPhasePauseLevel4 0 0 jdk.GCReferenceStatistics 0 0 jdk.GCSurvivorConfiguration 0 0 jdk.GCTLABConfiguration 0 0 jdk.HeapDump 0 0 jdk.InitialEnvironmentVariable 0 0 jdk.InitialSecurityProperty 0 0 jdk.InitialSystemProperty 0 0 jdk.IntFlagChanged 0 0 jdk.JITRestart 0 0 jdk.JavaAgent 0 0 jdk.JavaErrorThrow 0 0 jdk.JavaExceptionThrow 0 0 jdk.JavaMonitorDeflate 0 0 jdk.JavaMonitorEnter 0 0 jdk.JavaMonitorInflate 0 0 jdk.JavaMonitorNotify 0 0 jdk.JavaMonitorStatistics 0 0 jdk.JavaMonitorWait 0 0 jdk.JavaThreadStatistics 0 0 jdk.LongFlag 0 0 jdk.LongFlagChanged 0 0 jdk.MetaspaceAllocationFailure 0 0 jdk.MetaspaceChunkFreeListSummary 0 0 jdk.MetaspaceGCThreshold 0 0 jdk.MetaspaceOOM 0 0 jdk.MetaspaceSummary 0 0 jdk.MethodTiming 0 0 jdk.MethodTrace 0 0 jdk.ModuleExport 0 0 jdk.ModuleRequire 0 0 jdk.NativeAgent 0 0 jdk.NativeLibrary 0 0 jdk.NativeLibraryLoad 0 0 jdk.NativeLibraryUnload 0 0 jdk.NativeMemoryUsage 0 0 jdk.NativeMemoryUsageTotal 0 0 jdk.NativeMethodSample 0 0 jdk.NetworkUtilization 0 0 jdk.OSInformation 0 0 jdk.ObjectAllocationSample 0 0 jdk.ObjectCount 0 0 jdk.ObjectCountAfterGC 0 0 jdk.OldGarbageCollection 0 0 jdk.OldObjectSample 0 0 jdk.PSHeapSummary 0 0 jdk.ParallelOldGarbageCollection 0 0 jdk.PhysicalMemory 0 0 jdk.ProcessStart 0 0 jdk.PromoteObjectInNewPLAB 0 0 jdk.PromoteObjectOutsidePLAB 0 0 jdk.PromotionFailed 0 0 jdk.RedefineClasses 0 0 jdk.ReservedStackActivation 0 0 jdk.ResidentSetSize 0 0 jdk.RetransformClasses 0 0 jdk.SafepointBegin 0 0 jdk.SafepointEnd 0 0 jdk.SafepointLatency 0 0 jdk.SafepointStateSynchronization 0 0 jdk.SecurityPropertyModification 0 0 jdk.SecurityProviderService 0 0 jdk.SerializationMisdeclaration 0 0 jdk.ShenandoahEvacuationInformation 0 0 jdk.ShenandoahHeapRegionInformation 0 0 jdk.ShenandoahHeapRegionStateChange 0 0 jdk.Shutdown 0 0 jdk.SocketRead 0 0 jdk.SocketWrite 0 0 jdk.StringFlagChanged 0 0 jdk.StringTableStatistics 0 0 jdk.SwapSpace 0 0 jdk.SymbolTableStatistics 0 0 jdk.SyncOnValueBasedClass 0 0 jdk.SystemGC 0 0 jdk.SystemProcess 0 0 jdk.TLSHandshake 0 0 jdk.TenuringDistribution 0 0 jdk.ThreadAllocationStatistics 0 0 jdk.ThreadCPULoad 0 0 jdk.ThreadContextSwitchRate 0 0 jdk.ThreadDump 0 0 jdk.ThreadEnd 0 0 jdk.ThreadPark 0 0 jdk.ThreadSleep 0 0 jdk.ThreadStart 0 0 jdk.UnsignedIntFlagChanged 0 0 jdk.UnsignedLongFlag 0 0 jdk.UnsignedLongFlagChanged 0 0 jdk.VirtualThreadEnd 0 0 jdk.VirtualThreadPinned 0 0 jdk.VirtualThreadStart 0 0 jdk.VirtualThreadSubmitFailed 0 0 jdk.VirtualizationInformation 0 0 jdk.X509Certificate 0 0 jdk.X509Validation 0 0 jdk.YoungGarbageCollection 0 0 jdk.YoungGenerationConfiguration 0 0 jdk.ZAllocationStall 0 0 jdk.ZOldGarbageCollection 0 0 jdk.ZPageAllocation 0 0 jdk.ZRelocationSet 0 0 jdk.ZRelocationSetGroup 0 0 jdk.ZStatisticsCounter 0 0 jdk.ZStatisticsSampler 0 0 jdk.ZThreadPhase 0 0 jdk.ZUncommit 0 0 jdk.ZYoungGarbageCollection 0 0 profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmTrue.jfr Profiler for cpu at stackSize=1 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmTrue.jfr is 2042.15 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 105504324 events (total: 105M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 44.24% 46M org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] 42.94% 45M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] 4.90% 5M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] 1.32% 1M java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():499 [Inlined code] 1.29% 1M org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] 1.25% 1M org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] 0.69% 724660 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] 0.58% 614011 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] 0.42% 439320 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] 0.41% 437158 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] 0.32% 340759 jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] 0.23% 244526 jdk.jfr.internal.JVM#emitEvent() [Native code] 0.19% 203769 org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] 0.15% 161193 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] 0.14% 152830 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] 0.07% 77114 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] 0.05% 56408 org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] 0.05% 47774 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.04% 42184 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] 0.04% 38046 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():49 [JIT compiled code] 0.03% 36658 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():363 [JIT compiled code] 0.03% 27259 sun.nio.ch.NativeThread#current0() [Native code] 0.02% 26128 org.apache.lucene.store.ChecksumIndexInput#skipByReading():81 [JIT compiled code] 0.02% 25776 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] 0.02% 23566 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] 0.02% 22286 org.apache.lucene.util.TernaryLongHeap#downHeap():235 [Inlined code] 0.02% 20779 org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [Inlined code] 0.02% 20709 org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [Inlined code] 0.02% 20624 java.util.concurrent.atomic.LongAdder#add():93 [Inlined code] 0.02% 20111 org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] 0.02% 19803 org.apache.lucene.util.TernaryLongHeap#downHeap():246 [Inlined code] 0.02% 19032 java.util.DualPivotQuicksort#sort():238 [Inlined code] 0.02% 18021 org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():303 [JIT compiled code] 0.01% 15604 sun.nio.ch.UnixFileDispatcherImpl#read0() [Native code] 0.01% 14717 org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter#writeVectorData():302 [JIT compiled code] 0.01% 14131 java.util.DualPivotQuicksort#sort():368 [JIT compiled code] 0.01% 13416 org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():512 [JIT compiled code] 0.01% 13313 org.apache.lucene.util.hnsw.NeighborArray#sort():171 [Inlined code] 0.01% 12928 org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] 0.01% 12681 org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.01% 12385 org.apache.lucene.util.hnsw.NeighborArray#clear():233 [Inlined code] 0.01% 12025 org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():160 [Inlined code] 0.01% 12013 org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] 0.01% 11364 org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():285 [JIT compiled code] 0.01% 11179 org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] 0.01% 11170 org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] 0.01% 11053 org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] 0.01% 10331 org.apache.lucene.util.hnsw.NeighborArray#sort():171 [JIT compiled code] 0.01% 10189 org.apache.lucene.store.MemorySegmentIndexInput#seek():324 [Inlined code] 0.01% 9715 java.util.Objects#checkIndex():365 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmTrue.jfr Profiler for cpu at stackSize=4 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmTrue.jfr is 2042.15 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 105504324 events (total: 105M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 41.32% 43M org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] 22.03% 23M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] 20.91% 22M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] 4.90% 5M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] 2.92% 3M org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] 1.32% 1M java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():499 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] 1.04% 1M org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.78% 820313 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] 0.69% 724655 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.58% 614011 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] 0.40% 417948 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.39% 414501 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] 0.37% 392083 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] 0.32% 338418 jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#copyMemoryInternal():143 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#copyMemory():130 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#copy():653 [Inlined code] 0.23% 244526 jdk.jfr.internal.JVM#emitEvent() [Native code] at jdk.jfr.internal.periodic.JVMEventTask#execute():54 [Inlined code] at jdk.jfr.internal.periodic.PeriodicTask#run():125 [Inlined code] at jdk.jfr.internal.periodic.PeriodicEvents#doPeriodic():145 [JIT compiled code] 0.23% 241555 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.19% 203686 org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#collect():713 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():350 [JIT compiled code] 0.15% 161097 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#release():720 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$WriteLock#unlock():1154 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():422 [JIT compiled code] 0.08% 84433 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#insertSortedInternal():184 [Inlined code] 0.07% 76429 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#pop():124 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#pop():129 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():322 [JIT compiled code] 0.05% 53838 org.apache.lucene.util.TernaryLongHeap#downHeap():234 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#updateTop():153 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] 0.04% 44721 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.04% 42184 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] 0.04% 41224 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():101 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] 0.03% 33045 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():363 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.03% 30569 org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] 0.03% 30494 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.02% 25614 org.apache.lucene.store.ChecksumIndexInput#skipByReading():81 [JIT compiled code] at org.apache.lucene.store.ChecksumIndexInput#seek():64 [Inlined code] at org.apache.lucene.codecs.CodecUtil#checksumEntireFile():619 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsReader#checkIntegrity():194 [Inlined code] 0.02% 25184 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] 0.02% 24312 sun.nio.ch.NativeThread#current0() [Native code] at sun.nio.ch.NativeThread#current():51 [Inlined code] at sun.nio.ch.NativeThreadSet#add():48 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():349 [Inlined code] 0.02% 24199 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():49 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.02% 23566 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.02% 20779 org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] 0.02% 20317 org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] 0.02% 19924 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [JIT compiled code] 0.02% 17247 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.02% 15932 org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.01% 15604 sun.nio.ch.UnixFileDispatcherImpl#read0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#read():51 [Inlined code] at sun.nio.ch.IOUtil#readIntoNativeBuffer():341 [Inlined code] at sun.nio.ch.IOUtil#read():307 [JIT compiled code] 0.01% 14717 org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter#writeVectorData():302 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter#mergeOneFlatVectorField():235 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] 0.01% 13918 java.util.concurrent.atomic.LongAdder#add():93 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#lambda$addNode$0():170 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph$$Lambda.0x00000000931744c0#accept() [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#alertOnHeapMemoryUsageChange():118 [Inlined code] 0.01% 13596 org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.01% 13416 org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():512 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] 0.01% 13335 org.apache.lucene.util.TernaryLongHeap#downHeap():235 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#updateTop():153 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] 0.01% 13313 org.apache.lucene.util.hnsw.NeighborArray#sort():171 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.01% 12928 org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.01% 12385 org.apache.lucene.util.hnsw.NeighborArray#clear():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():493 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.01% 12210 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.01% 11802 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():49 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.01% 11185 org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.01% 11179 org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmTrue.jfr Profiler for cpu at stackSize=12 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmTrue.jfr is 2042.15 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 105504324 events (total: 105M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 38.28% 40M org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Inlined code] 15.46% 16M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] 14.34% 15M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] 4.80% 5M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 4.44% 4M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 3.08% 3M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 2.44% 2M org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Inlined code] 1.45% 1M org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Inlined code] 1.34% 1M org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] 0.78% 826691 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] 0.77% 813271 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] 0.72% 757949 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Interpreted code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x000000009319bda0#run() [JIT compiled code] 0.69% 728754 java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():499 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.69% 726967 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] 0.65% 686364 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] 0.49% 519049 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Interpreted code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.49% 517248 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] 0.46% 488088 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Interpreted code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] 0.40% 425312 java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():499 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] 0.40% 420640 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.38% 399677 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] 0.33% 346251 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] 0.30% 320358 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] 0.28% 291140 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.25% 259518 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.24% 248656 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.21% 221344 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Inlined code] 0.21% 219606 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.20% 215201 jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#copyMemoryInternal():143 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#copyMemory():130 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#copy():653 [Inlined code] at java.lang.foreign.MemorySegment#copy():2555 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#readFloats():245 [Inlined code] at org.apache.lucene.codecs.lucene95.OffHeapFloatVectorValues#vectorValue():83 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.20% 207807 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Interpreted code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x000000009319bda0#run() [JIT compiled code] 0.19% 199185 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.19% 198597 jdk.jfr.internal.JVM#emitEvent() [Native code] at jdk.jfr.internal.periodic.JVMEventTask#execute():54 [Inlined code] at jdk.jfr.internal.periodic.PeriodicTask#run():125 [Inlined code] at jdk.jfr.internal.periodic.PeriodicEvents#doPeriodic():145 [JIT compiled code] at jdk.jfr.internal.PlatformRecorder#periodicTask():502 [JIT compiled code] at jdk.jfr.internal.PlatformRecorder#lambda$startDiskMonitor$0():428 [Interpreted code] at jdk.jfr.internal.PlatformRecorder$$Lambda.0x000000009307aa58#run() [Interpreted code] at java.lang.Thread#runWith():1487 [Interpreted code] at java.lang.Thread#run():1474 [Interpreted code] 0.18% 188146 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.18% 186780 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x000000009319bda0#run() [JIT compiled code] 0.17% 180213 org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#collect():713 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():350 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 0.16% 167600 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 0.15% 160273 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Interpreted code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x000000009319bda0#run() [JIT compiled code] 0.15% 154826 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.14% 148209 java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():499 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.13% 142057 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Inlined code] 0.13% 140529 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] 0.13% 138702 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.11% 120567 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] 0.11% 112755 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] 0.11% 112663 org.apache.lucene.util.TernaryLongHeap#upHeap():208 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.10% 100986 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.09% 93736 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] 0.09% 93526 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#signalNext():265 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#release():720 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$WriteLock#unlock():1154 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():422 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] 0.08% 84433 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#insertSortedInternal():184 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#sort():164 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.07% 72091 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x000000009319bda0#run() [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmTrue.jfr Profiler for heap at stackSize=1 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmTrue.jfr is 2042.15 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 32871 events (total: 227470M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 27.86% 63366M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] 27.58% 62733M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] 26.84% 61047M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] 3.60% 8186M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] 2.56% 5815M java.util.Arrays#copyOf():3478 [Inlined code] 2.37% 5398M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] 2.25% 5117M java.lang.Integer#valueOf():1006 [Inlined code] 0.82% 1876M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] 0.78% 1774M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] 0.76% 1739M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] 0.53% 1214M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [JIT compiled code] 0.48% 1092M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] 0.39% 884M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] 0.37% 852M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [Inlined code] 0.37% 843M org.apache.lucene.search.AbstractKnnVectorQuery#getKnnCollectorManager():248 [Inlined code] 0.25% 559M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():320 [JIT compiled code] 0.22% 489M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():158 [Inlined code] 0.16% 352M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():306 [JIT compiled code] 0.15% 334M java.lang.invoke.DirectMethodHandle#allocateInstance():500 [Inlined code] 0.14% 324M org.apache.lucene.util.SparseFixedBitSet#insertLong():230 [Inlined code] 0.13% 306M java.util.DualPivotQuicksort#tryMergeRuns():816 [JIT compiled code] 0.10% 225M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] 0.09% 208M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():556 [JIT compiled code] 0.08% 190M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():618 [JIT compiled code] 0.07% 156M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] 0.06% 145M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] 0.06% 140M knn.KnnIndexer$TrackingConcurrentMergeScheduler#doMerge():355 [Interpreted code] 0.06% 137M java.util.HashMap#newNode():1910 [Inlined code] 0.06% 127M java.util.DualPivotQuicksort#sort():354 [JIT compiled code] 0.06% 127M org.apache.lucene.search.AbstractKnnVectorQuery#getKnnCollectorManager():248 [Interpreted code] 0.05% 114M java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject#await():1767 [Interpreted code] 0.05% 109M org.apache.lucene.util.hnsw.OnHeapHnswGraph#():86 [JIT compiled code] 0.04% 100M java.lang.Thread#beforeSleep():473 [Inlined code] 0.04% 97M java.lang.reflect.Array#newInstance():76 [Inlined code] 0.04% 93M knn.KnnIndexer#createIndex():264 [Interpreted code] 0.04% 92M org.apache.lucene.util.FixedBitSet#():148 [Inlined code] 0.04% 86M org.apache.lucene.internal.hppc.IntIntHashMap#allocateBuffers():744 [Interpreted code] 0.04% 82M java.util.logging.LogManager#reset():1298 [Interpreted code] 0.04% 82M jdk.jfr.internal.ShutdownHook#run():48 [Interpreted code] 0.03% 72M knn.KnnIndexer#waitForMergesWithStatus():297 [Interpreted code] 0.03% 71M java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquire():389 [JIT compiled code] 0.03% 71M jdk.internal.misc.Unsafe#allocateUninitializedArray():1396 [Inlined code] 0.03% 62M java.util.HashMap#resize():711 [JIT compiled code] 0.03% 59M knn.IndexerThread#_run():108 [JIT compiled code] 0.02% 56M org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#writeGraph():526 [JIT compiled code] 0.02% 47M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():158 [JIT compiled code] 0.02% 40M java.util.ArrayList#grow():240 [Inlined code] 0.02% 35M knn.IndexerThread#_run():125 [JIT compiled code] 0.01% 32M knn.KnnGraphTester#printGraphFanout():1147 [Interpreted code] 0.01% 29M java.util.List#of():935 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmTrue.jfr Profiler for heap at stackSize=4 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmTrue.jfr is 2042.15 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 32871 events (total: 227470M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 22.87% 52015M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] 22.14% 50358M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] 17.10% 38896M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollector#():44 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [JIT compiled code] 10.76% 24469M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollector#():44 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [Interpreted code] 4.71% 10711M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] 4.67% 10627M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] 3.60% 8186M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 2.47% 5616M java.util.Arrays#copyOf():3478 [Inlined code] at java.util.ArrayDeque#grow():146 [JIT compiled code] at java.util.ArrayDeque#addFirst():288 [Inlined code] at java.util.ArrayDeque#push():577 [Inlined code] 2.37% 5398M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():335 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] 2.25% 5109M java.lang.Integer#valueOf():1006 [Inlined code] at knn.KnnGraphTester#printGraphConnectedNess():1131 [JIT compiled code] at knn.KnnGraphTester#printFanoutHist():1086 [Interpreted code] at knn.KnnGraphTester#printFanoutHist():1061 [Interpreted code] 0.82% 1876M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.53% 1214M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.48% 1092M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.43% 972M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.43% 970M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.37% 843M org.apache.lucene.search.AbstractKnnVectorQuery#getKnnCollectorManager():248 [Inlined code] at org.apache.lucene.search.AbstractKnnVectorQuery#rewrite():106 [JIT compiled code] at org.apache.lucene.search.KnnFloatVectorQuery#rewrite():48 [Inlined code] at knn.KnnGraphTester$ProfiledKnnFloatVectorQuery#rewrite():2274 [JIT compiled code] 0.33% 746M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.28% 637M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.28% 629M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.18% 407M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] 0.16% 375M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():158 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.16% 371M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.14% 317M org.apache.lucene.util.SparseFixedBitSet#insertLong():230 [Inlined code] at org.apache.lucene.util.SparseFixedBitSet#getAndSet():170 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] at org.apache.lucene.util.hnsw.AbstractHnswGraphSearcher#search():83 [JIT compiled code] 0.13% 306M java.util.DualPivotQuicksort#tryMergeRuns():816 [JIT compiled code] at java.util.DualPivotQuicksort#sort():277 [JIT compiled code] at java.util.DualPivotQuicksort#sort():238 [Inlined code] at java.util.Arrays#sort():123 [Inlined code] 0.12% 279M java.lang.invoke.DirectMethodHandle#allocateInstance():500 [Inlined code] at java.lang.invoke.DirectMethodHandle$Holder#newInvokeSpecial() [Inlined code] at java.lang.invoke.Invokers$Holder#linkToTargetMethod() [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [Inlined code] 0.11% 259M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():320 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.11% 243M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():320 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] 0.10% 225M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():238 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] 0.09% 213M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():306 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.09% 208M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():556 [JIT compiled code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader#serializedDocument():645 [Inlined code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#copyOneDoc():508 [JIT compiled code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#merge():630 [JIT compiled code] 0.08% 190M org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState#document():618 [JIT compiled code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader#serializedDocument():645 [Inlined code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#copyOneDoc():508 [JIT compiled code] at org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter#merge():630 [JIT compiled code] 0.08% 172M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():238 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] 0.07% 161M java.util.Arrays#copyOf():3478 [Inlined code] at java.util.ArrayDeque#grow():146 [JIT compiled code] at java.util.ArrayDeque#addFirst():288 [Inlined code] at java.util.ArrayDeque#push():577 [JIT compiled code] 0.07% 156M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] 0.06% 145M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] 0.06% 140M knn.KnnIndexer$TrackingConcurrentMergeScheduler#doMerge():355 [Interpreted code] at org.apache.lucene.index.ConcurrentMergeScheduler$MergeThread#run():726 [Interpreted code] 0.06% 131M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():238 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] 0.06% 128M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():306 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] 0.06% 127M org.apache.lucene.search.AbstractKnnVectorQuery#getKnnCollectorManager():248 [Interpreted code] at org.apache.lucene.search.AbstractKnnVectorQuery#rewrite():106 [Interpreted code] at org.apache.lucene.search.KnnFloatVectorQuery#rewrite():48 [Interpreted code] at knn.KnnGraphTester$ProfiledKnnFloatVectorQuery#rewrite():2274 [Interpreted code] 0.05% 109M org.apache.lucene.util.hnsw.OnHeapHnswGraph#():86 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():119 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initGraph():148 [Interpreted code] at org.apache.lucene.util.hnsw.ConcurrentHnswMerger#createBuilder():81 [Interpreted code] 0.05% 105M java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject#await():1767 [Interpreted code] at java.util.concurrent.LinkedBlockingQueue#take():435 [JIT compiled code] at java.util.concurrent.ThreadPoolExecutor#getTask():1016 [JIT compiled code] at java.util.concurrent.ThreadPoolExecutor#runWorker():1076 [Interpreted code] 0.05% 103M java.util.DualPivotQuicksort#sort():354 [JIT compiled code] at java.util.DualPivotQuicksort#sort():238 [Inlined code] at java.util.Arrays#sort():123 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#writeGraph():534 [JIT compiled code] 0.04% 100M java.lang.Thread#beforeSleep():473 [Inlined code] at java.lang.Thread#sleepNanos():504 [JIT compiled code] at java.lang.Thread#sleep():540 [JIT compiled code] at knn.KnnIndexer#waitForMergesWithStatus():304 [Interpreted code] 0.04% 97M java.lang.reflect.Array#newInstance():76 [Inlined code] at org.apache.lucene.util.ArrayUtil#growExact():216 [Inlined code] at org.apache.lucene.util.ArrayUtil#grow():234 [JIT compiled code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():152 [Inlined code] 0.04% 97M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():158 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Interpreted code] 0.04% 93M knn.KnnIndexer#createIndex():264 [Interpreted code] at knn.KnnGraphTester#run():689 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] at knn.KnnGraphTester#main():275 [Interpreted code] 0.04% 92M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] 0.04% 92M org.apache.lucene.util.FixedBitSet#():148 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#():190 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#():66 [JIT compiled code] at org.apache.lucene.util.hnsw.ConcurrentHnswMerger#createBuilder():85 [Interpreted code] 0.04% 86M org.apache.lucene.internal.hppc.IntIntHashMap#allocateBuffers():744 [Interpreted code] at org.apache.lucene.internal.hppc.IntIntHashMap#ensureCapacity():450 [Inlined code] at org.apache.lucene.internal.hppc.IntIntHashMap#():107 [Inlined code] at org.apache.lucene.internal.hppc.IntIntHashMap#():93 [Inlined code] 0.04% 82M java.util.logging.LogManager#reset():1298 [Interpreted code] at java.util.logging.LogManager$Cleaner#run():275 [Interpreted code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmTrue.jfr Profiler for heap at stackSize=12 [/l/logs.nightly/2026.05.15.14.49.32/bench-knn-q32-fmTrue.jfr is 2042.15 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 32871 events (total: 227470M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 17.07% 38832M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollector#():44 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [JIT compiled code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():28 [Inlined code] at org.apache.lucene.search.IndexSearcher#search():752 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#searchAfter():601 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#search():624 [Inlined code] at knn.KnnGraphTester#doFloatVectorQuery():1527 [JIT compiled code] at knn.KnnGraphTester#testSearch():1253 [Interpreted code] at knn.KnnGraphTester#run():770 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] 9.15% 20817M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Inlined code] 9.00% 20481M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Inlined code] 7.17% 16320M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollector#():44 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():28 [Interpreted code] at org.apache.lucene.search.IndexSearcher#search():752 [Interpreted code] at org.apache.lucene.search.IndexSearcher#searchAfter():601 [Interpreted code] at org.apache.lucene.search.IndexSearcher#search():624 [Interpreted code] at knn.KnnGraphTester#doFloatVectorQuery():1527 [Interpreted code] at knn.KnnGraphTester#testSearch():1253 [Interpreted code] at knn.KnnGraphTester#run():770 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] 6.96% 15839M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Interpreted code] 6.82% 15524M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Interpreted code] 3.58% 8148M org.apache.lucene.util.TernaryLongHeap#():68 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#():46 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollector#():44 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():128 [Interpreted code] at org.apache.lucene.search.TopScoreDocCollectorManager#newCollector():28 [Interpreted code] at org.apache.lucene.search.IndexSearcher#search():752 [Interpreted code] at org.apache.lucene.search.IndexSearcher#searchAfter():601 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#search():624 [Inlined code] at knn.KnnGraphTester#doFloatVectorQuery():1527 [JIT compiled code] at knn.KnnGraphTester#testSearch():1253 [Interpreted code] at knn.KnnGraphTester#run():770 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] 2.56% 5831M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [JIT compiled code] 2.47% 5616M java.util.Arrays#copyOf():3478 [Inlined code] at java.util.ArrayDeque#grow():146 [JIT compiled code] at java.util.ArrayDeque#addFirst():288 [Inlined code] at java.util.ArrayDeque#push():577 [Inlined code] at knn.KnnGraphTester#printGraphConnectedNess():1131 [JIT compiled code] at knn.KnnGraphTester#printFanoutHist():1086 [Interpreted code] at knn.KnnGraphTester#printFanoutHist():1061 [Interpreted code] at knn.KnnGraphTester#run():775 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] at knn.KnnGraphTester#main():275 [Interpreted code] 2.37% 5398M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():335 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():783 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 2.32% 5282M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [JIT compiled code] 2.25% 5109M java.lang.Integer#valueOf():1006 [Inlined code] at knn.KnnGraphTester#printGraphConnectedNess():1131 [JIT compiled code] at knn.KnnGraphTester#printFanoutHist():1086 [Interpreted code] at knn.KnnGraphTester#printFanoutHist():1061 [Interpreted code] at knn.KnnGraphTester#run():775 [Interpreted code] at knn.KnnGraphTester#runWithCleanUp():280 [Interpreted code] at knn.KnnGraphTester#main():275 [Interpreted code] 1.66% 3769M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] 1.65% 3744M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] 1.64% 3736M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] 1.56% 3544M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] 1.55% 3520M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 1.47% 3345M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 1.20% 2730M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():255 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initGraph():148 [Interpreted code] at org.apache.lucene.util.hnsw.ConcurrentHnswMerger#createBuilder():81 [Interpreted code] at org.apache.lucene.util.hnsw.IncrementalHnswGraphMerger#merge():212 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#buildAndWriteGraph():485 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#lambda$mergeOneField$0():453 [Interpreted code] 1.15% 2612M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():255 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initGraph():148 [Interpreted code] at org.apache.lucene.util.hnsw.ConcurrentHnswMerger#createBuilder():81 [Interpreted code] at org.apache.lucene.util.hnsw.IncrementalHnswGraphMerger#merge():212 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#buildAndWriteGraph():485 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#lambda$mergeOneField$0():453 [Interpreted code] 1.08% 2458M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Interpreted code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 1.05% 2384M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 1.05% 2381M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.85% 1936M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [JIT compiled code] 0.85% 1927M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] 0.72% 1629M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] 0.68% 1535M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.54% 1239M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.47% 1064M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Inlined code] 0.35% 803M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Interpreted code] 0.32% 730M org.apache.lucene.search.AbstractKnnVectorQuery#getKnnCollectorManager():248 [Inlined code] at org.apache.lucene.search.AbstractKnnVectorQuery#rewrite():106 [JIT compiled code] at org.apache.lucene.search.KnnFloatVectorQuery#rewrite():48 [Inlined code] at knn.KnnGraphTester$ProfiledKnnFloatVectorQuery#rewrite():2274 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#rewrite():873 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#rewrite():884 [Inlined code] at org.apache.lucene.search.IndexSearcher#search():753 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#searchAfter():601 [JIT compiled code] at org.apache.lucene.search.IndexSearcher#search():624 [Inlined code] at knn.KnnGraphTester#doFloatVectorQuery():1527 [JIT compiled code] at knn.KnnGraphTester#testSearch():1253 [Interpreted code] at knn.KnnGraphTester#run():770 [Interpreted code] 0.32% 726M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 0.29% 653M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.27% 619M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.24% 549M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.23% 531M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Interpreted code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.22% 511M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [JIT compiled code] 0.21% 478M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.21% 475M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#replayBufferedVectors():771 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():787 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.18% 399M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#replayBufferedVectors():771 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():787 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.16% 355M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [JIT compiled code] 0.15% 349M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Interpreted code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.14% 326M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.14% 317M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Interpreted code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.14% 317M org.apache.lucene.util.SparseFixedBitSet#insertLong():230 [Inlined code] at org.apache.lucene.util.SparseFixedBitSet#getAndSet():170 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] at org.apache.lucene.util.hnsw.AbstractHnswGraphSearcher#search():83 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#search():36 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#search():162 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsReader#search():352 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsReader#search():307 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsReader#search():305 [JIT compiled code] at org.apache.lucene.index.CodecReader#searchNearestVectors():273 [JIT compiled code] at org.apache.lucene.search.KnnFloatVectorQuery#approximateSearch():118 [JIT compiled code] at org.apache.lucene.search.AbstractKnnVectorQuery#getLeafResults():196 [JIT compiled code] 0.13% 306M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Interpreted code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x000000009319bda0#run() [JIT compiled code] 0.12% 265M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [JIT compiled code] 0.11% 257M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Inlined code] at java.util.concurrent.FutureTask#run():328 [Inlined code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#invokeAll():109 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#build():101 [JIT compiled code] at org.apache.lucene.util.hnsw.IncrementalHnswGraphMerger#merge():214 [Interpreted code] 0.11% 256M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 0.11% 253M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Interpreted code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x000000009319b848#call() [Interpreted code] at java.util.concurrent.FutureTask#run():328 [Interpreted code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [Interpreted code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x000000009319bda0#run() [JIT compiled code] at java.util.concurrent.ThreadPoolExecutor#runWorker():1090 [Interpreted code] now remove KNN index knn-reuse/indices/dot_product-icohere-v3-wikipedia-en-scattered-1024d.docs.vec-1765126857478-8000000-32-100-fm nDoc searchType topK fanout resultSimilarity decay resultCount maxConn beamWidth overSample bp-reorder indexType rerank quantized vec_disk(MB) vec_RAM(MB) index(s) index_docs/s force_merge(s) num_segments index_size(MB) recall latency(ms) netCPU avgCpuCount 8000000 KNN 100 100 N/A N/A 100.000 32 100 1.000 false HNSW no 4 bits 35278.320 4028.320 898.02 8908.54 0.00 18 36035.75 0.897 14.205 14.875 1.047 8000000 KNN 100 100 N/A N/A 100.000 32 100 1.000 false HNSW no 4 bits 35278.320 4028.320 953.03 8394.27 1108.93 1 36185.99 0.881 2.402 2.508 1.044 8000000 KNN 100 100 N/A N/A 100.000 32 100 1.000 false HNSW no 7 bits 39184.570 7934.570 1371.12 5834.65 1105.43 1 40090.64 0.929 2.518 2.631 1.045 8000000 KNN 100 100 N/A N/A 100.000 32 100 1.000 false HNSW no 7 bits 39184.570 7934.570 1508.64 5302.80 0.00 17 39941.31 0.955 14.304 14.969 1.046 8000000 KNN 100 100 N/A N/A 100.000 32 100 1.000 false HNSW no no 31250.000 31250.000 3017.78 2650.96 3131.01 1 32156.05 0.943 3.163 3.310 1.046 8000000 KNN 100 100 N/A N/A 100.000 32 100 1.000 false HNSW no no 31250.000 31250.000 3069.46 2606.32 0.00 16 32013.75 0.975 12.209 12.783 1.047 saving all results to /l/logs.nightly/2026.05.15.14.49.32/knn_results.pk done! took 26822.7 seconds total removing KNN indices dir /l/util.nightly/knn-reuse/indices [2026-05-15 23:32:23.857906] now generate KNN nightly charts [2026-05-15 23:32:27.198600] build medium index (fast) /l/indices/wikimedium.trunk.nightly.Lucene104.nd27.625M: now create cd /l/trunk.nightly/lucene/benchmark NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log /l/logs.nightly/nightly.wikimedium.trunk.nightly.Lucene104.nd27.625M.log run: ['/usr/lib/jvm/java-25-openjdk/bin/java', '--add-modules', 'jdk.incubator.vector', '-Xmx32g', '-Xms32g', '-server', '-XX:+UseParallelGC', '-Djava.io.tmpdir=/l/tmp', '--enable-native-access=ALL-UNNAMED', '-classpath', '/l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build', '-XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.nd27.625M.jfr', '-XX:+UnlockDiagnosticVMOptions', '-XX:+DebugNonSafepoints', 'perf.Indexer', '-dirImpl', 'MMapDirectory', '-indexPath', '/l/indices/wikimedium.trunk.nightly.Lucene104.nd27.625M', '-analyzer', 'StandardAnalyzerNoStopWords', '-lineDocsFile', '/l/data/enwiki-20110115-lines-1k-fixed-with-random-labels.bin', '-docCountLimit', '27625038', '-threadCount', '36', '-useCMS', '-ramBufferMB', '2048', '-maxBufferedDocs', '-1', '-postingsFormat', 'Lucene104', '-mergePolicy', 'TieredMergePolicy', '-idFieldPostingsFormat', 'Lucene104', '-idFieldPostingsFormat', 'Lucene104', '-hnswThreadsPerMerge', '1', '-hnswThreadPoolCount', '1'], cwd=/l/trunk.nightly/lucene/benchmark vmstatLogFile=/l/logs.nightly/nightly.vmstat.log topLogFile=/l/logs.nightly/nightly.top.log run vmstat: /usr/sbin/vmstat --active --wide --timestamp --unit M 1 > /l/logs.nightly/nightly.vmstat.log 2>&1 & run /usr/sbin/ps -eo pid,%cpu,%mem,bsdtime,etime,start,args --cols=120 --sort=-%cpu | head -10 >> /l/logs.nightly/nightly.top.log 2>&1 to /l/logs.nightly/nightly.top.log now kill vmstat: pid=2339591 Profiler summary for /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.nd27.625M.jfr Version: 2.1 Chunks: 16 Start: 2026-05-16 03:32:27 (UTC) Duration: 131 s Event Type Count Size (bytes) ============================================================= jdk.FileWrite 3975195 83115154 jdk.CPUTimeSample 3735230 65595957 jdk.FileRead 796363 18955611 jdk.ObjectAllocationInNewTLAB 580505 10150838 jdk.ObjectAllocationOutsideTLAB 145735 2320385 jdk.BooleanFlag 11072 350892 jdk.Compilation 6224 160580 jdk.CPULoad 2345 46289 jdk.UnsignedIntFlag 992 34266 jdk.IntFlag 896 32152 jdk.Checkpoint 843 26680650 jdk.StringFlag 720 26887 jdk.GarbageCollection 44 1044 jdk.CPUInformation 16 24027 jdk.GCConfiguration 16 411 jdk.JVMInformation 16 16923 jdk.Metadata 16 1768428 jdk.ActiveRecording 0 0 jdk.ActiveSetting 0 0 jdk.AllocationRequiringGC 0 0 jdk.BooleanFlagChanged 0 0 jdk.CPUTimeSamplesLost 0 0 jdk.CPUTimeStampCounter 0 0 jdk.ClassDefine 0 0 jdk.ClassLoad 0 0 jdk.ClassLoaderStatistics 0 0 jdk.ClassLoadingStatistics 0 0 jdk.ClassRedefinition 0 0 jdk.ClassUnload 0 0 jdk.CodeCacheConfiguration 0 0 jdk.CodeCacheFull 0 0 jdk.CodeCacheStatistics 0 0 jdk.CompilationFailure 0 0 jdk.CompilerConfiguration 0 0 jdk.CompilerInlining 0 0 jdk.CompilerPhase 0 0 jdk.CompilerQueueUtilization 0 0 jdk.CompilerStatistics 0 0 jdk.ConcurrentModeFailure 0 0 jdk.ContainerCPUThrottling 0 0 jdk.ContainerCPUUsage 0 0 jdk.ContainerConfiguration 0 0 jdk.ContainerIOUsage 0 0 jdk.ContainerMemoryUsage 0 0 jdk.ContinuationFreeze 0 0 jdk.ContinuationFreezeFast 0 0 jdk.ContinuationFreezeSlow 0 0 jdk.ContinuationThaw 0 0 jdk.ContinuationThawFast 0 0 jdk.ContinuationThawSlow 0 0 jdk.DataLoss 0 0 jdk.Deoptimization 0 0 jdk.DeprecatedInvocation 0 0 jdk.Deserialization 0 0 jdk.DirectBufferStatistics 0 0 jdk.DoubleFlag 0 0 jdk.DoubleFlagChanged 0 0 jdk.DumpReason 0 0 jdk.EvacuationFailed 0 0 jdk.EvacuationInformation 0 0 jdk.ExceptionStatistics 0 0 jdk.ExecuteVMOperation 0 0 jdk.ExecutionSample 0 0 jdk.FileForce 0 0 jdk.FinalizerStatistics 0 0 jdk.Flush 0 0 jdk.G1AdaptiveIHOP 0 0 jdk.G1BasicIHOP 0 0 jdk.G1EvacuationOldStatistics 0 0 jdk.G1EvacuationYoungStatistics 0 0 jdk.G1GarbageCollection 0 0 jdk.G1HeapRegionInformation 0 0 jdk.G1HeapRegionTypeChange 0 0 jdk.G1HeapSummary 0 0 jdk.G1MMU 0 0 jdk.GCCPUTime 0 0 jdk.GCHeapConfiguration 0 0 jdk.GCHeapMemoryPoolUsage 0 0 jdk.GCHeapMemoryUsage 0 0 jdk.GCHeapSummary 0 0 jdk.GCPhaseConcurrent 0 0 jdk.GCPhaseConcurrentLevel1 0 0 jdk.GCPhaseConcurrentLevel2 0 0 jdk.GCPhaseParallel 0 0 jdk.GCPhasePause 0 0 jdk.GCPhasePauseLevel1 0 0 jdk.GCPhasePauseLevel2 0 0 jdk.GCPhasePauseLevel3 0 0 jdk.GCPhasePauseLevel4 0 0 jdk.GCReferenceStatistics 0 0 jdk.GCSurvivorConfiguration 0 0 jdk.GCTLABConfiguration 0 0 jdk.HeapDump 0 0 jdk.InitialEnvironmentVariable 0 0 jdk.InitialSecurityProperty 0 0 jdk.InitialSystemProperty 0 0 jdk.IntFlagChanged 0 0 jdk.JITRestart 0 0 jdk.JavaAgent 0 0 jdk.JavaErrorThrow 0 0 jdk.JavaExceptionThrow 0 0 jdk.JavaMonitorDeflate 0 0 jdk.JavaMonitorEnter 0 0 jdk.JavaMonitorInflate 0 0 jdk.JavaMonitorNotify 0 0 jdk.JavaMonitorStatistics 0 0 jdk.JavaMonitorWait 0 0 jdk.JavaThreadStatistics 0 0 jdk.LongFlag 0 0 jdk.LongFlagChanged 0 0 jdk.MetaspaceAllocationFailure 0 0 jdk.MetaspaceChunkFreeListSummary 0 0 jdk.MetaspaceGCThreshold 0 0 jdk.MetaspaceOOM 0 0 jdk.MetaspaceSummary 0 0 jdk.MethodTiming 0 0 jdk.MethodTrace 0 0 jdk.ModuleExport 0 0 jdk.ModuleRequire 0 0 jdk.NativeAgent 0 0 jdk.NativeLibrary 0 0 jdk.NativeLibraryLoad 0 0 jdk.NativeLibraryUnload 0 0 jdk.NativeMemoryUsage 0 0 jdk.NativeMemoryUsageTotal 0 0 jdk.NativeMethodSample 0 0 jdk.NetworkUtilization 0 0 jdk.OSInformation 0 0 jdk.ObjectAllocationSample 0 0 jdk.ObjectCount 0 0 jdk.ObjectCountAfterGC 0 0 jdk.OldGarbageCollection 0 0 jdk.OldObjectSample 0 0 jdk.PSHeapSummary 0 0 jdk.ParallelOldGarbageCollection 0 0 jdk.PhysicalMemory 0 0 jdk.ProcessStart 0 0 jdk.PromoteObjectInNewPLAB 0 0 jdk.PromoteObjectOutsidePLAB 0 0 jdk.PromotionFailed 0 0 jdk.RedefineClasses 0 0 jdk.ReservedStackActivation 0 0 jdk.ResidentSetSize 0 0 jdk.RetransformClasses 0 0 jdk.SafepointBegin 0 0 jdk.SafepointEnd 0 0 jdk.SafepointLatency 0 0 jdk.SafepointStateSynchronization 0 0 jdk.SecurityPropertyModification 0 0 jdk.SecurityProviderService 0 0 jdk.SerializationMisdeclaration 0 0 jdk.ShenandoahEvacuationInformation 0 0 jdk.ShenandoahHeapRegionInformation 0 0 jdk.ShenandoahHeapRegionStateChange 0 0 jdk.Shutdown 0 0 jdk.SocketRead 0 0 jdk.SocketWrite 0 0 jdk.StringFlagChanged 0 0 jdk.StringTableStatistics 0 0 jdk.SwapSpace 0 0 jdk.SymbolTableStatistics 0 0 jdk.SyncOnValueBasedClass 0 0 jdk.SystemGC 0 0 jdk.SystemProcess 0 0 jdk.TLSHandshake 0 0 jdk.TenuringDistribution 0 0 jdk.ThreadAllocationStatistics 0 0 jdk.ThreadCPULoad 0 0 jdk.ThreadContextSwitchRate 0 0 jdk.ThreadDump 0 0 jdk.ThreadEnd 0 0 jdk.ThreadPark 0 0 jdk.ThreadSleep 0 0 jdk.ThreadStart 0 0 jdk.UnsignedIntFlagChanged 0 0 jdk.UnsignedLongFlag 0 0 jdk.UnsignedLongFlagChanged 0 0 jdk.VirtualThreadEnd 0 0 jdk.VirtualThreadPinned 0 0 jdk.VirtualThreadStart 0 0 jdk.VirtualThreadSubmitFailed 0 0 jdk.VirtualizationInformation 0 0 jdk.X509Certificate 0 0 jdk.X509Validation 0 0 jdk.YoungGarbageCollection 0 0 jdk.YoungGenerationConfiguration 0 0 jdk.ZAllocationStall 0 0 jdk.ZOldGarbageCollection 0 0 jdk.ZPageAllocation 0 0 jdk.ZRelocationSet 0 0 jdk.ZRelocationSetGroup 0 0 jdk.ZStatisticsCounter 0 0 jdk.ZStatisticsSampler 0 0 jdk.ZThreadPhase 0 0 jdk.ZUncommit 0 0 jdk.ZYoungGarbageCollection 0 0 profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.nd27.625M.jfr Profiler for cpu at stackSize=1 [medium index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.nd27.625M.jfr is 199.59 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 3735230 events (total: 3M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 6.18% 230846 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] 5.46% 203774 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] 4.73% 176567 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] 3.64% 136007 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] 3.25% 121458 java.lang.Integer#rotateLeft():1650 [Inlined code] 3.24% 121073 java.lang.Character#codePointAtImpl():9670 [Inlined code] 3.22% 120274 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] 2.95% 110035 java.lang.Character#codePointAt():9662 [Inlined code] 2.56% 95639 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] 2.37% 88376 java.lang.Character#isHighSurrogate():9464 [Inlined code] 1.74% 64814 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1019 [JIT compiled code] 1.63% 60783 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1022 [JIT compiled code] 1.62% 60643 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] 1.54% 57509 org.apache.lucene.util.BytesRefHash#findHash():381 [Inlined code] 1.46% 54474 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#copyBuffer():47 [Inlined code] 1.36% 50693 org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] 1.24% 46362 org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] 1.16% 43321 org.apache.lucene.index.ByteSliceReader#readByte():74 [Inlined code] 1.07% 40137 java.lang.Character#toChars():9872 [Inlined code] 1.06% 39580 org.apache.lucene.util.BytesRefBlockPool#fillBytesRef():65 [Inlined code] 1.01% 37741 org.apache.lucene.util.ByteBlockPool#getBuffer():358 [Inlined code] 1.00% 37339 org.apache.lucene.util.BytesRefBuilder#growNoCopy():67 [Inlined code] 0.99% 37013 org.apache.lucene.analysis.CharacterUtils#toLowerCase():57 [Inlined code] 0.97% 36404 org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] 0.94% 35143 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():148 [Inlined code] 0.86% 32061 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] 0.83% 30822 java.lang.ThreadLocal#get():171 [Inlined code] 0.77% 28639 org.apache.lucene.index.TermsHashPerField#writeByte():222 [Inlined code] 0.63% 23386 org.apache.lucene.analysis.standard.StandardTokenizerImpl#zzCMap():742 [Inlined code] 0.58% 21683 java.lang.Character#codePointAt():9665 [Inlined code] 0.56% 21009 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():143 [Inlined code] 0.55% 20696 jdk.internal.util.ArraysSupport#mismatch():564 [Inlined code] 0.54% 20293 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():145 [Inlined code] 0.50% 18503 jdk.internal.misc.ScopedMemoryAccess#getByteInternal():1100 [Inlined code] 0.45% 16978 java.lang.Character#toLowerCase():11251 [Inlined code] 0.45% 16814 org.apache.lucene.index.TermsHashPerField#positionStreamSlice():214 [Inlined code] 0.44% 16456 org.apache.lucene.util.AttributeSource#clearAttributes():273 [Inlined code] 0.43% 16053 org.apache.lucene.codecs.lucene104.PForUtil#encode():58 [JIT compiled code] 0.42% 15585 org.apache.lucene.index.TermsHashPerField#initReader():100 [Inlined code] 0.41% 15480 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] 0.39% 14432 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1040 [JIT compiled code] 0.38% 14121 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():131 [JIT compiled code] 0.38% 14029 org.apache.lucene.util.BytesRefHash#add():332 [JIT compiled code] 0.37% 13927 org.apache.lucene.util.AttributeSource#clearAttributes():274 [Inlined code] 0.36% 13527 jdk.internal.util.ArraysSupport#mismatch():563 [Inlined code] 0.35% 13199 org.apache.lucene.codecs.lucene104.ForUtil#encode():154 [JIT compiled code] 0.35% 13138 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():173 [JIT compiled code] 0.35% 13117 org.apache.lucene.store.DataOutput#writeVInt():203 [Inlined code] 0.34% 12875 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():170 [JIT compiled code] 0.34% 12595 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1020 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=2 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.nd27.625M.jfr Profiler for cpu at stackSize=2 [medium index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.nd27.625M.jfr is 199.59 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 3735230 events (total: 3M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=2 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 6.18% 230846 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 4.72% 176442 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] 3.64% 136006 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] 3.25% 121458 java.lang.Integer#rotateLeft():1650 [Inlined code] at org.apache.lucene.util.StringHelper#murmurhash3_x86_32():175 [Inlined code] 3.24% 121073 java.lang.Character#codePointAtImpl():9670 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] 3.20% 119616 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 2.80% 104585 java.lang.Character#codePointAt():9662 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] 2.56% 95639 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] 2.35% 87914 java.lang.Character#isHighSurrogate():9464 [Inlined code] at java.lang.Character#codePointAtImpl():9671 [Inlined code] 1.73% 64792 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1019 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] 1.63% 60783 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1022 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] 1.62% 60643 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 1.54% 57509 org.apache.lucene.util.BytesRefHash#findHash():381 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] 1.52% 56868 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] 1.46% 54474 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#copyBuffer():47 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getText():709 [Inlined code] 1.40% 52311 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] 1.36% 50693 org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] 1.30% 48575 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [JIT compiled code] 1.24% 46362 org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] 1.23% 46020 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] 1.16% 43320 org.apache.lucene.index.ByteSliceReader#readByte():74 [Inlined code] at org.apache.lucene.store.DataInput#readVInt():107 [Inlined code] 1.07% 40137 java.lang.Character#toChars():9872 [Inlined code] at org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] 0.99% 37013 org.apache.lucene.analysis.CharacterUtils#toLowerCase():57 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] 0.99% 36863 org.apache.lucene.util.BytesRefBuilder#growNoCopy():67 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():147 [JIT compiled code] 0.97% 36385 org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] 0.94% 35143 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():148 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():148 [JIT compiled code] 0.86% 32055 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] 0.77% 28661 java.lang.ThreadLocal#get():171 [Inlined code] at perf.LineFileDocs#reserve():570 [Inlined code] 0.63% 23386 org.apache.lucene.analysis.standard.StandardTokenizerImpl#zzCMap():742 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] 0.56% 21008 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():143 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():148 [JIT compiled code] 0.55% 20714 java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] 0.54% 20293 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():145 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():148 [JIT compiled code] 0.54% 20214 org.apache.lucene.util.BytesRefBlockPool#fillBytesRef():65 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum#next():194 [Inlined code] 0.52% 19452 org.apache.lucene.util.ByteBlockPool#getBuffer():358 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():223 [Inlined code] 0.52% 19321 org.apache.lucene.util.BytesRefBlockPool#fillBytesRef():65 [Inlined code] at org.apache.lucene.util.BytesRefHash$1#get():266 [Inlined code] 0.50% 18503 jdk.internal.misc.ScopedMemoryAccess#getByteInternal():1100 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getByte():1088 [Inlined code] 0.47% 17639 jdk.internal.util.ArraysSupport#mismatch():564 [Inlined code] at java.util.Arrays#equals():2707 [Inlined code] 0.45% 16795 java.lang.Character#toLowerCase():11251 [Inlined code] at org.apache.lucene.analysis.CharacterUtils#toLowerCase():59 [Inlined code] 0.44% 16590 org.apache.lucene.index.TermsHashPerField#positionStreamSlice():214 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] 0.44% 16449 org.apache.lucene.util.AttributeSource#clearAttributes():273 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():153 [Inlined code] 0.41% 15436 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] 0.41% 15409 org.apache.lucene.util.ByteBlockPool#getBuffer():358 [Inlined code] at org.apache.lucene.util.BytesRefBlockPool#equals():156 [Inlined code] 0.41% 15216 org.apache.lucene.index.TermsHashPerField#initReader():100 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum#reset():435 [Inlined code] 0.39% 14421 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1040 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] 0.37% 13926 org.apache.lucene.util.AttributeSource#clearAttributes():274 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():153 [Inlined code] 0.37% 13921 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():131 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 0.37% 13659 org.apache.lucene.index.TermsHashPerField#writeByte():222 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [JIT compiled code] 0.36% 13606 org.apache.lucene.util.BytesRefHash#add():332 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] 0.35% 13138 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():173 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] 0.34% 12875 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():170 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.nd27.625M.jfr Profiler for cpu at stackSize=4 [medium index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.nd27.625M.jfr is 199.59 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 3735230 events (total: 3M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 4.72% 176398 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] 3.52% 131414 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 3.23% 120656 java.lang.Integer#rotateLeft():1650 [Inlined code] at org.apache.lucene.util.StringHelper#murmurhash3_x86_32():175 [Inlined code] at org.apache.lucene.util.BytesRefHash#doHash():473 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():332 [JIT compiled code] 3.16% 118137 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] 3.10% 115861 java.lang.Character#codePointAtImpl():9670 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] 3.01% 112381 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 2.79% 104391 java.lang.Character#codePointAt():9662 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] 2.55% 95386 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] 2.27% 84931 java.lang.Character#isHighSurrogate():9464 [Inlined code] at java.lang.Character#codePointAtImpl():9671 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] 1.75% 65308 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] 1.73% 64790 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1019 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] 1.63% 60783 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1022 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] 1.54% 57337 org.apache.lucene.util.BytesRefHash#findHash():381 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 1.46% 54474 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#copyBuffer():47 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getText():709 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():165 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] 1.44% 53767 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] 1.36% 50693 org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] 1.29% 48215 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] 1.24% 46362 org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] 1.18% 43968 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] 1.12% 41974 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] 1.10% 41008 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] 1.07% 40137 java.lang.Character#toChars():9872 [Inlined code] at org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] 0.99% 37013 org.apache.lucene.analysis.CharacterUtils#toLowerCase():57 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] 0.99% 36863 org.apache.lucene.util.BytesRefBuilder#growNoCopy():67 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():147 [JIT compiled code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.94% 35143 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():148 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():148 [JIT compiled code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.86% 32055 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.82% 30480 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] 0.80% 30052 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 0.76% 28552 java.lang.ThreadLocal#get():171 [Inlined code] at perf.LineFileDocs#reserve():570 [Inlined code] at perf.LineFileDocs#nextDoc():610 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 0.70% 26036 org.apache.lucene.index.ByteSliceReader#readByte():74 [Inlined code] at org.apache.lucene.store.DataInput#readVInt():107 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum#nextPosition():501 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():148 [JIT compiled code] 0.68% 25237 org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] 0.63% 23386 org.apache.lucene.analysis.standard.StandardTokenizerImpl#zzCMap():742 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] 0.56% 21008 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():143 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():148 [JIT compiled code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.55% 20539 java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] 0.54% 20293 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():145 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():148 [JIT compiled code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.54% 20045 org.apache.lucene.util.BytesRefBlockPool#fillBytesRef():65 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum#next():194 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():381 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] 0.50% 18503 jdk.internal.misc.ScopedMemoryAccess#getByteInternal():1100 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getByte():1088 [Inlined code] at java.lang.invoke.VarHandleSegmentAsBytes#get():56 [Inlined code] at java.lang.invoke.VarHandleSegmentAsBytes#get():49 [Inlined code] 0.47% 17639 jdk.internal.util.ArraysSupport#mismatch():564 [Inlined code] at java.util.Arrays#equals():2707 [Inlined code] at org.apache.lucene.util.BytesRefBlockPool#equals():169 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] 0.45% 16795 java.lang.Character#toLowerCase():11251 [Inlined code] at org.apache.lucene.analysis.CharacterUtils#toLowerCase():59 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] 0.44% 16449 org.apache.lucene.util.AttributeSource#clearAttributes():273 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():153 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] 0.41% 15436 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] 0.41% 15409 org.apache.lucene.util.ByteBlockPool#getBuffer():358 [Inlined code] at org.apache.lucene.util.BytesRefBlockPool#equals():156 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] 0.40% 15034 org.apache.lucene.util.BytesRefBlockPool#fillBytesRef():65 [Inlined code] at org.apache.lucene.util.BytesRefHash$1#get():266 [Inlined code] at org.apache.lucene.util.StringSorter$MSBStringRadixSorter#byteAt():77 [Inlined code] at org.apache.lucene.util.MSBRadixSorter#getBucket():207 [Inlined code] 0.39% 14420 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1040 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] 0.38% 14293 org.apache.lucene.index.TermsHashPerField#initReader():100 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum#reset():435 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum#postings():250 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] 0.37% 13926 org.apache.lucene.util.AttributeSource#clearAttributes():274 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():153 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] 0.36% 13543 org.apache.lucene.index.TermsHashPerField#writeByte():222 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] 0.35% 13138 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():173 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.34% 12875 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():170 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.34% 12595 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1020 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=8 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.nd27.625M.jfr Profiler for cpu at stackSize=8 [medium index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.nd27.625M.jfr is 199.59 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 3735230 events (total: 3M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=8 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 2.94% 109948 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 2.27% 84925 java.lang.Character#isHighSurrogate():9464 [Inlined code] at java.lang.Character#codePointAtImpl():9671 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] 2.20% 82204 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] 2.20% 81996 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] 2.14% 80007 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 2.07% 77450 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] 2.05% 76579 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 1.75% 65308 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000381d7a08#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] 1.69% 63131 java.lang.Integer#rotateLeft():1650 [Inlined code] at org.apache.lucene.util.StringHelper#murmurhash3_x86_32():175 [Inlined code] at org.apache.lucene.util.BytesRefHash#doHash():473 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():332 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 1.62% 60689 java.lang.Character#codePointAtImpl():9670 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 1.53% 57291 java.lang.Integer#rotateLeft():1650 [Inlined code] at org.apache.lucene.util.StringHelper#murmurhash3_x86_32():175 [Inlined code] at org.apache.lucene.util.BytesRefHash#doHash():473 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():332 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] 1.48% 55172 java.lang.Character#codePointAtImpl():9670 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] 1.47% 55016 java.lang.Character#codePointAt():9662 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 1.32% 49296 java.lang.Character#codePointAt():9662 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] 1.29% 48201 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 1.18% 43956 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 1.15% 42869 org.apache.lucene.util.BytesRefHash#findHash():381 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 1.12% 41955 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 1.10% 40987 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 0.91% 34116 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [Inlined code] 0.87% 32653 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1019 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] 0.86% 32180 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [Inlined code] 0.82% 30460 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.77% 28746 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1022 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] 0.76% 28552 java.lang.ThreadLocal#get():171 [Inlined code] at perf.LineFileDocs#reserve():570 [Inlined code] at perf.LineFileDocs#nextDoc():610 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.74% 27703 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1022 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] 0.74% 27473 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1019 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] 0.73% 27293 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#copyBuffer():47 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getText():709 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():165 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 0.73% 27168 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#copyBuffer():47 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getText():709 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():165 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] 0.70% 26067 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.70% 25996 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] 0.68% 25335 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.67% 24912 org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 0.66% 24653 org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.61% 22835 org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.58% 21528 org.apache.lucene.index.ByteSliceReader#readByte():74 [Inlined code] at org.apache.lucene.store.DataInput#readVInt():107 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum#nextPosition():501 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():148 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] 0.57% 21386 org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.53% 19895 org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.51% 18998 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] 0.50% 18602 java.lang.Character#toChars():9872 [Inlined code] at org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] 0.50% 18505 java.lang.Character#toChars():9872 [Inlined code] at org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] 0.47% 17741 org.apache.lucene.util.BytesRefBuilder#growNoCopy():67 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():147 [JIT compiled code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.47% 17528 org.apache.lucene.analysis.CharacterUtils#toLowerCase():57 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.45% 16809 org.apache.lucene.analysis.CharacterUtils#toLowerCase():57 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.42% 15682 org.apache.lucene.util.BytesRefBuilder#growNoCopy():67 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():147 [JIT compiled code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.41% 15436 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] at sun.nio.ch.IOUtil#write():72 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():355 [Inlined code] at sun.nio.ch.FileChannelImpl#traceImplWrite():374 [Inlined code] at sun.nio.ch.FileChannelImpl#write():333 [Inlined code] 0.40% 15110 jdk.internal.misc.ScopedMemoryAccess#getByteInternal():1100 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getByte():1088 [Inlined code] at java.lang.invoke.VarHandleSegmentAsBytes#get():56 [Inlined code] at java.lang.invoke.VarHandleSegmentAsBytes#get():49 [Inlined code] at java.lang.invoke.VarHandleGuards#guard_LJ_I():251 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#get():694 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput$SingleSegmentImpl#readByte():754 [Inlined code] at org.apache.lucene.codecs.lucene90.Lucene90NormsProducer$3#longValue():396 [Inlined code] 0.40% 14997 org.apache.lucene.util.BytesRefBlockPool#fillBytesRef():65 [Inlined code] at org.apache.lucene.util.BytesRefHash$1#get():266 [Inlined code] at org.apache.lucene.util.StringSorter$MSBStringRadixSorter#byteAt():77 [Inlined code] at org.apache.lucene.util.MSBRadixSorter#getBucket():207 [Inlined code] at org.apache.lucene.util.BytesRefHash$1$1#buildHistogram():223 [Inlined code] at org.apache.lucene.util.MSBRadixSorter#computeCommonPrefixLengthAndBuildHistogramPart2():267 [Inlined code] at org.apache.lucene.util.MSBRadixSorter#computeCommonPrefixLengthAndBuildHistogramPart1():257 [JIT compiled code] at org.apache.lucene.util.MSBRadixSorter#computeCommonPrefixLengthAndBuildHistogram():220 [Inlined code] 0.39% 14691 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():148 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():148 [JIT compiled code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.38% 14220 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():148 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():148 [JIT compiled code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.nd27.625M.jfr Profiler for cpu at stackSize=12 [medium index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.nd27.625M.jfr is 199.59 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 3735230 events (total: 3M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 2.91% 108521 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 2.17% 81118 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 2.17% 81111 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 2.14% 80007 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] at perf.IndexThreads$IndexThread#run():419 [JIT compiled code] 2.05% 76579 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] at perf.IndexThreads$IndexThread#run():419 [JIT compiled code] 2.05% 76492 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 1.75% 65308 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000381d7a08#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] at org.apache.lucene.index.IndexWriter#merge():4785 [Interpreted code] at org.apache.lucene.index.IndexWriter$IndexWriterMergeSource#merge():6590 [Interpreted code] 1.55% 57823 java.lang.Integer#rotateLeft():1650 [Inlined code] at org.apache.lucene.util.StringHelper#murmurhash3_x86_32():175 [Inlined code] at org.apache.lucene.util.BytesRefHash#doHash():473 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():332 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 1.42% 53087 java.lang.Integer#rotateLeft():1650 [Inlined code] at org.apache.lucene.util.StringHelper#murmurhash3_x86_32():175 [Inlined code] at org.apache.lucene.util.BytesRefHash#doHash():473 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():332 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 1.19% 44340 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 1.17% 43727 java.lang.Character#codePointAtImpl():9670 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 1.14% 42404 org.apache.lucene.util.BytesRefHash#findHash():381 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 1.10% 41134 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 1.10% 40936 java.lang.Character#codePointAt():9662 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 1.05% 39202 java.lang.Character#codePointAtImpl():9670 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 1.03% 38598 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 1.01% 37795 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 0.99% 37111 java.lang.Character#codePointAt():9662 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.94% 35121 java.lang.Character#isHighSurrogate():9464 [Inlined code] at java.lang.Character#codePointAtImpl():9671 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.88% 33034 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] at perf.IndexThreads$IndexThread#run():419 [JIT compiled code] 0.86% 32180 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1019 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 0.83% 31124 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] at perf.IndexThreads$IndexThread#run():419 [JIT compiled code] 0.82% 30651 java.lang.Character#isHighSurrogate():9464 [Inlined code] at java.lang.Character#codePointAtImpl():9671 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.81% 30167 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.76% 28552 java.lang.ThreadLocal#get():171 [Inlined code] at perf.LineFileDocs#reserve():570 [Inlined code] at perf.LineFileDocs#nextDoc():610 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.76% 28355 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1022 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 0.73% 27343 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1022 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 0.72% 27071 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1019 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 0.70% 26067 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] at perf.IndexThreads$IndexThread#run():419 [JIT compiled code] 0.68% 25335 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] at perf.IndexThreads$IndexThread#run():419 [JIT compiled code] 0.67% 24949 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#copyBuffer():47 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getText():709 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():165 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.67% 24877 org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] 0.67% 24864 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#copyBuffer():47 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getText():709 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():165 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.65% 24274 org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.60% 22485 org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.57% 21431 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 0.56% 21056 org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.52% 19604 org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.49% 18339 java.lang.Character#toChars():9872 [Inlined code] at org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 0.49% 18185 java.lang.Character#toChars():9872 [Inlined code] at org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 0.47% 17557 org.apache.lucene.util.BytesRefBuilder#growNoCopy():67 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():147 [JIT compiled code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.47% 17426 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 0.46% 17302 org.apache.lucene.analysis.CharacterUtils#toLowerCase():57 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.45% 16711 java.lang.Character#codePointAtImpl():9670 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 0.44% 16563 org.apache.lucene.analysis.CharacterUtils#toLowerCase():57 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.42% 15695 java.lang.Character#codePointAtImpl():9670 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 0.42% 15539 org.apache.lucene.util.BytesRefBuilder#growNoCopy():67 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():147 [JIT compiled code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.40% 14842 jdk.internal.misc.ScopedMemoryAccess#getByteInternal():1100 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getByte():1088 [Inlined code] at java.lang.invoke.VarHandleSegmentAsBytes#get():56 [Inlined code] at java.lang.invoke.VarHandleSegmentAsBytes#get():49 [Inlined code] at java.lang.invoke.VarHandleGuards#guard_LJ_I():251 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#get():694 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput$SingleSegmentImpl#readByte():754 [Inlined code] at org.apache.lucene.codecs.lucene90.Lucene90NormsProducer$3#longValue():396 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#startDoc():289 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():144 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 0.39% 14407 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():148 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():148 [JIT compiled code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.37% 13964 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():148 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():148 [JIT compiled code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.nd27.625M.jfr Profiler for heap at stackSize=1 [medium index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.nd27.625M.jfr is 199.59 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 726214 events (total: 312584M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 17.07% 53370M perf.LineFileDocs#nextDoc():647 [JIT compiled code] 9.38% 29309M java.lang.StringUTF16#compress():212 [Inlined code] 8.55% 26721M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] 7.16% 22383M perf.LineFileDocs#readDocs():176 [JIT compiled code] 7.08% 22133M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] 4.50% 14058M java.lang.StringUTF16#compress():216 [Inlined code] 3.30% 10314M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] 3.25% 10160M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] 3.07% 9605M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] 2.67% 8358M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] 2.29% 7150M perf.LineFileDocs#nextDoc():642 [JIT compiled code] 2.09% 6539M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] 1.95% 6106M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] 1.91% 5956M org.apache.lucene.util.TimSorter#():62 [Inlined code] 1.80% 5638M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] 1.80% 5635M org.apache.lucene.util.BytesRef#():71 [Inlined code] 1.73% 5403M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] 1.66% 5181M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] 1.63% 5089M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] 1.42% 4424M java.util.TreeMap#keyIterator():1421 [Inlined code] 1.33% 4154M perf.LineFileDocs#readDocs():176 [Interpreted code] 1.23% 3840M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] 1.21% 3792M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] 0.90% 2827M org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] 0.64% 2007M java.nio.HeapByteBuffer#():75 [Inlined code] 0.62% 1931M org.apache.lucene.document.IntPoint#pack():114 [Inlined code] 0.53% 1661M java.util.ArrayList#grow():240 [Inlined code] 0.52% 1628M org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] 0.50% 1566M org.apache.lucene.codecs.CompetitiveImpactAccumulator#getCompetitiveFreqNormPairs():108 [JIT compiled code] 0.49% 1546M org.apache.lucene.index.IndexingChain$IntBlockAllocator#getIntBlock():1978 [Inlined code] 0.49% 1546M perf.LineFileDocs#newDocState():509 [Interpreted code] 0.42% 1322M org.apache.lucene.document.IntPoint#pack():108 [Inlined code] 0.40% 1240M org.apache.lucene.codecs.lucene104.PForUtil#encode():78 [JIT compiled code] 0.38% 1186M perf.LineFileDocs#nextDoc():649 [JIT compiled code] 0.34% 1048M perf.LineFileDocs#intToID():305 [Inlined code] 0.31% 963M perf.LineFileDocs#nextDoc():644 [JIT compiled code] 0.29% 919M perf.LineFileDocs#intToID():299 [Inlined code] 0.29% 916M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] 0.29% 907M perf.LineFileDocs#nextDoc():654 [JIT compiled code] 0.29% 902M java.util.List#of():935 [Inlined code] 0.28% 875M java.util.ArrayDeque#():179 [Inlined code] 0.28% 860M perf.LineFileDocs#nextDoc():652 [JIT compiled code] 0.19% 609M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#writeBlock():967 [JIT compiled code] 0.19% 580M org.apache.lucene.codecs.CompetitiveImpactAccumulator#getCompetitiveFreqNormPairs():103 [JIT compiled code] 0.18% 558M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#writeBlock():936 [JIT compiled code] 0.17% 523M perf.LineFileDocs#nextDoc():605 [Interpreted code] 0.17% 523M org.apache.lucene.util.StringSorter#fallbackSorter():92 [Inlined code] 0.17% 520M org.apache.lucene.codecs.lucene103.blocktree.TrieBuilder#():82 [Inlined code] 0.14% 425M java.util.ArrayList#iterator():1030 [JIT compiled code] 0.13% 405M java.lang.invoke.DirectMethodHandle#allocateInstance():500 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=2 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.nd27.625M.jfr Profiler for heap at stackSize=2 [medium index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.nd27.625M.jfr is 199.59 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 726214 events (total: 312584M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=2 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 17.05% 53284M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 9.38% 29309M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] 8.55% 26721M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] 7.16% 22383M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 7.08% 22133M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] 4.50% 14058M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] 3.30% 10314M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 2.99% 9359M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] 2.58% 8055M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] 2.54% 7951M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] 2.28% 7127M perf.LineFileDocs#nextDoc():642 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 2.09% 6539M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] 1.95% 6106M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] 1.91% 5956M org.apache.lucene.util.TimSorter#():62 [Inlined code] at org.apache.lucene.util.ArrayTimSorter#():34 [Inlined code] 1.80% 5638M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] 1.73% 5403M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] 1.73% 5393M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] 1.66% 5181M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] 1.63% 5089M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] 1.42% 4424M java.util.TreeMap#keyIterator():1421 [Inlined code] at java.util.TreeMap$KeySet#iterator():1434 [JIT compiled code] 1.33% 4154M perf.LineFileDocs#readDocs():176 [Interpreted code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.23% 3840M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] 1.21% 3792M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():349 [JIT compiled code] 0.70% 2178M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():464 [JIT compiled code] 0.64% 2007M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] 0.62% 1931M org.apache.lucene.document.IntPoint#pack():114 [Inlined code] at org.apache.lucene.document.IntPoint#setIntValues():72 [Inlined code] 0.53% 1661M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] 0.52% 1628M org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [JIT compiled code] 0.50% 1566M org.apache.lucene.codecs.CompetitiveImpactAccumulator#getCompetitiveFreqNormPairs():108 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():398 [JIT compiled code] 0.49% 1546M org.apache.lucene.index.IndexingChain$IntBlockAllocator#getIntBlock():1978 [Inlined code] at org.apache.lucene.util.IntBlockPool#nextBuffer():153 [JIT compiled code] 0.49% 1546M perf.LineFileDocs#newDocState():509 [Interpreted code] at perf.IndexThreads$IndexThread#run():188 [Interpreted code] 0.42% 1322M org.apache.lucene.document.IntPoint#pack():108 [Inlined code] at org.apache.lucene.document.IntPoint#setIntValues():72 [Inlined code] 0.38% 1186M perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 0.34% 1048M perf.LineFileDocs#intToID():305 [Inlined code] at perf.LineFileDocs#nextDoc():753 [JIT compiled code] 0.32% 996M org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():736 [JIT compiled code] 0.31% 963M perf.LineFileDocs#nextDoc():644 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 0.30% 950M org.apache.lucene.codecs.lucene104.PForUtil#encode():78 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] 0.30% 941M org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():753 [JIT compiled code] 0.29% 919M perf.LineFileDocs#intToID():299 [Inlined code] at perf.LineFileDocs#nextDoc():753 [JIT compiled code] 0.29% 916M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [Inlined code] 0.29% 907M perf.LineFileDocs#nextDoc():654 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 0.28% 888M org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():737 [JIT compiled code] 0.28% 875M java.util.ArrayDeque#():179 [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput#():112 [Inlined code] 0.28% 860M perf.LineFileDocs#nextDoc():652 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 0.28% 859M java.util.List#of():935 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1883 [JIT compiled code] 0.19% 580M org.apache.lucene.codecs.CompetitiveImpactAccumulator#getCompetitiveFreqNormPairs():103 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():398 [JIT compiled code] 0.17% 523M perf.LineFileDocs#nextDoc():605 [Interpreted code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 0.17% 523M org.apache.lucene.util.StringSorter#fallbackSorter():92 [Inlined code] at org.apache.lucene.util.StringSorter$MSBStringRadixSorter#getFallbackSorter():83 [Inlined code] 0.17% 520M org.apache.lucene.codecs.lucene103.blocktree.TrieBuilder#():82 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.TrieBuilder#bytesRefToTrie():94 [Inlined code] 0.12% 376M java.lang.invoke.DirectMethodHandle#allocateInstance():500 [Inlined code] at java.lang.invoke.LambdaForm$DMH.0x00000000381b1400#newInvokeSpecial() [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.nd27.625M.jfr Profiler for heap at stackSize=4 [medium index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.nd27.625M.jfr is 199.59 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 726214 events (total: 312584M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 17.05% 53284M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 8.54% 26695M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] 8.20% 25620M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 7.16% 22383M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 5.42% 16956M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] 4.47% 13966M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] 2.99% 9359M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 2.55% 7982M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 2.46% 7688M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 2.28% 7127M perf.LineFileDocs#nextDoc():642 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 2.09% 6539M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] 1.95% 6106M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] 1.91% 5956M org.apache.lucene.util.TimSorter#():62 [Inlined code] at org.apache.lucene.util.ArrayTimSorter#():34 [Inlined code] at org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [JIT compiled code] 1.80% 5638M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] 1.73% 5403M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] 1.66% 5181M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] 1.63% 5089M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] 1.57% 4895M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] 1.42% 4424M java.util.TreeMap#keyIterator():1421 [Inlined code] at java.util.TreeMap$KeySet#iterator():1434 [JIT compiled code] at java.util.TreeSet#iterator():187 [Inlined code] at org.apache.lucene.codecs.CompetitiveImpactAccumulator#addAll():82 [Inlined code] 1.40% 4383M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] 1.33% 4154M perf.LineFileDocs#readDocs():176 [Interpreted code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.23% 3840M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] 1.11% 3475M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():349 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 1.08% 3390M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#initStreamSlices():161 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():198 [JIT compiled code] 0.99% 3086M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():736 [JIT compiled code] 0.68% 2140M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():464 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#startDoc():259 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():144 [JIT compiled code] 0.61% 1915M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput$$Lambda.0x000000003813cd70#apply() [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput#appendBlock():506 [JIT compiled code] 0.53% 1661M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] 0.51% 1608M org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [JIT compiled code] at org.apache.lucene.index.MappedMultiFields$MappedMultiTermsEnum#postings():131 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] 0.49% 1546M perf.LineFileDocs#newDocState():509 [Interpreted code] at perf.IndexThreads$IndexThread#run():188 [Interpreted code] 0.49% 1531M org.apache.lucene.codecs.CompetitiveImpactAccumulator#getCompetitiveFreqNormPairs():108 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():398 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#startDoc():259 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():144 [JIT compiled code] 0.47% 1477M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.util.BytesRefBlockPool#addBytesRef():91 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():343 [JIT compiled code] 0.44% 1381M org.apache.lucene.index.IndexingChain$IntBlockAllocator#getIntBlock():1978 [Inlined code] at org.apache.lucene.util.IntBlockPool#nextBuffer():153 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#initStreamSlices():155 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():198 [JIT compiled code] 0.44% 1368M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():644 [JIT compiled code] 0.38% 1199M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():753 [JIT compiled code] 0.38% 1186M perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.35% 1108M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():737 [JIT compiled code] 0.34% 1048M perf.LineFileDocs#intToID():305 [Inlined code] at perf.LineFileDocs#nextDoc():753 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.33% 1025M org.apache.lucene.document.IntPoint#pack():114 [Inlined code] at org.apache.lucene.document.IntPoint#setIntValues():72 [Inlined code] at org.apache.lucene.document.IntPoint#setIntValue():57 [Inlined code] at perf.LineFileDocs#nextDoc():763 [JIT compiled code] 0.32% 996M org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():736 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.31% 981M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] 0.31% 963M perf.LineFileDocs#nextDoc():644 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.30% 941M org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():753 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.29% 919M perf.LineFileDocs#intToID():299 [Inlined code] at perf.LineFileDocs#nextDoc():753 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.29% 910M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [Inlined code] at org.apache.lucene.util.ArrayUtil#grow():377 [Inlined code] at org.apache.lucene.index.PointValuesWriter#addPackedValue():80 [Inlined code] 0.29% 909M org.apache.lucene.codecs.lucene104.PForUtil#encode():78 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 0.29% 907M perf.LineFileDocs#nextDoc():654 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.29% 906M org.apache.lucene.document.IntPoint#pack():114 [Inlined code] at org.apache.lucene.document.IntPoint#setIntValues():72 [Inlined code] at org.apache.lucene.document.IntPoint#setIntValue():57 [Inlined code] at perf.LineFileDocs#nextDoc():754 [JIT compiled code] 0.28% 888M org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():737 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.28% 875M java.util.ArrayDeque#():179 [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput#():112 [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput#():138 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.TrieBuilder#():82 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=8 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.nd27.625M.jfr Profiler for heap at stackSize=8 [medium index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.nd27.625M.jfr is 199.59 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 726214 events (total: 312584M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=8 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 17.05% 53284M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 8.54% 26695M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 7.16% 22383M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 4.44% 13880M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 3.59% 11207M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] 2.28% 7127M perf.LineFileDocs#nextDoc():642 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 2.11% 6601M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] 1.89% 5904M org.apache.lucene.util.TimSorter#():62 [Inlined code] at org.apache.lucene.util.ArrayTimSorter#():34 [Inlined code] at org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [JIT compiled code] at org.apache.lucene.index.MappedMultiFields$MappedMultiTermsEnum#postings():131 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 1.75% 5481M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 1.73% 5402M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 1.72% 5381M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():200 [JIT compiled code] 1.64% 5134M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 1.63% 5101M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] 1.63% 5089M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 1.54% 4804M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 1.52% 4759M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] 1.40% 4383M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000381d7a08#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] 1.38% 4328M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 1.33% 4154M perf.LineFileDocs#readDocs():176 [Interpreted code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.21% 3791M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000381d7a08#merge() [Interpreted code] 1.13% 3538M java.util.TreeMap#keyIterator():1421 [Inlined code] at java.util.TreeMap$KeySet#iterator():1434 [JIT compiled code] at java.util.TreeSet#iterator():187 [Inlined code] at org.apache.lucene.codecs.CompetitiveImpactAccumulator#addAll():82 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():482 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#finishTerm():576 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():172 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 1.07% 3333M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000381d7a08#merge() [Interpreted code] 1.04% 3259M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():349 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.99% 3086M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():736 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.96% 2996M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#initStreamSlices():161 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():198 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] 0.95% 2962M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.85% 2649M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] 0.83% 2607M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] 0.81% 2517M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] 0.80% 2510M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] 0.77% 2394M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():200 [JIT compiled code] 0.74% 2314M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] 0.70% 2197M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] 0.68% 2119M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():173 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] 0.65% 2024M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] 0.59% 1852M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] 0.55% 1730M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput$$Lambda.0x000000003813cd70#apply() [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput#appendBlock():506 [JIT compiled code] at org.apache.lucene.store.ByteBuffersDataOutput#writeByte():187 [Inlined code] at org.apache.lucene.store.DataOutput#writeVInt():203 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.TrieBuilder#append():138 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingBlock#compileIndex():488 [JIT compiled code] 0.51% 1608M org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [JIT compiled code] at org.apache.lucene.index.MappedMultiFields$MappedMultiTermsEnum#postings():131 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] 0.49% 1546M perf.LineFileDocs#newDocState():509 [Interpreted code] at perf.IndexThreads$IndexThread#run():188 [Interpreted code] 0.48% 1493M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] 0.44% 1389M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():464 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#startDoc():259 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():144 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] 0.44% 1376M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] 0.44% 1368M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():644 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.44% 1365M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] at org.apache.lucene.codecs.CompetitiveImpactAccumulator#getCompetitiveFreqNormPairs():108 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():398 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#startDoc():259 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():144 [JIT compiled code] 0.38% 1193M org.apache.lucene.index.IndexingChain$IntBlockAllocator#getIntBlock():1978 [Inlined code] at org.apache.lucene.util.IntBlockPool#nextBuffer():153 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#initStreamSlices():155 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():198 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] 0.38% 1186M perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.37% 1156M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():753 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.35% 1108M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():737 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.34% 1067M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] 0.34% 1057M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTerm():1932 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invert():1740 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.nd27.625M.jfr Profiler for heap at stackSize=12 [medium index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.nd27.625M.jfr is 199.59 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 726214 events (total: 312584M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 17.05% 53284M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 8.54% 26695M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 7.16% 22383M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 4.44% 13880M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 3.59% 11207M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000381d7a08#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] 2.28% 7127M perf.LineFileDocs#nextDoc():642 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 1.89% 5904M org.apache.lucene.util.TimSorter#():62 [Inlined code] at org.apache.lucene.util.ArrayTimSorter#():34 [Inlined code] at org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [JIT compiled code] at org.apache.lucene.index.MappedMultiFields$MappedMultiTermsEnum#postings():131 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000381d7a08#merge() [Interpreted code] 1.74% 5450M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [Inlined code] 1.65% 5157M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 1.60% 4999M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 1.57% 4902M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 1.52% 4759M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000381d7a08#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] 1.51% 4731M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [JIT compiled code] 1.49% 4656M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 1.44% 4506M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 1.40% 4383M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000381d7a08#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] at org.apache.lucene.index.IndexWriter#merge():4785 [Interpreted code] at org.apache.lucene.index.IndexWriter$IndexWriterMergeSource#merge():6590 [Interpreted code] at org.apache.lucene.index.ConcurrentMergeScheduler#doMerge():661 [Interpreted code] 1.33% 4154M perf.LineFileDocs#readDocs():176 [Interpreted code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.28% 4011M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 1.24% 3884M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():200 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] 1.21% 3791M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000381d7a08#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] at org.apache.lucene.index.IndexWriter#merge():4785 [Interpreted code] 1.07% 3333M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000381d7a08#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] at org.apache.lucene.index.IndexWriter#merge():4785 [Interpreted code] 1.04% 3259M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():349 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.99% 3086M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():736 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.95% 2980M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#initStreamSlices():161 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():198 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 0.87% 2733M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.80% 2510M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 0.74% 2314M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 0.71% 2230M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():200 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] 0.71% 2206M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.68% 2124M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] 0.68% 2119M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():173 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 0.65% 2024M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.58% 1824M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] 0.55% 1726M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] 0.55% 1720M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput$$Lambda.0x000000003813cd70#apply() [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput#appendBlock():506 [JIT compiled code] at org.apache.lucene.store.ByteBuffersDataOutput#writeByte():187 [Inlined code] at org.apache.lucene.store.DataOutput#writeVInt():203 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.TrieBuilder#append():138 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingBlock#compileIndex():488 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#writeBlocks():682 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#pushTerm():1039 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():995 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 0.51% 1608M org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [JIT compiled code] at org.apache.lucene.index.MappedMultiFields$MappedMultiTermsEnum#postings():131 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000381d7a08#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] 0.49% 1546M perf.LineFileDocs#newDocState():509 [Interpreted code] at perf.IndexThreads$IndexThread#run():188 [Interpreted code] 0.48% 1496M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():200 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 0.46% 1448M java.util.TreeMap#keyIterator():1421 [Inlined code] at java.util.TreeMap$KeySet#iterator():1434 [JIT compiled code] at java.util.TreeSet#iterator():187 [Inlined code] at org.apache.lucene.codecs.CompetitiveImpactAccumulator#addAll():82 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():482 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#finishTerm():576 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():172 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] 0.46% 1427M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [JIT compiled code] 0.44% 1389M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():464 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#startDoc():259 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():144 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000381d7a08#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] 0.44% 1368M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():644 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.44% 1365M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] 0.38% 1186M perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.37% 1160M org.apache.lucene.index.IndexingChain$IntBlockAllocator#getIntBlock():1978 [Inlined code] at org.apache.lucene.util.IntBlockPool#nextBuffer():153 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#initStreamSlices():155 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():198 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 0.37% 1156M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():753 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.35% 1108M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():737 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.35% 1104M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [Inlined code] 0.34% 1067M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 0.34% 1048M perf.LineFileDocs#intToID():305 [Inlined code] at perf.LineFileDocs#nextDoc():753 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] move log to /l/logs.nightly/2026.05.15.14.49.32/fastIndexMediumDocs.log move vmstat log to /l/logs.nightly/2026.05.15.14.49.32/fastIndexMediumDocs.vmstat.log move top log to /l/logs.nightly/2026.05.15.14.49.32/fastIndexMediumDocs.top.log [2026-05-15 23:36:34.450422] took 102.7 sec [2026-05-15 23:36:34.454501] medIndexAtClose None [2026-05-15 23:36:34.455818] build medium vectors index (fast) /l/indices/wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M: now create cd /l/trunk.nightly/lucene/benchmark NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log /l/logs.nightly/nightly.wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.log run: ['/usr/lib/jvm/java-25-openjdk/bin/java', '--add-modules', 'jdk.incubator.vector', '-Xmx32g', '-Xms32g', '-server', '-XX:+UseParallelGC', '-Djava.io.tmpdir=/l/tmp', '--enable-native-access=ALL-UNNAMED', '-classpath', '/l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build', '-XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.jfr', '-XX:+UnlockDiagnosticVMOptions', '-XX:+DebugNonSafepoints', 'perf.Indexer', '-dirImpl', 'MMapDirectory', '-indexPath', '/l/indices/wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M', '-analyzer', 'StandardAnalyzerNoStopWords', '-lineDocsFile', '/l/data/enwiki-20110115-lines-1k-fixed-with-random-labels.bin', '-docCountLimit', '27625038', '-threadCount', '36', '-useCMS', '-vectorFile', '/big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec', '-vectorDimension', '1024', '-vectorEncoding', 'FLOAT32', '-verbose', '-ramBufferMB', '2048', '-maxBufferedDocs', '-1', '-postingsFormat', 'Lucene104', '-mergePolicy', 'TieredMergePolicy', '-idFieldPostingsFormat', 'Lucene104', '-idFieldPostingsFormat', 'Lucene104', '-hnswThreadsPerMerge', '16', '-hnswThreadPoolCount', '96'], cwd=/l/trunk.nightly/lucene/benchmark vmstatLogFile=/l/logs.nightly/nightly.vmstat.log topLogFile=/l/logs.nightly/nightly.top.log run vmstat: /usr/sbin/vmstat --active --wide --timestamp --unit M 1 > /l/logs.nightly/nightly.vmstat.log 2>&1 & run /usr/sbin/ps -eo pid,%cpu,%mem,bsdtime,etime,start,args --cols=120 --sort=-%cpu | head -10 >> /l/logs.nightly/nightly.top.log 2>&1 to /l/logs.nightly/nightly.top.log now kill vmstat: pid=2343266 Profiler summary for /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.jfr Version: 2.1 Chunks: 52 Start: 2026-05-16 07:12:12 (UTC) Duration: 1559 s Event Type Count Size (bytes) ============================================================= jdk.CPUTimeSample 95071060 1901380946 jdk.FileWrite 3645546 99660367 jdk.ObjectAllocationInNewTLAB 116274 2526413 jdk.FileRead 73162 2094447 jdk.BooleanFlag 35984 1187628 jdk.CPULoad 8318 174678 jdk.ObjectAllocationOutsideTLAB 7770 154220 jdk.UnsignedIntFlag 3224 115596 jdk.IntFlag 2912 108316 jdk.StringFlag 2340 91520 jdk.Checkpoint 1770 50753343 jdk.Compilation 92 2575 jdk.CPUInformation 52 78156 jdk.GCConfiguration 52 1404 jdk.JVMInformation 52 62764 jdk.Metadata 52 5747456 jdk.GarbageCollection 16 419 jdk.ActiveRecording 0 0 jdk.ActiveSetting 0 0 jdk.AllocationRequiringGC 0 0 jdk.BooleanFlagChanged 0 0 jdk.CPUTimeSamplesLost 0 0 jdk.CPUTimeStampCounter 0 0 jdk.ClassDefine 0 0 jdk.ClassLoad 0 0 jdk.ClassLoaderStatistics 0 0 jdk.ClassLoadingStatistics 0 0 jdk.ClassRedefinition 0 0 jdk.ClassUnload 0 0 jdk.CodeCacheConfiguration 0 0 jdk.CodeCacheFull 0 0 jdk.CodeCacheStatistics 0 0 jdk.CompilationFailure 0 0 jdk.CompilerConfiguration 0 0 jdk.CompilerInlining 0 0 jdk.CompilerPhase 0 0 jdk.CompilerQueueUtilization 0 0 jdk.CompilerStatistics 0 0 jdk.ConcurrentModeFailure 0 0 jdk.ContainerCPUThrottling 0 0 jdk.ContainerCPUUsage 0 0 jdk.ContainerConfiguration 0 0 jdk.ContainerIOUsage 0 0 jdk.ContainerMemoryUsage 0 0 jdk.ContinuationFreeze 0 0 jdk.ContinuationFreezeFast 0 0 jdk.ContinuationFreezeSlow 0 0 jdk.ContinuationThaw 0 0 jdk.ContinuationThawFast 0 0 jdk.ContinuationThawSlow 0 0 jdk.DataLoss 0 0 jdk.Deoptimization 0 0 jdk.DeprecatedInvocation 0 0 jdk.Deserialization 0 0 jdk.DirectBufferStatistics 0 0 jdk.DoubleFlag 0 0 jdk.DoubleFlagChanged 0 0 jdk.DumpReason 0 0 jdk.EvacuationFailed 0 0 jdk.EvacuationInformation 0 0 jdk.ExceptionStatistics 0 0 jdk.ExecuteVMOperation 0 0 jdk.ExecutionSample 0 0 jdk.FileForce 0 0 jdk.FinalizerStatistics 0 0 jdk.Flush 0 0 jdk.G1AdaptiveIHOP 0 0 jdk.G1BasicIHOP 0 0 jdk.G1EvacuationOldStatistics 0 0 jdk.G1EvacuationYoungStatistics 0 0 jdk.G1GarbageCollection 0 0 jdk.G1HeapRegionInformation 0 0 jdk.G1HeapRegionTypeChange 0 0 jdk.G1HeapSummary 0 0 jdk.G1MMU 0 0 jdk.GCCPUTime 0 0 jdk.GCHeapConfiguration 0 0 jdk.GCHeapMemoryPoolUsage 0 0 jdk.GCHeapMemoryUsage 0 0 jdk.GCHeapSummary 0 0 jdk.GCPhaseConcurrent 0 0 jdk.GCPhaseConcurrentLevel1 0 0 jdk.GCPhaseConcurrentLevel2 0 0 jdk.GCPhaseParallel 0 0 jdk.GCPhasePause 0 0 jdk.GCPhasePauseLevel1 0 0 jdk.GCPhasePauseLevel2 0 0 jdk.GCPhasePauseLevel3 0 0 jdk.GCPhasePauseLevel4 0 0 jdk.GCReferenceStatistics 0 0 jdk.GCSurvivorConfiguration 0 0 jdk.GCTLABConfiguration 0 0 jdk.HeapDump 0 0 jdk.InitialEnvironmentVariable 0 0 jdk.InitialSecurityProperty 0 0 jdk.InitialSystemProperty 0 0 jdk.IntFlagChanged 0 0 jdk.JITRestart 0 0 jdk.JavaAgent 0 0 jdk.JavaErrorThrow 0 0 jdk.JavaExceptionThrow 0 0 jdk.JavaMonitorDeflate 0 0 jdk.JavaMonitorEnter 0 0 jdk.JavaMonitorInflate 0 0 jdk.JavaMonitorNotify 0 0 jdk.JavaMonitorStatistics 0 0 jdk.JavaMonitorWait 0 0 jdk.JavaThreadStatistics 0 0 jdk.LongFlag 0 0 jdk.LongFlagChanged 0 0 jdk.MetaspaceAllocationFailure 0 0 jdk.MetaspaceChunkFreeListSummary 0 0 jdk.MetaspaceGCThreshold 0 0 jdk.MetaspaceOOM 0 0 jdk.MetaspaceSummary 0 0 jdk.MethodTiming 0 0 jdk.MethodTrace 0 0 jdk.ModuleExport 0 0 jdk.ModuleRequire 0 0 jdk.NativeAgent 0 0 jdk.NativeLibrary 0 0 jdk.NativeLibraryLoad 0 0 jdk.NativeLibraryUnload 0 0 jdk.NativeMemoryUsage 0 0 jdk.NativeMemoryUsageTotal 0 0 jdk.NativeMethodSample 0 0 jdk.NetworkUtilization 0 0 jdk.OSInformation 0 0 jdk.ObjectAllocationSample 0 0 jdk.ObjectCount 0 0 jdk.ObjectCountAfterGC 0 0 jdk.OldGarbageCollection 0 0 jdk.OldObjectSample 0 0 jdk.PSHeapSummary 0 0 jdk.ParallelOldGarbageCollection 0 0 jdk.PhysicalMemory 0 0 jdk.ProcessStart 0 0 jdk.PromoteObjectInNewPLAB 0 0 jdk.PromoteObjectOutsidePLAB 0 0 jdk.PromotionFailed 0 0 jdk.RedefineClasses 0 0 jdk.ReservedStackActivation 0 0 jdk.ResidentSetSize 0 0 jdk.RetransformClasses 0 0 jdk.SafepointBegin 0 0 jdk.SafepointEnd 0 0 jdk.SafepointLatency 0 0 jdk.SafepointStateSynchronization 0 0 jdk.SecurityPropertyModification 0 0 jdk.SecurityProviderService 0 0 jdk.SerializationMisdeclaration 0 0 jdk.ShenandoahEvacuationInformation 0 0 jdk.ShenandoahHeapRegionInformation 0 0 jdk.ShenandoahHeapRegionStateChange 0 0 jdk.Shutdown 0 0 jdk.SocketRead 0 0 jdk.SocketWrite 0 0 jdk.StringFlagChanged 0 0 jdk.StringTableStatistics 0 0 jdk.SwapSpace 0 0 jdk.SymbolTableStatistics 0 0 jdk.SyncOnValueBasedClass 0 0 jdk.SystemGC 0 0 jdk.SystemProcess 0 0 jdk.TLSHandshake 0 0 jdk.TenuringDistribution 0 0 jdk.ThreadAllocationStatistics 0 0 jdk.ThreadCPULoad 0 0 jdk.ThreadContextSwitchRate 0 0 jdk.ThreadDump 0 0 jdk.ThreadEnd 0 0 jdk.ThreadPark 0 0 jdk.ThreadSleep 0 0 jdk.ThreadStart 0 0 jdk.UnsignedIntFlagChanged 0 0 jdk.UnsignedLongFlag 0 0 jdk.UnsignedLongFlagChanged 0 0 jdk.VirtualThreadEnd 0 0 jdk.VirtualThreadPinned 0 0 jdk.VirtualThreadStart 0 0 jdk.VirtualThreadSubmitFailed 0 0 jdk.VirtualizationInformation 0 0 jdk.X509Certificate 0 0 jdk.X509Validation 0 0 jdk.YoungGarbageCollection 0 0 jdk.YoungGenerationConfiguration 0 0 jdk.ZAllocationStall 0 0 jdk.ZOldGarbageCollection 0 0 jdk.ZPageAllocation 0 0 jdk.ZRelocationSet 0 0 jdk.ZRelocationSetGroup 0 0 jdk.ZStatisticsCounter 0 0 jdk.ZStatisticsSampler 0 0 jdk.ZThreadPhase 0 0 jdk.ZUncommit 0 0 jdk.ZYoungGarbageCollection 0 0 profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.jfr Profiler for cpu at stackSize=1 [medium vectors index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.jfr is 1968.52 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 95071060 events (total: 95M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 68.21% 64M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] 11.21% 10M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] 4.62% 4M jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] 1.84% 1M org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] 1.44% 1M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] 1.00% 947225 org.apache.lucene.util.FixedBitSet#getAndSet():307 [Inlined code] 0.98% 928781 java.util.ArrayList#elementData():412 [Inlined code] 0.91% 869485 jdk.incubator.vector.FloatVector#fromArray0Template():3343 [Inlined code] 0.51% 488426 java.util.Arrays#fill():3144 [Inlined code] 0.51% 480581 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] 0.36% 338587 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#apparentlyFirstQueuedIsExclusive():897 [Inlined code] 0.33% 309501 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [Inlined code] 0.23% 222305 org.apache.lucene.util.TernaryLongHeap#downHeap():232 [Inlined code] 0.23% 216963 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():101 [JIT compiled code] 0.22% 208153 java.util.concurrent.locks.ReentrantReadWriteLock#readLock():248 [Inlined code] 0.22% 205948 org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():303 [JIT compiled code] 0.21% 203926 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():254 [Inlined code] 0.20% 188594 jdk.incubator.vector.FloatVector#fromMemorySegment():3040 [Inlined code] 0.19% 184539 org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():298 [JIT compiled code] 0.18% 166571 org.apache.lucene.util.hnsw.HnswLock#read():40 [Inlined code] 0.13% 126622 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] 0.13% 125805 org.apache.lucene.util.hnsw.OnHeapHnswGraph#nextNeighbor():189 [Inlined code] 0.13% 119391 org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#minCompetitiveSimilarity():718 [Inlined code] 0.12% 118792 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#getState():165 [Inlined code] 0.12% 116365 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] 0.11% 104599 java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] 0.10% 98843 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] 0.10% 94045 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] 0.08% 80438 org.apache.lucene.util.VectorUtil#normalizeToUnitInterval():412 [Inlined code] 0.08% 78239 org.apache.lucene.util.hnsw.NeighborQueue#decodeScore():120 [Inlined code] 0.08% 77387 org.apache.lucene.util.FixedBitSet#getAndSet():308 [Inlined code] 0.08% 76561 org.apache.lucene.util.TernaryLongHeap#top():111 [Inlined code] 0.08% 75773 org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] 0.07% 69900 org.apache.lucene.util.hnsw.NeighborArray#growArrays():96 [Inlined code] 0.07% 68957 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#compareAndSetState():189 [Inlined code] 0.07% 66225 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] 0.07% 66185 org.apache.lucene.util.TernaryLongHeap#push():81 [Inlined code] 0.07% 66089 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():336 [JIT compiled code] 0.07% 66036 org.apache.lucene.util.hnsw.NeighborQueue#encode():115 [Inlined code] 0.07% 64105 org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():314 [JIT compiled code] 0.07% 63892 org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():297 [JIT compiled code] 0.07% 62623 org.apache.lucene.util.TernaryLongHeap#downHeap():235 [Inlined code] 0.06% 61504 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] 0.06% 60835 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():345 [JIT compiled code] 0.06% 60171 org.apache.lucene.util.hnsw.NeighborArray#nodes():217 [Inlined code] 0.06% 58690 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.06% 57106 org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] 0.06% 55878 org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():293 [JIT compiled code] 0.06% 54300 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] 0.06% 54105 java.util.Arrays#fill():3143 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=2 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.jfr Profiler for cpu at stackSize=2 [medium vectors index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.jfr is 1968.52 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 95071060 events (total: 95M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=2 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 68.21% 64M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] 11.21% 10M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] 4.62% 4M jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] 1.70% 1M org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] 1.44% 1M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] 1.00% 947225 org.apache.lucene.util.FixedBitSet#getAndSet():307 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] 0.98% 928428 java.util.ArrayList#elementData():412 [Inlined code] at java.util.ArrayList#get():429 [Inlined code] 0.91% 869485 jdk.incubator.vector.FloatVector#fromArray0Template():3343 [Inlined code] at jdk.incubator.vector.Float256Vector#fromArray0():935 [Inlined code] 0.51% 488426 java.util.Arrays#fill():3144 [Inlined code] at org.apache.lucene.util.FixedBitSet#clear():174 [Inlined code] 0.51% 480581 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] 0.36% 338587 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#apparentlyFirstQueuedIsExclusive():897 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$NonfairSync#readerShouldBlock():698 [Inlined code] 0.23% 216963 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():101 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] 0.22% 208153 java.util.concurrent.locks.ReentrantReadWriteLock#readLock():248 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():40 [Inlined code] 0.21% 203926 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():254 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] 0.19% 179376 org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():298 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.18% 166571 org.apache.lucene.util.hnsw.HnswLock#read():40 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [Inlined code] 0.17% 162267 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#seek():177 [Inlined code] 0.17% 159843 jdk.incubator.vector.FloatVector#fromMemorySegment():3040 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():110 [JIT compiled code] 0.15% 146277 org.apache.lucene.util.TernaryLongHeap#downHeap():232 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#pop():124 [Inlined code] 0.14% 135586 org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():303 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.14% 135399 org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#setScoringOrdinal():155 [Inlined code] 0.13% 126622 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] 0.13% 125805 org.apache.lucene.util.hnsw.OnHeapHnswGraph#nextNeighbor():189 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#graphNextNeighbor():401 [Inlined code] 0.12% 116365 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] 0.12% 115471 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():249 [Inlined code] 0.12% 114711 org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#minCompetitiveSimilarity():718 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():343 [JIT compiled code] 0.11% 104599 java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] 0.11% 102124 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#getState():165 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():475 [Inlined code] 0.08% 78239 org.apache.lucene.util.hnsw.NeighborQueue#decodeScore():120 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#topScore():151 [Inlined code] 0.08% 77387 org.apache.lucene.util.FixedBitSet#getAndSet():308 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] 0.08% 76561 org.apache.lucene.util.TernaryLongHeap#top():111 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#topScore():151 [Inlined code] 0.08% 76028 org.apache.lucene.util.TernaryLongHeap#downHeap():232 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#updateTop():153 [JIT compiled code] 0.07% 69904 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.07% 69152 org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():303 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] 0.07% 67840 org.apache.lucene.util.hnsw.NeighborArray#growArrays():96 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] 0.07% 67275 org.apache.lucene.util.VectorUtil#normalizeToUnitInterval():412 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#normalizeRawScore():153 [Inlined code] 0.07% 66225 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] 0.07% 65676 org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.07% 64403 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.07% 64105 org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():314 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] 0.07% 62302 org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.06% 61504 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] 0.06% 58408 org.apache.lucene.util.TernaryLongHeap#push():81 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] 0.06% 58373 org.apache.lucene.util.hnsw.NeighborQueue#encode():115 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] 0.06% 57053 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():345 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.06% 56277 org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] 0.06% 55438 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.06% 54300 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] 0.06% 54105 java.util.Arrays#fill():3143 [Inlined code] at org.apache.lucene.util.FixedBitSet#clear():174 [Inlined code] 0.05% 45750 org.apache.lucene.util.hnsw.OnHeapHnswGraph#nextNeighbor():188 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#graphNextNeighbor():401 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.jfr Profiler for cpu at stackSize=4 [medium vectors index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.jfr is 1968.52 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 95071060 events (total: 95M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 68.21% 64M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] 11.21% 10M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] 3.06% 2M jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():82 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] 1.62% 1M org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 1.44% 1M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] 1.11% 1M jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():128 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] 0.97% 924982 org.apache.lucene.util.FixedBitSet#getAndSet():307 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.89% 845281 java.util.ArrayList#elementData():412 [Inlined code] at java.util.ArrayList#get():429 [Inlined code] at org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] 0.67% 633739 jdk.incubator.vector.FloatVector#fromArray0Template():3343 [Inlined code] at jdk.incubator.vector.Float256Vector#fromArray0():935 [Inlined code] at jdk.incubator.vector.FloatVector#fromArray():2856 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():154 [JIT compiled code] 0.51% 488426 java.util.Arrays#fill():3144 [Inlined code] at org.apache.lucene.util.FixedBitSet#clear():174 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#prepareScratchState():374 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():290 [JIT compiled code] 0.48% 457860 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] 0.44% 419718 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():166 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] 0.36% 337762 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#apparentlyFirstQueuedIsExclusive():897 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$NonfairSync#readerShouldBlock():698 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():480 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] 0.22% 208153 java.util.concurrent.locks.ReentrantReadWriteLock#readLock():248 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():40 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] 0.21% 194945 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():254 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.19% 179804 jdk.incubator.vector.FloatVector#fromArray0Template():3343 [Inlined code] at jdk.incubator.vector.Float256Vector#fromArray0():935 [Inlined code] at jdk.incubator.vector.FloatVector#fromArray():2856 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():139 [JIT compiled code] 0.18% 172888 org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():298 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.18% 170549 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():101 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] 0.17% 162267 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#seek():177 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#graphSeek():389 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] 0.17% 159843 jdk.incubator.vector.FloatVector#fromMemorySegment():3040 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():110 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] 0.16% 156186 org.apache.lucene.util.hnsw.HnswLock#read():40 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.15% 144195 org.apache.lucene.util.TernaryLongHeap#downHeap():232 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#pop():124 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#pop():129 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():322 [JIT compiled code] 0.14% 129931 org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():303 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.13% 121988 org.apache.lucene.util.hnsw.OnHeapHnswGraph#nextNeighbor():189 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#graphNextNeighbor():401 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():326 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.13% 118895 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] 0.12% 116365 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] 0.11% 108826 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():249 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.11% 108342 org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#minCompetitiveSimilarity():718 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():343 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.11% 104599 java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] 0.11% 101541 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#getState():165 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():475 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] 0.09% 82500 java.util.ArrayList#elementData():412 [Inlined code] at java.util.ArrayList#get():429 [Inlined code] at org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#setScoringOrdinal():155 [Inlined code] 0.08% 76028 org.apache.lucene.util.TernaryLongHeap#downHeap():232 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#updateTop():153 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] 0.08% 75949 org.apache.lucene.util.FixedBitSet#getAndSet():308 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.07% 70411 org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#setScoringOrdinal():155 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] 0.07% 69600 org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] 0.07% 69152 org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():303 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.07% 67973 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.07% 64991 org.apache.lucene.util.hnsw.NeighborQueue#decodeScore():120 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#topScore():151 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#minCompetitiveSimilarity():718 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():343 [JIT compiled code] 0.07% 63690 org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#setScoringOrdinal():155 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.07% 62850 org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.07% 62443 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.06% 61504 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] 0.06% 59175 org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():297 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.06% 55221 org.apache.lucene.util.TernaryLongHeap#push():81 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.06% 54993 jdk.incubator.vector.FloatVector#fromArray0Template():3343 [Inlined code] at jdk.incubator.vector.Float256Vector#fromArray0():935 [Inlined code] at jdk.incubator.vector.FloatVector#fromArray():2856 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():144 [JIT compiled code] 0.06% 54300 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] 0.06% 54105 java.util.Arrays#fill():3143 [Inlined code] at org.apache.lucene.util.FixedBitSet#clear():174 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#prepareScratchState():374 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():290 [JIT compiled code] 0.06% 53172 org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():314 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] 0.06% 52837 org.apache.lucene.util.hnsw.NeighborArray#growArrays():96 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] 0.05% 51341 org.apache.lucene.util.hnsw.NeighborQueue#encode():115 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=8 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.jfr Profiler for cpu at stackSize=8 [medium vectors index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.jfr is 1968.52 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 95071060 events (total: 95M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=8 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 14.28% 13M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():121 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] 13.85% 13M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():123 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] 11.70% 11M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():120 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] 11.22% 10M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():155 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] 11.01% 10M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():122 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] 3.99% 3M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():118 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] 3.05% 2M jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():82 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] 2.88% 2M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():80 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] 2.55% 2M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():110 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] 1.80% 1M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():112 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] 1.79% 1M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():150 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] 1.58% 1M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():113 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] 1.58% 1M org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] 0.99% 942136 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():145 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] 0.86% 819866 org.apache.lucene.util.FixedBitSet#getAndSet():307 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.78% 741188 jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():111 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] 0.76% 723694 java.util.ArrayList#elementData():412 [Inlined code] at java.util.ArrayList#get():429 [Inlined code] at org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.76% 723481 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.67% 633739 jdk.incubator.vector.FloatVector#fromArray0Template():3343 [Inlined code] at jdk.incubator.vector.Float256Vector#fromArray0():935 [Inlined code] at jdk.incubator.vector.FloatVector#fromArray():2856 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():154 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] 0.65% 621304 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.61% 581543 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():128 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.50% 478906 jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():78 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] 0.48% 457860 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] 0.46% 434568 java.util.Arrays#fill():3144 [Inlined code] at org.apache.lucene.util.FixedBitSet#clear():174 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#prepareScratchState():374 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():290 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.41% 386313 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():140 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] 0.39% 370712 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():166 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] 0.36% 337762 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#apparentlyFirstQueuedIsExclusive():897 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$NonfairSync#readerShouldBlock():698 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():480 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] 0.21% 195436 java.util.concurrent.locks.ReentrantReadWriteLock#readLock():248 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():40 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.21% 194945 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():254 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.19% 182614 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():128 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] 0.19% 179804 jdk.incubator.vector.FloatVector#fromArray0Template():3343 [Inlined code] at jdk.incubator.vector.Float256Vector#fromArray0():935 [Inlined code] at jdk.incubator.vector.FloatVector#fromArray():2856 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():139 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] 0.18% 172888 org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():298 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.16% 156186 org.apache.lucene.util.hnsw.HnswLock#read():40 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 0.16% 155515 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#seek():177 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#graphSeek():389 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] 0.14% 133655 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():128 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.14% 129931 org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():303 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.13% 127786 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():101 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.13% 121255 org.apache.lucene.util.hnsw.OnHeapHnswGraph#nextNeighbor():189 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#graphNextNeighbor():401 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():326 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.12% 116365 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] at sun.nio.ch.IOUtil#write():72 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():355 [Inlined code] at sun.nio.ch.FileChannelImpl#traceImplWrite():374 [Inlined code] at sun.nio.ch.FileChannelImpl#write():333 [JIT compiled code] 0.12% 112412 jdk.incubator.vector.FloatVector#fromMemorySegment():3040 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():110 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.11% 108826 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():249 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 0.11% 105116 org.apache.lucene.util.FixedBitSet#getAndSet():307 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.11% 102747 org.apache.lucene.util.TernaryLongHeap#downHeap():232 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#pop():124 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#pop():129 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():322 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.11% 102393 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():108 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.10% 99745 org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#minCompetitiveSimilarity():718 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():343 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.10% 97039 java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.10% 94335 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#getState():165 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():475 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.10% 92798 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():128 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] 0.08% 77251 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():80 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [JIT compiled code] 0.08% 75928 org.apache.lucene.util.TernaryLongHeap#downHeap():232 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#updateTop():153 [JIT compiled code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#collect():713 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():350 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.jfr Profiler for cpu at stackSize=12 [medium vectors index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.jfr is 1968.52 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 95071060 events (total: 95M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 12.89% 12M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():123 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 11.82% 11M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():121 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 10.25% 9M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():155 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 9.97% 9M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():120 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 7.79% 7M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():122 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 2.95% 2M jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():82 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 2.68% 2M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():80 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] 2.05% 1M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():110 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 2.05% 1M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():122 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 1.85% 1M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():118 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 1.62% 1M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():112 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 1.59% 1M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():150 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 1.58% 1M org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 1.50% 1M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():113 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 1.41% 1M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():121 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 1.26% 1M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():118 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.86% 820284 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():145 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.81% 774012 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():120 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.81% 767088 org.apache.lucene.util.FixedBitSet#getAndSet():307 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000581f9a68#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.76% 723694 java.util.ArrayList#elementData():412 [Inlined code] at java.util.ArrayList#get():429 [Inlined code] at org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.76% 720061 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] 0.65% 621187 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] 0.63% 602809 jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():111 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.61% 581543 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():128 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 0.60% 570982 jdk.incubator.vector.FloatVector#fromArray0Template():3343 [Inlined code] at jdk.incubator.vector.Float256Vector#fromArray0():935 [Inlined code] at jdk.incubator.vector.FloatVector#fromArray():2856 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():154 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.51% 484960 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():155 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] 0.51% 484597 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():121 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.50% 478107 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():123 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.50% 471078 jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():78 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] 0.48% 457860 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.46% 434568 java.util.Arrays#fill():3144 [Inlined code] at org.apache.lucene.util.FixedBitSet#clear():174 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#prepareScratchState():374 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():290 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000581f9a68#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 0.46% 433076 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():120 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.45% 429005 jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():118 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.45% 428427 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():122 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.39% 370369 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():123 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.37% 350153 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():122 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.36% 339485 jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():118 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.35% 336337 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():155 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] 0.35% 330856 jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():110 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.34% 325974 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():121 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.34% 320944 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():120 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.34% 320270 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#apparentlyFirstQueuedIsExclusive():897 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$NonfairSync#readerShouldBlock():698 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():480 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.33% 312651 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():140 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.30% 282014 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():166 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] 0.21% 195436 java.util.concurrent.locks.ReentrantReadWriteLock#readLock():248 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():40 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000581f9a68#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 0.20% 187819 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():80 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] 0.19% 182864 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():254 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000581f9a68#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.19% 182614 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():128 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.18% 174328 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():122 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.18% 171368 org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():298 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000581f9a68#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.jfr Profiler for heap at stackSize=1 [medium vectors index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.jfr is 1968.52 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 124043 events (total: 115092M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 24.45% 28135M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] 24.39% 28066M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] 6.84% 7877M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] 6.62% 7620M java.nio.HeapByteBuffer#():75 [Inlined code] 5.89% 6784M perf.LineFileDocs#readVector():212 [Inlined code] 2.97% 3422M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] 2.92% 3362M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] 2.81% 3235M perf.LineFileDocs#nextDoc():647 [JIT compiled code] 2.17% 2502M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] 1.71% 1972M java.lang.StringUTF16#compress():212 [Inlined code] 1.68% 1937M perf.LineFileDocs#readDocs():176 [JIT compiled code] 1.23% 1411M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] 1.18% 1352M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] 1.03% 1184M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] 0.96% 1104M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] 0.84% 964M java.lang.StringUTF16#compress():216 [Inlined code] 0.77% 883M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] 0.73% 837M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] 0.72% 823M org.apache.lucene.util.TimSorter#():62 [Inlined code] 0.63% 720M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] 0.62% 717M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] 0.47% 539M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] 0.45% 521M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] 0.45% 519M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] 0.41% 466M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] 0.38% 432M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] 0.38% 431M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] 0.37% 425M org.apache.lucene.util.BytesRef#():71 [Inlined code] 0.37% 424M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():158 [JIT compiled code] 0.34% 394M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] 0.31% 356M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] 0.27% 312M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] 0.25% 287M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] 0.22% 247M java.lang.invoke.DirectMethodHandle#allocateInstance():500 [Inlined code] 0.18% 202M org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] 0.17% 200M org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] 0.17% 193M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():320 [JIT compiled code] 0.14% 161M perf.LineFileDocs#nextDoc():642 [JIT compiled code] 0.14% 159M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():306 [JIT compiled code] 0.13% 152M java.util.ArrayList#grow():240 [Inlined code] 0.13% 148M org.apache.lucene.codecs.lucene104.PForUtil#encode():78 [JIT compiled code] 0.12% 135M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] 0.12% 133M org.apache.lucene.codecs.CompetitiveImpactAccumulator#getCompetitiveFreqNormPairs():108 [JIT compiled code] 0.12% 133M java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquire():389 [JIT compiled code] 0.11% 130M org.apache.lucene.document.IntPoint#pack():114 [Inlined code] 0.11% 130M org.apache.lucene.index.IndexingChain$IntBlockAllocator#getIntBlock():1978 [Inlined code] 0.11% 128M java.nio.FloatBuffer#wrap():443 [Inlined code] 0.11% 122M perf.LineFileDocs#nextDoc():649 [JIT compiled code] 0.10% 119M java.util.ArrayDeque#():179 [Inlined code] 0.10% 114M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=2 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.jfr Profiler for heap at stackSize=2 [medium vectors index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.jfr is 1968.52 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 124043 events (total: 115092M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=2 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 24.39% 28066M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] 24.33% 27998M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] 6.84% 7877M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] 6.62% 7620M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] 5.89% 6784M perf.LineFileDocs#readVector():212 [Inlined code] at perf.LineFileDocs#readDocs():183 [JIT compiled code] 2.97% 3422M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] 2.92% 3362M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] 2.81% 3235M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 2.17% 2502M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] 1.71% 1972M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] 1.68% 1937M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.23% 1411M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 1.18% 1352M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] 1.02% 1169M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] 0.96% 1104M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] 0.84% 964M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] 0.77% 883M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.72% 823M org.apache.lucene.util.TimSorter#():62 [Inlined code] at org.apache.lucene.util.ArrayTimSorter#():34 [Inlined code] 0.59% 678M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] 0.47% 539M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] 0.45% 521M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] 0.45% 519M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] 0.42% 482M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] 0.41% 466M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] 0.39% 444M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] 0.38% 432M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] 0.37% 429M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.34% 389M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] 0.34% 386M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():158 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] 0.33% 376M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] 0.31% 356M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] 0.27% 312M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():349 [JIT compiled code] 0.25% 287M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] 0.24% 272M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] 0.21% 238M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] 0.17% 200M org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [JIT compiled code] 0.17% 200M java.lang.invoke.DirectMethodHandle#allocateInstance():500 [Inlined code] at java.lang.invoke.DirectMethodHandle$Holder#newInvokeSpecial() [Inlined code] 0.17% 191M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():320 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.14% 161M perf.LineFileDocs#nextDoc():642 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 0.14% 159M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():306 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.14% 158M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():464 [JIT compiled code] 0.13% 152M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] 0.12% 136M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [Inlined code] 0.12% 135M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] 0.12% 133M org.apache.lucene.codecs.CompetitiveImpactAccumulator#getCompetitiveFreqNormPairs():108 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():398 [JIT compiled code] 0.11% 130M org.apache.lucene.document.IntPoint#pack():114 [Inlined code] at org.apache.lucene.document.IntPoint#setIntValues():72 [Inlined code] 0.11% 130M org.apache.lucene.index.IndexingChain$IntBlockAllocator#getIntBlock():1978 [Inlined code] at org.apache.lucene.util.IntBlockPool#nextBuffer():153 [JIT compiled code] 0.11% 128M java.nio.FloatBuffer#wrap():443 [Inlined code] at java.nio.FloatBuffer#wrap():472 [Inlined code] 0.11% 122M perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 0.11% 122M org.apache.lucene.codecs.lucene104.PForUtil#encode():78 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.jfr Profiler for heap at stackSize=4 [medium vectors index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.jfr is 1968.52 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 124043 events (total: 115092M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 22.27% 25632M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] 22.18% 25525M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] 6.84% 7877M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():335 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] 6.41% 7376M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] at perf.LineFileDocs#readVector():213 [Inlined code] at perf.LineFileDocs#readDocs():183 [JIT compiled code] 5.89% 6784M perf.LineFileDocs#readVector():212 [Inlined code] at perf.LineFileDocs#readDocs():183 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 2.95% 3398M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 2.92% 3362M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 2.81% 3235M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 2.15% 2473M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] 2.11% 2433M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] 1.68% 1937M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.68% 1932M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] 1.55% 1779M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] 1.02% 1169M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 0.96% 1104M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 0.86% 985M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] 0.83% 955M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] 0.77% 880M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.72% 823M org.apache.lucene.util.TimSorter#():62 [Inlined code] at org.apache.lucene.util.ArrayTimSorter#():34 [Inlined code] at org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [JIT compiled code] 0.62% 716M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] 0.60% 694M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] 0.59% 678M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 0.50% 569M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.47% 539M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] 0.45% 521M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] 0.45% 519M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] 0.42% 480M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.41% 466M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] 0.38% 440M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.38% 432M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] 0.31% 356M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] 0.25% 293M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.25% 290M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.25% 287M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] 0.25% 286M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():349 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.23% 262M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#initStreamSlices():161 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():198 [JIT compiled code] 0.21% 237M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.20% 229M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput$$Lambda.0x00000000581811b8#apply() [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput#appendBlock():506 [JIT compiled code] 0.19% 222M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():736 [JIT compiled code] 0.18% 209M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():158 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] 0.18% 209M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.17% 200M org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [JIT compiled code] at org.apache.lucene.index.MappedMultiFields$MappedMultiTermsEnum#postings():131 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] 0.17% 200M java.lang.invoke.DirectMethodHandle#allocateInstance():500 [Inlined code] at java.lang.invoke.DirectMethodHandle$Holder#newInvokeSpecial() [Inlined code] at java.lang.invoke.Invokers$Holder#linkToTargetMethod() [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [JIT compiled code] 0.15% 176M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():158 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.14% 161M perf.LineFileDocs#nextDoc():642 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.14% 158M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():464 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#startDoc():259 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():144 [JIT compiled code] 0.13% 152M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] 0.12% 143M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():320 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.12% 136M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] 0.12% 135M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=8 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.jfr Profiler for heap at stackSize=8 [medium vectors index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.jfr is 1968.52 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 124043 events (total: 115092M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=8 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 14.53% 16719M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 14.34% 16506M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 6.84% 7877M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():335 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():783 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 6.41% 7376M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] at perf.LineFileDocs#readVector():213 [Inlined code] at perf.LineFileDocs#readDocs():183 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 5.89% 6784M perf.LineFileDocs#readVector():212 [Inlined code] at perf.LineFileDocs#readDocs():183 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 5.51% 6343M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] 5.40% 6215M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] 2.81% 3235M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 2.21% 2549M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 2.19% 2515M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 2.17% 2493M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 1.68% 1937M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.68% 1932M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 1.55% 1779M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 1.48% 1705M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] 1.44% 1656M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] 1.34% 1541M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] 1.27% 1456M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] 0.83% 955M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.79% 904M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.72% 823M org.apache.lucene.util.TimSorter#():62 [Inlined code] at org.apache.lucene.util.ArrayTimSorter#():34 [Inlined code] at org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [JIT compiled code] at org.apache.lucene.index.MappedMultiFields$MappedMultiTermsEnum#postings():131 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 0.62% 716M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000581ee438#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] 0.55% 631M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.53% 609M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] 0.52% 603M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] 0.51% 592M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000581ee438#merge() [Interpreted code] 0.50% 577M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] 0.50% 575M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] 0.49% 566M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] 0.45% 519M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 0.44% 500M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] 0.43% 494M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000581ee438#merge() [Interpreted code] 0.42% 480M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 0.41% 467M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] 0.39% 445M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 0.38% 432M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 0.36% 412M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():255 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initGraph():148 [Interpreted code] 0.34% 390M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.30% 340M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.29% 335M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():200 [JIT compiled code] 0.28% 316M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():255 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initGraph():148 [Interpreted code] 0.27% 313M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.26% 299M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.25% 293M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000581f9a68#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 0.25% 290M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000581f9a68#call() [JIT compiled code] 0.25% 286M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():349 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.22% 248M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.21% 242M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#initStreamSlices():161 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():198 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] 0.19% 222M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():736 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.19% 218M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput$$Lambda.0x00000000581811b8#apply() [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput#appendBlock():506 [JIT compiled code] at org.apache.lucene.store.ByteBuffersDataOutput#writeByte():187 [Inlined code] at org.apache.lucene.store.DataOutput#writeVInt():203 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.TrieBuilder#append():138 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingBlock#compileIndex():488 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.jfr Profiler for heap at stackSize=12 [medium vectors index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.jfr is 1968.52 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 124043 events (total: 115092M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 14.53% 16719M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000581f9a68#call() [JIT compiled code] 14.34% 16506M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000581f9a68#call() [JIT compiled code] 6.84% 7877M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():335 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():783 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 6.41% 7376M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] at perf.LineFileDocs#readVector():213 [Inlined code] at perf.LineFileDocs#readDocs():183 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 5.89% 6784M perf.LineFileDocs#readVector():212 [Inlined code] at perf.LineFileDocs#readDocs():183 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 5.51% 6343M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 5.40% 6215M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 2.81% 3235M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 2.01% 2314M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000581f9a68#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 1.68% 1937M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.68% 1932M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000581f9a68#call() [JIT compiled code] 1.63% 1877M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 1.61% 1857M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 1.55% 1779M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 1.44% 1656M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000581ee438#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] 1.34% 1541M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 1.27% 1456M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 0.98% 1124M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [Inlined code] 0.83% 955M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.79% 904M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.72% 823M org.apache.lucene.util.TimSorter#():62 [Inlined code] at org.apache.lucene.util.ArrayTimSorter#():34 [Inlined code] at org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [JIT compiled code] at org.apache.lucene.index.MappedMultiFields$MappedMultiTermsEnum#postings():131 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000581ee438#merge() [Interpreted code] 0.62% 716M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000581ee438#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] at org.apache.lucene.index.IndexWriter#merge():4785 [Interpreted code] at org.apache.lucene.index.IndexWriter$IndexWriterMergeSource#merge():6590 [Interpreted code] at org.apache.lucene.index.ConcurrentMergeScheduler#doMerge():661 [Interpreted code] 0.58% 671M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.57% 658M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.51% 592M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000581ee438#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] at org.apache.lucene.index.IndexWriter#merge():4785 [Interpreted code] 0.51% 589M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.51% 589M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000581f9a68#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.49% 566M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 0.49% 560M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.45% 519M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 0.44% 500M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000581ee438#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] 0.43% 494M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000581ee438#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] at org.apache.lucene.index.IndexWriter#merge():4785 [Interpreted code] 0.42% 480M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 0.41% 467M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.39% 445M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 0.38% 432M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 0.37% 423M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] 0.36% 412M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():255 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initGraph():148 [Interpreted code] at org.apache.lucene.util.hnsw.ConcurrentHnswMerger#createBuilder():81 [Interpreted code] at org.apache.lucene.util.hnsw.IncrementalHnswGraphMerger#merge():212 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#buildAndWriteGraph():485 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#lambda$mergeOneField$0():453 [Interpreted code] 0.35% 400M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] 0.34% 390M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.28% 316M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():255 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initGraph():148 [Interpreted code] at org.apache.lucene.util.hnsw.ConcurrentHnswMerger#createBuilder():81 [Interpreted code] at org.apache.lucene.util.hnsw.IncrementalHnswGraphMerger#merge():212 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#buildAndWriteGraph():485 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#lambda$mergeOneField$0():453 [Interpreted code] 0.27% 313M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000581f9a68#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.26% 302M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000581f9a68#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.26% 299M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.26% 299M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#flushAllThreads():688 [Interpreted code] 0.25% 288M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000581f9a68#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x0000000058204000#run() [JIT compiled code] at java.util.concurrent.ThreadPoolExecutor#runWorker():1090 [Interpreted code] 0.25% 286M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():349 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [Inlined code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.24% 281M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#postUpdate():404 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] 0.24% 279M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000581f9a68#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x0000000058204000#run() [JIT compiled code] 0.22% 248M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] move log to /l/logs.nightly/2026.05.15.14.49.32/fastIndexMediumDocsWithVectors.log move vmstat log to /l/logs.nightly/2026.05.15.14.49.32/fastIndexMediumDocsWithVectors.vmstat.log move top log to /l/logs.nightly/2026.05.15.14.49.32/fastIndexMediumDocsWithVectors.top.log [2026-05-16 04:19:18.807357] took 14011.4 sec [2026-05-16 04:19:19.641167] medIndexVectorsAtClose None [2026-05-16 04:19:19.649282] build medium quantized vectors index (fast) /l/indices/wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M: now create cd /l/trunk.nightly/lucene/benchmark NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log /l/logs.nightly/nightly.wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M.log run: ['/usr/lib/jvm/java-25-openjdk/bin/java', '--add-modules', 'jdk.incubator.vector', '-Xmx32g', '-Xms32g', '-server', '-XX:+UseParallelGC', '-Djava.io.tmpdir=/l/tmp', '--enable-native-access=ALL-UNNAMED', '-classpath', '/l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build', '-XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M.jfr', '-XX:+UnlockDiagnosticVMOptions', '-XX:+DebugNonSafepoints', 'perf.Indexer', '-dirImpl', 'MMapDirectory', '-indexPath', '/l/indices/wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M', '-analyzer', 'StandardAnalyzerNoStopWords', '-lineDocsFile', '/l/data/enwiki-20110115-lines-1k-fixed-with-random-labels.bin', '-docCountLimit', '27625038', '-threadCount', '36', '-useCMS', '-vectorFile', '/big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec', '-vectorDimension', '1024', '-vectorEncoding', 'FLOAT32', '-ramBufferMB', '2048', '-maxBufferedDocs', '-1', '-postingsFormat', 'Lucene104', '-mergePolicy', 'TieredMergePolicy', '-idFieldPostingsFormat', 'Lucene104', '-idFieldPostingsFormat', 'Lucene104', '-hnswThreadsPerMerge', '16', '-hnswThreadPoolCount', '96', '-quantizeKNNGraph'], cwd=/l/trunk.nightly/lucene/benchmark vmstatLogFile=/l/logs.nightly/nightly.vmstat.log topLogFile=/l/logs.nightly/nightly.top.log run vmstat: /usr/sbin/vmstat --active --wide --timestamp --unit M 1 > /l/logs.nightly/nightly.vmstat.log 2>&1 & run /usr/sbin/ps -eo pid,%cpu,%mem,bsdtime,etime,start,args --cols=120 --sort=-%cpu | head -10 >> /l/logs.nightly/nightly.top.log 2>&1 to /l/logs.nightly/nightly.top.log now kill vmstat: pid=2514910 Profiler summary for /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M.jfr Version: 2.1 Chunks: 162 Start: 2026-05-16 09:53:32 (UTC) Duration: 1345 s Event Type Count Size (bytes) ============================================================= jdk.CPUTimeSample 82967662 1659258207 jdk.FileWrite 11332501 308615436 jdk.ObjectAllocationInNewTLAB 345780 7115339 jdk.FileRead 214327 6263352 jdk.BooleanFlag 112104 3699918 jdk.ObjectAllocationOutsideTLAB 55598 1028688 jdk.CPULoad 20653 433713 jdk.UnsignedIntFlag 10044 360126 jdk.IntFlag 9072 337446 jdk.StringFlag 7290 287550 jdk.Checkpoint 6189 135916009 jdk.CPUInformation 162 243486 jdk.GCConfiguration 162 4374 jdk.JVMInformation 162 201852 jdk.Metadata 162 17905536 jdk.Compilation 145 4047 jdk.GarbageCollection 45 1170 jdk.ActiveRecording 0 0 jdk.ActiveSetting 0 0 jdk.AllocationRequiringGC 0 0 jdk.BooleanFlagChanged 0 0 jdk.CPUTimeSamplesLost 0 0 jdk.CPUTimeStampCounter 0 0 jdk.ClassDefine 0 0 jdk.ClassLoad 0 0 jdk.ClassLoaderStatistics 0 0 jdk.ClassLoadingStatistics 0 0 jdk.ClassRedefinition 0 0 jdk.ClassUnload 0 0 jdk.CodeCacheConfiguration 0 0 jdk.CodeCacheFull 0 0 jdk.CodeCacheStatistics 0 0 jdk.CompilationFailure 0 0 jdk.CompilerConfiguration 0 0 jdk.CompilerInlining 0 0 jdk.CompilerPhase 0 0 jdk.CompilerQueueUtilization 0 0 jdk.CompilerStatistics 0 0 jdk.ConcurrentModeFailure 0 0 jdk.ContainerCPUThrottling 0 0 jdk.ContainerCPUUsage 0 0 jdk.ContainerConfiguration 0 0 jdk.ContainerIOUsage 0 0 jdk.ContainerMemoryUsage 0 0 jdk.ContinuationFreeze 0 0 jdk.ContinuationFreezeFast 0 0 jdk.ContinuationFreezeSlow 0 0 jdk.ContinuationThaw 0 0 jdk.ContinuationThawFast 0 0 jdk.ContinuationThawSlow 0 0 jdk.DataLoss 0 0 jdk.Deoptimization 0 0 jdk.DeprecatedInvocation 0 0 jdk.Deserialization 0 0 jdk.DirectBufferStatistics 0 0 jdk.DoubleFlag 0 0 jdk.DoubleFlagChanged 0 0 jdk.DumpReason 0 0 jdk.EvacuationFailed 0 0 jdk.EvacuationInformation 0 0 jdk.ExceptionStatistics 0 0 jdk.ExecuteVMOperation 0 0 jdk.ExecutionSample 0 0 jdk.FileForce 0 0 jdk.FinalizerStatistics 0 0 jdk.Flush 0 0 jdk.G1AdaptiveIHOP 0 0 jdk.G1BasicIHOP 0 0 jdk.G1EvacuationOldStatistics 0 0 jdk.G1EvacuationYoungStatistics 0 0 jdk.G1GarbageCollection 0 0 jdk.G1HeapRegionInformation 0 0 jdk.G1HeapRegionTypeChange 0 0 jdk.G1HeapSummary 0 0 jdk.G1MMU 0 0 jdk.GCCPUTime 0 0 jdk.GCHeapConfiguration 0 0 jdk.GCHeapMemoryPoolUsage 0 0 jdk.GCHeapMemoryUsage 0 0 jdk.GCHeapSummary 0 0 jdk.GCPhaseConcurrent 0 0 jdk.GCPhaseConcurrentLevel1 0 0 jdk.GCPhaseConcurrentLevel2 0 0 jdk.GCPhaseParallel 0 0 jdk.GCPhasePause 0 0 jdk.GCPhasePauseLevel1 0 0 jdk.GCPhasePauseLevel2 0 0 jdk.GCPhasePauseLevel3 0 0 jdk.GCPhasePauseLevel4 0 0 jdk.GCReferenceStatistics 0 0 jdk.GCSurvivorConfiguration 0 0 jdk.GCTLABConfiguration 0 0 jdk.HeapDump 0 0 jdk.InitialEnvironmentVariable 0 0 jdk.InitialSecurityProperty 0 0 jdk.InitialSystemProperty 0 0 jdk.IntFlagChanged 0 0 jdk.JITRestart 0 0 jdk.JavaAgent 0 0 jdk.JavaErrorThrow 0 0 jdk.JavaExceptionThrow 0 0 jdk.JavaMonitorDeflate 0 0 jdk.JavaMonitorEnter 0 0 jdk.JavaMonitorInflate 0 0 jdk.JavaMonitorNotify 0 0 jdk.JavaMonitorStatistics 0 0 jdk.JavaMonitorWait 0 0 jdk.JavaThreadStatistics 0 0 jdk.LongFlag 0 0 jdk.LongFlagChanged 0 0 jdk.MetaspaceAllocationFailure 0 0 jdk.MetaspaceChunkFreeListSummary 0 0 jdk.MetaspaceGCThreshold 0 0 jdk.MetaspaceOOM 0 0 jdk.MetaspaceSummary 0 0 jdk.MethodTiming 0 0 jdk.MethodTrace 0 0 jdk.ModuleExport 0 0 jdk.ModuleRequire 0 0 jdk.NativeAgent 0 0 jdk.NativeLibrary 0 0 jdk.NativeLibraryLoad 0 0 jdk.NativeLibraryUnload 0 0 jdk.NativeMemoryUsage 0 0 jdk.NativeMemoryUsageTotal 0 0 jdk.NativeMethodSample 0 0 jdk.NetworkUtilization 0 0 jdk.OSInformation 0 0 jdk.ObjectAllocationSample 0 0 jdk.ObjectCount 0 0 jdk.ObjectCountAfterGC 0 0 jdk.OldGarbageCollection 0 0 jdk.OldObjectSample 0 0 jdk.PSHeapSummary 0 0 jdk.ParallelOldGarbageCollection 0 0 jdk.PhysicalMemory 0 0 jdk.ProcessStart 0 0 jdk.PromoteObjectInNewPLAB 0 0 jdk.PromoteObjectOutsidePLAB 0 0 jdk.PromotionFailed 0 0 jdk.RedefineClasses 0 0 jdk.ReservedStackActivation 0 0 jdk.ResidentSetSize 0 0 jdk.RetransformClasses 0 0 jdk.SafepointBegin 0 0 jdk.SafepointEnd 0 0 jdk.SafepointLatency 0 0 jdk.SafepointStateSynchronization 0 0 jdk.SecurityPropertyModification 0 0 jdk.SecurityProviderService 0 0 jdk.SerializationMisdeclaration 0 0 jdk.ShenandoahEvacuationInformation 0 0 jdk.ShenandoahHeapRegionInformation 0 0 jdk.ShenandoahHeapRegionStateChange 0 0 jdk.Shutdown 0 0 jdk.SocketRead 0 0 jdk.SocketWrite 0 0 jdk.StringFlagChanged 0 0 jdk.StringTableStatistics 0 0 jdk.SwapSpace 0 0 jdk.SymbolTableStatistics 0 0 jdk.SyncOnValueBasedClass 0 0 jdk.SystemGC 0 0 jdk.SystemProcess 0 0 jdk.TLSHandshake 0 0 jdk.TenuringDistribution 0 0 jdk.ThreadAllocationStatistics 0 0 jdk.ThreadCPULoad 0 0 jdk.ThreadContextSwitchRate 0 0 jdk.ThreadDump 0 0 jdk.ThreadEnd 0 0 jdk.ThreadPark 0 0 jdk.ThreadSleep 0 0 jdk.ThreadStart 0 0 jdk.UnsignedIntFlagChanged 0 0 jdk.UnsignedLongFlag 0 0 jdk.UnsignedLongFlagChanged 0 0 jdk.VirtualThreadEnd 0 0 jdk.VirtualThreadPinned 0 0 jdk.VirtualThreadStart 0 0 jdk.VirtualThreadSubmitFailed 0 0 jdk.VirtualizationInformation 0 0 jdk.X509Certificate 0 0 jdk.X509Validation 0 0 jdk.YoungGarbageCollection 0 0 jdk.YoungGenerationConfiguration 0 0 jdk.ZAllocationStall 0 0 jdk.ZOldGarbageCollection 0 0 jdk.ZPageAllocation 0 0 jdk.ZRelocationSet 0 0 jdk.ZRelocationSetGroup 0 0 jdk.ZStatisticsCounter 0 0 jdk.ZStatisticsSampler 0 0 jdk.ZThreadPhase 0 0 jdk.ZUncommit 0 0 jdk.ZYoungGarbageCollection 0 0 profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M.jfr Profiler for cpu at stackSize=1 [medium quantized vectors index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M.jfr is 2042.47 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 82967662 events (total: 82M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 36.14% 29M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] 35.77% 29M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] 6.38% 5M jdk.incubator.vector.IntVector#reduceLanesTemplate():2840 [Inlined code] 3.45% 2M org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] 3.26% 2M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] 2.34% 1M jdk.incubator.vector.FloatVector#fromArray0Template():3343 [Inlined code] 1.29% 1M java.util.ArrayList#elementData():412 [Inlined code] 0.63% 518705 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [Inlined code] 0.60% 494693 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] 0.38% 313283 jdk.incubator.vector.IntVector#lanewiseTemplate():798 [Inlined code] 0.32% 268567 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#loss():290 [Inlined code] 0.32% 266927 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#apparentlyFirstQueuedIsExclusive():897 [Inlined code] 0.27% 220880 org.apache.lucene.util.hnsw.OnHeapHnswGraph#nextNeighbor():189 [Inlined code] 0.26% 212055 org.apache.lucene.util.FixedBitSet#getAndSet():307 [Inlined code] 0.25% 205486 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():254 [JIT compiled code] 0.23% 192888 java.util.concurrent.locks.ReentrantReadWriteLock#readLock():248 [Inlined code] 0.21% 172790 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] 0.19% 155744 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():324 [JIT compiled code] 0.19% 153682 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] 0.17% 141313 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] 0.17% 140369 java.util.Arrays#fill():3144 [Inlined code] 0.17% 138486 java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] 0.16% 135880 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] 0.14% 118933 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] 0.13% 108746 org.apache.lucene.util.FixedBitSet#getAndSet():308 [Inlined code] 0.13% 105875 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#getState():165 [Inlined code] 0.13% 105431 org.apache.lucene.util.TernaryLongHeap#downHeap():232 [Inlined code] 0.12% 103133 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():329 [JIT compiled code] 0.12% 97128 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] 0.11% 91325 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] 0.10% 83830 jdk.internal.foreign.AbstractMemorySegmentImpl#checkBounds():403 [Inlined code] 0.10% 82273 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():51 [Inlined code] 0.09% 76629 jdk.jfr.internal.JVM#emitEvent() [Native code] 0.08% 64093 org.apache.lucene.util.hnsw.NeighborArray#nodes():217 [Inlined code] 0.07% 59508 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():249 [JIT compiled code] 0.07% 58987 org.apache.lucene.store.ChecksumIndexInput#skipByReading():81 [JIT compiled code] 0.07% 57789 java.util.Arrays#fill():3143 [Inlined code] 0.07% 57658 sun.nio.ch.NativeThread#current0() [Native code] 0.07% 57636 org.apache.lucene.util.BytesRefHash#findHash():381 [Inlined code] 0.07% 54465 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():247 [JIT compiled code] 0.06% 52082 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():228 [JIT compiled code] 0.06% 50266 org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] 0.06% 49853 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():328 [JIT compiled code] 0.06% 49601 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] 0.06% 46219 jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] 0.05% 44728 sun.nio.ch.UnixFileDispatcherImpl#read0() [Native code] 0.05% 43143 jdk.internal.foreign.NativeMemorySegmentImpl#unsafeGetOffset():87 [Inlined code] 0.05% 41498 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():291 [JIT compiled code] 0.05% 40647 org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] 0.05% 40389 org.apache.lucene.util.hnsw.NeighborArray#growArrays():96 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=2 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M.jfr Profiler for cpu at stackSize=2 [medium quantized vectors index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M.jfr is 2042.47 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 82967662 events (total: 82M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=2 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 36.14% 29M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] 34.57% 28M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] 6.38% 5M jdk.incubator.vector.IntVector#reduceLanesTemplate():2840 [Inlined code] at jdk.incubator.vector.Int256Vector#reduceLanes():330 [Inlined code] 3.26% 2M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] 3.18% 2M org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] 2.34% 1M jdk.incubator.vector.FloatVector#fromArray0Template():3343 [Inlined code] at jdk.incubator.vector.Float256Vector#fromArray0():935 [Inlined code] 1.29% 1M java.util.ArrayList#elementData():412 [Inlined code] at java.util.ArrayList#get():429 [Inlined code] 0.63% 521092 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] 0.60% 494693 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] 0.55% 455487 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] 0.40% 328772 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#seek():177 [Inlined code] 0.38% 313283 jdk.incubator.vector.IntVector#lanewiseTemplate():798 [Inlined code] at jdk.incubator.vector.Int256Vector#lanewise():278 [Inlined code] 0.32% 266927 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#apparentlyFirstQueuedIsExclusive():897 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$NonfairSync#readerShouldBlock():698 [Inlined code] 0.27% 222282 org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#setScoringOrdinal():155 [Inlined code] 0.27% 220880 org.apache.lucene.util.hnsw.OnHeapHnswGraph#nextNeighbor():189 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#graphNextNeighbor():401 [Inlined code] 0.26% 212055 org.apache.lucene.util.FixedBitSet#getAndSet():307 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] 0.25% 207235 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#loss():290 [Inlined code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():345 [JIT compiled code] 0.25% 205486 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():254 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] 0.23% 192888 java.util.concurrent.locks.ReentrantReadWriteLock#readLock():248 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():40 [Inlined code] 0.20% 169006 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.19% 155744 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():324 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] 0.19% 153682 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] 0.18% 145499 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():249 [JIT compiled code] 0.17% 140369 java.util.Arrays#fill():3144 [Inlined code] at org.apache.lucene.util.FixedBitSet#clear():174 [Inlined code] 0.17% 138486 java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] 0.14% 118933 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] 0.13% 108746 org.apache.lucene.util.FixedBitSet#getAndSet():308 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] 0.12% 103133 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():329 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] 0.12% 97128 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] 0.11% 91325 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] 0.11% 87930 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#getState():165 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():475 [Inlined code] 0.10% 83830 jdk.internal.foreign.AbstractMemorySegmentImpl#checkBounds():403 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#checkAccess():357 [Inlined code] 0.10% 82753 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.09% 76629 jdk.jfr.internal.JVM#emitEvent() [Native code] at jdk.jfr.internal.periodic.JVMEventTask#execute():54 [Inlined code] 0.08% 69438 org.apache.lucene.util.TernaryLongHeap#downHeap():232 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#pop():124 [Inlined code] 0.07% 61332 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#loss():290 [Inlined code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():307 [JIT compiled code] 0.07% 59508 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():249 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] 0.07% 58987 org.apache.lucene.store.ChecksumIndexInput#skipByReading():81 [JIT compiled code] at org.apache.lucene.store.ChecksumIndexInput#seek():64 [Inlined code] 0.07% 57789 java.util.Arrays#fill():3143 [Inlined code] at org.apache.lucene.util.FixedBitSet#clear():174 [Inlined code] 0.07% 57658 sun.nio.ch.NativeThread#current0() [Native code] at sun.nio.ch.NativeThread#current():51 [Inlined code] 0.07% 57636 org.apache.lucene.util.BytesRefHash#findHash():381 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] 0.07% 54465 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():247 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] 0.06% 52208 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] 0.06% 51378 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():51 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.06% 49853 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():328 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] 0.06% 49597 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] 0.06% 49080 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] 0.06% 48411 org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] 0.06% 47156 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] 0.05% 44728 sun.nio.ch.UnixFileDispatcherImpl#read0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#read():51 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M.jfr Profiler for cpu at stackSize=4 [medium quantized vectors index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M.jfr is 2042.47 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 82967662 events (total: 82M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 36.14% 29M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] 32.34% 26M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 6.38% 5M jdk.incubator.vector.IntVector#reduceLanesTemplate():2840 [Inlined code] at jdk.incubator.vector.Int256Vector#reduceLanes():330 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody256():459 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():400 [Inlined code] 3.26% 2M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] 3.02% 2M org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 1.72% 1M jdk.incubator.vector.FloatVector#fromArray0Template():3343 [Inlined code] at jdk.incubator.vector.Float256Vector#fromArray0():935 [Inlined code] at jdk.incubator.vector.FloatVector#fromArray():2856 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():154 [JIT compiled code] 1.20% 999100 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] 1.15% 953434 java.util.ArrayList#elementData():412 [Inlined code] at java.util.ArrayList#get():429 [Inlined code] at org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] 1.00% 828295 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] 0.63% 521092 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] 0.60% 494693 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():166 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] 0.55% 455487 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] 0.47% 388201 jdk.incubator.vector.FloatVector#fromArray0Template():3343 [Inlined code] at jdk.incubator.vector.Float256Vector#fromArray0():935 [Inlined code] at jdk.incubator.vector.FloatVector#fromArray():2856 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():139 [JIT compiled code] 0.40% 328772 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#seek():177 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#graphSeek():389 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] 0.38% 313282 jdk.incubator.vector.IntVector#lanewiseTemplate():798 [Inlined code] at jdk.incubator.vector.Int256Vector#lanewise():278 [Inlined code] at jdk.incubator.vector.Int256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.IntVector#add():1380 [Inlined code] 0.32% 266419 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#apparentlyFirstQueuedIsExclusive():897 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$NonfairSync#readerShouldBlock():698 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():480 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] 0.26% 213495 org.apache.lucene.util.hnsw.OnHeapHnswGraph#nextNeighbor():189 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#graphNextNeighbor():401 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():326 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.25% 206855 org.apache.lucene.util.FixedBitSet#getAndSet():307 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.24% 196867 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():254 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.23% 192888 java.util.concurrent.locks.ReentrantReadWriteLock#readLock():248 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():40 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] 0.19% 153682 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] 0.18% 151317 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.17% 140369 java.util.Arrays#fill():3144 [Inlined code] at org.apache.lucene.util.FixedBitSet#clear():174 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#prepareScratchState():374 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():290 [JIT compiled code] 0.17% 138486 java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] 0.17% 138117 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():249 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.16% 132444 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#loss():290 [Inlined code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():345 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] 0.14% 118933 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] 0.14% 118216 jdk.incubator.vector.FloatVector#fromArray0Template():3343 [Inlined code] at jdk.incubator.vector.Float256Vector#fromArray0():935 [Inlined code] at jdk.incubator.vector.FloatVector#fromArray():2856 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():144 [JIT compiled code] 0.14% 116894 org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#setScoringOrdinal():155 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] 0.14% 112495 java.util.ArrayList#elementData():412 [Inlined code] at java.util.ArrayList#get():429 [Inlined code] at org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#setScoringOrdinal():155 [Inlined code] 0.13% 107363 org.apache.lucene.util.FixedBitSet#getAndSet():308 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.13% 104143 org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#setScoringOrdinal():155 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.12% 98678 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():324 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] 0.11% 89373 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.11% 87615 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#getState():165 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():475 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] 0.11% 87525 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] 0.10% 80755 jdk.internal.foreign.AbstractMemorySegmentImpl#checkBounds():403 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#checkAccess():357 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#copy():650 [Inlined code] at java.lang.foreign.MemorySegment#copy():2555 [Inlined code] 0.10% 79116 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.09% 77153 org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] 0.09% 76629 jdk.jfr.internal.JVM#emitEvent() [Native code] at jdk.jfr.internal.periodic.JVMEventTask#execute():54 [Inlined code] at jdk.jfr.internal.periodic.PeriodicTask#run():125 [Inlined code] at jdk.jfr.internal.periodic.PeriodicEvents#doPeriodic():145 [JIT compiled code] 0.09% 74791 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#loss():290 [Inlined code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():345 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] 0.08% 66959 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():329 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] 0.08% 66667 org.apache.lucene.util.TernaryLongHeap#downHeap():232 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#pop():124 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#pop():129 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():322 [JIT compiled code] 0.07% 57789 java.util.Arrays#fill():3143 [Inlined code] at org.apache.lucene.util.FixedBitSet#clear():174 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#prepareScratchState():374 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():290 [JIT compiled code] 0.07% 57001 sun.nio.ch.NativeThread#current0() [Native code] at sun.nio.ch.NativeThread#current():51 [Inlined code] at sun.nio.ch.NativeThreadSet#add():48 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():349 [Inlined code] 0.07% 56818 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():324 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] 0.07% 55790 org.apache.lucene.util.BytesRefHash#findHash():381 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.06% 52208 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.06% 49488 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] 0.06% 49427 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():51 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=8 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M.jfr Profiler for cpu at stackSize=8 [medium quantized vectors index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M.jfr is 2042.47 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 82967662 events (total: 82M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=8 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 32.34% 26M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 27.85% 23M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():155 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] 6.38% 5M jdk.incubator.vector.IntVector#reduceLanesTemplate():2840 [Inlined code] at jdk.incubator.vector.Int256Vector#reduceLanes():330 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody256():459 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():400 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():363 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():217 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():249 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] 4.82% 3M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():150 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] 2.95% 2M org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] 2.56% 2M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():145 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] 1.81% 1M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 1.72% 1M jdk.incubator.vector.FloatVector#fromArray0Template():3343 [Inlined code] at jdk.incubator.vector.Float256Vector#fromArray0():935 [Inlined code] at jdk.incubator.vector.FloatVector#fromArray():2856 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():154 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] 1.41% 1M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 1.20% 999100 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 1.03% 855343 java.util.ArrayList#elementData():412 [Inlined code] at java.util.ArrayList#get():429 [Inlined code] at org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 1.00% 828295 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.91% 758223 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():140 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] 0.63% 521085 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.56% 467038 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():166 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] 0.55% 455481 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.47% 388201 jdk.incubator.vector.FloatVector#fromArray0Template():3343 [Inlined code] at jdk.incubator.vector.Float256Vector#fromArray0():935 [Inlined code] at jdk.incubator.vector.FloatVector#fromArray():2856 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():139 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] 0.38% 316646 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#seek():177 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#graphSeek():389 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] 0.38% 313282 jdk.incubator.vector.IntVector#lanewiseTemplate():798 [Inlined code] at jdk.incubator.vector.Int256Vector#lanewise():278 [Inlined code] at jdk.incubator.vector.Int256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.IntVector#add():1380 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody256():456 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():400 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():363 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():217 [Inlined code] 0.32% 266419 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#apparentlyFirstQueuedIsExclusive():897 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$NonfairSync#readerShouldBlock():698 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():480 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] 0.26% 212804 org.apache.lucene.util.hnsw.OnHeapHnswGraph#nextNeighbor():189 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#graphNextNeighbor():401 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():326 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.24% 196867 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():254 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.22% 181868 java.util.concurrent.locks.ReentrantReadWriteLock#readLock():248 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():40 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] 0.19% 159850 org.apache.lucene.util.FixedBitSet#getAndSet():307 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.19% 153682 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] at sun.nio.ch.IOUtil#write():72 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():355 [Inlined code] at sun.nio.ch.FileChannelImpl#traceImplWrite():374 [Inlined code] at sun.nio.ch.FileChannelImpl#write():333 [Inlined code] 0.18% 151317 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000931f31d0#call() [JIT compiled code] 0.17% 138117 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():249 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 0.16% 132150 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#loss():290 [Inlined code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():345 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] 0.16% 129933 java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] 0.15% 120350 java.util.Arrays#fill():3144 [Inlined code] at org.apache.lucene.util.FixedBitSet#clear():174 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#prepareScratchState():374 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():290 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] 0.14% 118216 jdk.incubator.vector.FloatVector#fromArray0Template():3343 [Inlined code] at jdk.incubator.vector.Float256Vector#fromArray0():935 [Inlined code] at jdk.incubator.vector.FloatVector#fromArray():2856 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():144 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] 0.14% 116893 org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#setScoringOrdinal():155 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.13% 103893 org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#setScoringOrdinal():155 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] 0.12% 98678 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():324 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] 0.10% 85168 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.10% 84082 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] 0.10% 81419 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#getState():165 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():475 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.09% 77153 org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] 0.09% 76123 jdk.jfr.internal.JVM#emitEvent() [Native code] at jdk.jfr.internal.periodic.JVMEventTask#execute():54 [Inlined code] at jdk.jfr.internal.periodic.PeriodicTask#run():125 [Inlined code] at jdk.jfr.internal.periodic.PeriodicEvents#doPeriodic():145 [JIT compiled code] at jdk.jfr.internal.PlatformRecorder#periodicTask():502 [JIT compiled code] at jdk.jfr.internal.PlatformRecorder#lambda$startDiskMonitor$0():428 [Interpreted code] at jdk.jfr.internal.PlatformRecorder$$Lambda.0x000000009307aa58#run() [Interpreted code] at java.lang.Thread#runWith():1487 [Interpreted code] 0.09% 74791 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#loss():290 [Inlined code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():345 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#flush():156 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#flush():209 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#flush():123 [JIT compiled code] 0.09% 74292 jdk.internal.foreign.AbstractMemorySegmentImpl#checkBounds():403 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#checkAccess():357 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#copy():650 [Inlined code] at java.lang.foreign.MemorySegment#copy():2555 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#readBytes():187 [Inlined code] at org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#vectorValue():129 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():245 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] 0.08% 67902 org.apache.lucene.util.FixedBitSet#getAndSet():308 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.08% 66959 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():329 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] 0.08% 63124 java.util.ArrayList#elementData():412 [Inlined code] at java.util.ArrayList#get():429 [Inlined code] at org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#setScoringOrdinal():155 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] 0.07% 59877 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.07% 57448 org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] 0.07% 57001 sun.nio.ch.NativeThread#current0() [Native code] at sun.nio.ch.NativeThread#current():51 [Inlined code] at sun.nio.ch.NativeThreadSet#add():48 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():349 [Inlined code] at sun.nio.ch.FileChannelImpl#traceImplWrite():374 [Inlined code] at sun.nio.ch.FileChannelImpl#write():333 [Inlined code] at sun.nio.ch.ChannelOutputStream#writeFully():68 [Inlined code] at sun.nio.ch.ChannelOutputStream#write():105 [Inlined code] 0.07% 56818 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():324 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectors():198 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeField():169 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#flush():156 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#flush():209 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#flush():123 [JIT compiled code] at org.apache.lucene.index.VectorValuesConsumer#flush():76 [Inlined code] 0.06% 52397 org.apache.lucene.util.BytesRefHash#findHash():381 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.06% 49488 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M.jfr Profiler for cpu at stackSize=12 [medium quantized vectors index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M.jfr is 2042.47 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 82967662 events (total: 82M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 32.34% 26M org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000931f31d0#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] 26.43% 21M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():155 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 4.46% 3M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():150 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 3.96% 3M jdk.incubator.vector.IntVector#reduceLanesTemplate():2840 [Inlined code] at jdk.incubator.vector.Int256Vector#reduceLanes():330 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody256():459 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():400 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():363 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():217 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():249 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 2.95% 2M org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 2.33% 1M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():145 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 1.81% 1M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] 1.69% 1M jdk.incubator.vector.IntVector#reduceLanesTemplate():2840 [Inlined code] at jdk.incubator.vector.Int256Vector#reduceLanes():330 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody256():459 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():400 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():363 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():217 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():249 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 1.61% 1M jdk.incubator.vector.FloatVector#fromArray0Template():3343 [Inlined code] at jdk.incubator.vector.Float256Vector#fromArray0():935 [Inlined code] at jdk.incubator.vector.FloatVector#fromArray():2856 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():154 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 1.41% 1M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] 1.20% 999100 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000931f31d0#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] 1.03% 854898 java.util.ArrayList#elementData():412 [Inlined code] at java.util.ArrayList#get():429 [Inlined code] at org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 1.00% 828295 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000931f31d0#call() [JIT compiled code] 0.76% 629952 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():140 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.70% 581567 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():155 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] 0.63% 521085 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.61% 503311 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():155 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] 0.55% 455481 org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.49% 402510 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():166 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] 0.44% 361481 jdk.incubator.vector.FloatVector#fromArray0Template():3343 [Inlined code] at jdk.incubator.vector.Float256Vector#fromArray0():935 [Inlined code] at jdk.incubator.vector.FloatVector#fromArray():2856 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():139 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.38% 316646 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#seek():177 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#graphSeek():389 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.30% 252489 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#apparentlyFirstQueuedIsExclusive():897 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$NonfairSync#readerShouldBlock():698 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():480 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] 0.28% 230211 jdk.incubator.vector.IntVector#reduceLanesTemplate():2840 [Inlined code] at jdk.incubator.vector.Int256Vector#reduceLanes():330 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody256():459 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():400 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():363 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():217 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():249 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] 0.26% 212804 org.apache.lucene.util.hnsw.OnHeapHnswGraph#nextNeighbor():189 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#graphNextNeighbor():401 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():326 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 0.24% 201624 jdk.incubator.vector.IntVector#lanewiseTemplate():798 [Inlined code] at jdk.incubator.vector.Int256Vector#lanewise():278 [Inlined code] at jdk.incubator.vector.Int256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.IntVector#add():1380 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody256():456 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():400 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():363 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():217 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():249 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.24% 198071 jdk.incubator.vector.IntVector#reduceLanesTemplate():2840 [Inlined code] at jdk.incubator.vector.Int256Vector#reduceLanes():330 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody256():459 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():400 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():363 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():217 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():249 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] 0.22% 184194 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():254 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000931f31d0#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.22% 181868 java.util.concurrent.locks.ReentrantReadWriteLock#readLock():248 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():40 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000931f31d0#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 0.20% 166415 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():150 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] 0.18% 153475 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] at sun.nio.ch.IOUtil#write():72 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():355 [Inlined code] at sun.nio.ch.FileChannelImpl#traceImplWrite():374 [Inlined code] at sun.nio.ch.FileChannelImpl#write():333 [Inlined code] at sun.nio.ch.ChannelOutputStream#writeFully():68 [Inlined code] at sun.nio.ch.ChannelOutputStream#write():105 [Inlined code] at org.apache.lucene.store.FSDirectory$FSIndexOutput$1#write():391 [JIT compiled code] at java.util.zip.CheckedOutputStream#write():73 [Inlined code] 0.18% 150813 org.apache.lucene.util.FixedBitSet#getAndSet():307 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000931f31d0#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.18% 147988 jdk.incubator.vector.IntVector#reduceLanesTemplate():2840 [Inlined code] at jdk.incubator.vector.Int256Vector#reduceLanes():330 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody256():459 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():400 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():363 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():217 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():249 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.17% 141636 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000931f31d0#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x00000000931f3728#run() [JIT compiled code] 0.17% 138117 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():249 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000931f31d0#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] 0.16% 132150 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#loss():290 [Inlined code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():345 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000931eefa8#merge() [Interpreted code] 0.16% 129933 java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000931f31d0#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 0.15% 120350 java.util.Arrays#fill():3144 [Inlined code] at org.apache.lucene.util.FixedBitSet#clear():174 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#prepareScratchState():374 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():290 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000931f31d0#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 0.14% 116884 org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#setScoringOrdinal():155 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.14% 114342 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():145 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] 0.13% 110556 jdk.incubator.vector.FloatVector#fromArray0Template():3343 [Inlined code] at jdk.incubator.vector.Float256Vector#fromArray0():935 [Inlined code] at jdk.incubator.vector.FloatVector#fromArray():2856 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():144 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.13% 108674 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():150 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] 0.13% 103893 org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#setScoringOrdinal():155 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.12% 98678 org.apache.lucene.util.quantization.OptimizedScalarQuantizer#optimizeIntervals():324 [JIT compiled code] at org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():219 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#vectorValue():643 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#writeVectorData():369 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter#mergeOneFlatVectorField():349 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#mergeOneField():422 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat$FieldsWriter#mergeOneField():129 [Interpreted code] at org.apache.lucene.codecs.KnnVectorsWriter#merge():127 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#mergeVectorValues():272 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000931eefa8#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] 0.12% 98110 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():140 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] 0.10% 85168 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.10% 84599 jdk.incubator.vector.IntVector#lanewiseTemplate():798 [Inlined code] at jdk.incubator.vector.Int256Vector#lanewise():278 [Inlined code] at jdk.incubator.vector.Int256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.IntVector#add():1380 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody256():456 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():400 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():363 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():217 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer#quantizedScore():249 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#score():194 [Inlined code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] 0.10% 84082 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 0.10% 81419 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#getState():165 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():475 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 0.09% 77149 org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.09% 76123 jdk.jfr.internal.JVM#emitEvent() [Native code] at jdk.jfr.internal.periodic.JVMEventTask#execute():54 [Inlined code] at jdk.jfr.internal.periodic.PeriodicTask#run():125 [Inlined code] at jdk.jfr.internal.periodic.PeriodicEvents#doPeriodic():145 [JIT compiled code] at jdk.jfr.internal.PlatformRecorder#periodicTask():502 [JIT compiled code] at jdk.jfr.internal.PlatformRecorder#lambda$startDiskMonitor$0():428 [Interpreted code] at jdk.jfr.internal.PlatformRecorder$$Lambda.0x000000009307aa58#run() [Interpreted code] at java.lang.Thread#runWith():1487 [Interpreted code] at java.lang.Thread#run():1474 [Interpreted code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M.jfr Profiler for heap at stackSize=1 [medium quantized vectors index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M.jfr is 2042.47 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 401376 events (total: 359625M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 21.09% 75847M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] 17.05% 61305M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] 16.86% 60640M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] 6.22% 22354M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] 5.90% 21213M java.nio.HeapByteBuffer#():75 [Inlined code] 5.77% 20750M perf.LineFileDocs#readVector():212 [Inlined code] 2.83% 10188M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] 2.63% 9457M perf.LineFileDocs#nextDoc():647 [JIT compiled code] 2.44% 8784M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] 1.66% 5954M perf.LineFileDocs#readDocs():176 [JIT compiled code] 1.48% 5310M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] 1.47% 5278M java.lang.StringUTF16#compress():212 [Inlined code] 0.97% 3481M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] 0.90% 3254M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] 0.88% 3153M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] 0.81% 2928M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] 0.73% 2629M java.lang.StringUTF16#compress():216 [Inlined code] 0.61% 2201M org.apache.lucene.util.TimSorter#():62 [Inlined code] 0.59% 2125M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] 0.54% 1940M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [Inlined code] 0.48% 1730M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] 0.45% 1603M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] 0.44% 1595M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] 0.43% 1539M java.util.TreeMap#keyIterator():1421 [Inlined code] 0.43% 1538M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] 0.42% 1511M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] 0.40% 1429M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] 0.37% 1329M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] 0.33% 1172M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] 0.32% 1165M org.apache.lucene.util.BytesRef#():71 [Inlined code] 0.28% 1013M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] 0.25% 901M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] 0.25% 893M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [Inlined code] 0.23% 844M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] 0.18% 642M org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] 0.17% 608M java.lang.invoke.DirectMethodHandle#allocateInstance():500 [Inlined code] 0.14% 511M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():320 [JIT compiled code] 0.14% 504M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():232 [JIT compiled code] 0.14% 498M org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] 0.13% 459M perf.LineFileDocs#nextDoc():642 [JIT compiled code] 0.11% 409M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():193 [JIT compiled code] 0.10% 367M org.apache.lucene.document.IntPoint#pack():114 [Inlined code] 0.10% 356M java.util.ArrayList#grow():240 [Inlined code] 0.10% 351M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():158 [Inlined code] 0.09% 339M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():306 [JIT compiled code] 0.09% 339M org.apache.lucene.index.IndexingChain$IntBlockAllocator#getIntBlock():1978 [Inlined code] 0.09% 311M java.util.ArrayDeque#():179 [Inlined code] 0.08% 290M org.apache.lucene.codecs.lucene104.PForUtil#encode():78 [JIT compiled code] 0.08% 290M java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquire():389 [JIT compiled code] 0.08% 285M org.apache.lucene.codecs.CompetitiveImpactAccumulator#getCompetitiveFreqNormPairs():108 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=2 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M.jfr Profiler for heap at stackSize=2 [medium quantized vectors index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M.jfr is 2042.47 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 401376 events (total: 359625M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=2 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 19.85% 71370M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [Inlined code] 16.94% 60914M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] 16.86% 60640M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] 6.22% 22354M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] 5.90% 21212M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] 5.77% 20750M perf.LineFileDocs#readVector():212 [Inlined code] at perf.LineFileDocs#readDocs():183 [JIT compiled code] 2.83% 10188M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] 2.63% 9457M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 2.44% 8784M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] 1.66% 5954M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.48% 5310M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] 1.47% 5278M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] 1.24% 4477M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] 0.97% 3481M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 0.90% 3254M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] 0.87% 3120M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] 0.81% 2928M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] 0.73% 2629M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] 0.61% 2201M org.apache.lucene.util.TimSorter#():62 [Inlined code] at org.apache.lucene.util.ArrayTimSorter#():34 [Inlined code] 0.54% 1940M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.48% 1730M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] 0.46% 1669M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] 0.45% 1603M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] 0.43% 1539M java.util.TreeMap#keyIterator():1421 [Inlined code] at java.util.TreeMap$KeySet#iterator():1434 [JIT compiled code] 0.42% 1511M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] 0.40% 1429M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] 0.37% 1329M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] 0.33% 1172M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] 0.29% 1056M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] 0.28% 1021M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] 0.28% 1013M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():349 [JIT compiled code] 0.27% 955M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] 0.25% 901M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.25% 893M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] 0.23% 844M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] 0.18% 642M org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [Inlined code] 0.15% 522M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [Inlined code] 0.14% 511M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():320 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.14% 496M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [Inlined code] 0.14% 486M java.lang.invoke.DirectMethodHandle#allocateInstance():500 [Inlined code] at java.lang.invoke.DirectMethodHandle$Holder#newInvokeSpecial() [Inlined code] 0.13% 459M perf.LineFileDocs#nextDoc():642 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 0.13% 455M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():464 [JIT compiled code] 0.11% 391M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [Inlined code] 0.10% 367M org.apache.lucene.document.IntPoint#pack():114 [Inlined code] at org.apache.lucene.document.IntPoint#setIntValues():72 [Inlined code] 0.10% 356M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] 0.10% 351M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():158 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] 0.10% 343M org.apache.lucene.util.quantization.OptimizedScalarQuantizer#scalarQuantize():232 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$QuantizedFloatVectorValues#quantize():691 [Inlined code] 0.09% 339M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():306 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.09% 339M org.apache.lucene.index.IndexingChain$IntBlockAllocator#getIntBlock():1978 [Inlined code] at org.apache.lucene.util.IntBlockPool#nextBuffer():153 [JIT compiled code] 0.09% 309M java.util.ArrayDeque#():179 [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput#():112 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M.jfr Profiler for heap at stackSize=4 [medium quantized vectors index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M.jfr is 2042.47 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 401376 events (total: 359625M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 15.40% 55380M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] 15.33% 55136M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] 10.89% 39160M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] 8.65% 31096M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 6.22% 22354M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():335 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] 5.77% 20750M perf.LineFileDocs#readVector():212 [Inlined code] at perf.LineFileDocs#readDocs():183 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 5.71% 20548M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] at perf.LineFileDocs#readVector():213 [Inlined code] at perf.LineFileDocs#readDocs():183 [JIT compiled code] 2.83% 10188M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 2.63% 9457M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 2.44% 8784M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 1.66% 5954M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.54% 5533M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] 1.53% 5504M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] 1.31% 4709M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] 1.23% 4434M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] 1.02% 3658M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] 0.87% 3120M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 0.81% 2928M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 0.72% 2595M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] 0.63% 2280M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] 0.61% 2201M org.apache.lucene.util.TimSorter#():62 [Inlined code] at org.apache.lucene.util.ArrayTimSorter#():34 [Inlined code] at org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [Inlined code] 0.54% 1940M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.51% 1817M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] 0.48% 1730M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] 0.46% 1669M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 0.46% 1663M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] 0.46% 1652M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] 0.45% 1603M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] 0.43% 1539M java.util.TreeMap#keyIterator():1421 [Inlined code] at java.util.TreeMap$KeySet#iterator():1434 [JIT compiled code] at java.util.TreeSet#iterator():187 [Inlined code] at org.apache.lucene.codecs.CompetitiveImpactAccumulator#addAll():82 [Inlined code] 0.42% 1511M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] 0.40% 1429M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] 0.37% 1329M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] 0.33% 1172M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] 0.31% 1112M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.28% 1021M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.27% 955M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.26% 929M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():349 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.23% 844M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] 0.19% 666M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():736 [JIT compiled code] 0.18% 656M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#initStreamSlices():161 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():198 [JIT compiled code] 0.18% 642M org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [Inlined code] at org.apache.lucene.index.MappedMultiFields$MappedMultiTermsEnum#postings():131 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] 0.17% 603M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput$$Lambda.0x0000000093184a30#apply() [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput#appendBlock():506 [JIT compiled code] 0.17% 599M org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] 0.16% 560M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():164 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.15% 522M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.14% 496M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 0.13% 459M perf.LineFileDocs#nextDoc():642 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.13% 454M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():464 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#startDoc():259 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():144 [JIT compiled code] 0.12% 424M java.lang.invoke.DirectMethodHandle#allocateInstance():500 [Inlined code] at java.lang.invoke.DirectMethodHandle$Holder#newInvokeSpecial() [Inlined code] at java.lang.invoke.Invokers$Holder#linkToTargetMethod() [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():166 [Inlined code] 0.10% 356M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=8 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M.jfr Profiler for heap at stackSize=8 [medium quantized vectors index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M.jfr is 2042.47 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 401376 events (total: 359625M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=8 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 10.89% 39160M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 8.88% 31947M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 8.83% 31745M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 8.65% 31096M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] 6.22% 22354M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():335 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$FieldWriter#addValue():568 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$FieldWriter#addValue():518 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():783 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] 5.77% 20750M perf.LineFileDocs#readVector():212 [Inlined code] at perf.LineFileDocs#readDocs():183 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 5.71% 20548M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] at perf.LineFileDocs#readVector():213 [Inlined code] at perf.LineFileDocs#readDocs():183 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 4.89% 17598M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] 4.85% 17424M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] 2.63% 9457M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 1.66% 5954M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.65% 5918M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 1.52% 5458M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 1.47% 5281M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] 1.31% 4709M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 1.23% 4434M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 1.23% 4416M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] 1.21% 4368M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] 1.17% 4198M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 1.02% 3658M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.77% 2768M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] 0.76% 2716M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] 0.72% 2595M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.61% 2201M org.apache.lucene.util.TimSorter#():62 [Inlined code] at org.apache.lucene.util.ArrayTimSorter#():34 [Inlined code] at org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [Inlined code] at org.apache.lucene.index.MappedMultiFields$MappedMultiTermsEnum#postings():131 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 0.53% 1899M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] 0.52% 1877M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] 0.46% 1663M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000931e6220#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] 0.46% 1649M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] 0.44% 1587M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000931e6220#merge() [Interpreted code] 0.43% 1533M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] 0.43% 1530M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] 0.42% 1511M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] 0.41% 1488M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] 0.39% 1415M java.util.TreeMap#keyIterator():1421 [Inlined code] at java.util.TreeMap$KeySet#iterator():1434 [JIT compiled code] at java.util.TreeSet#iterator():187 [Inlined code] at org.apache.lucene.codecs.CompetitiveImpactAccumulator#addAll():82 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():482 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#finishTerm():576 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():172 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 0.39% 1398M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000931e6220#merge() [Interpreted code] 0.38% 1382M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] 0.37% 1329M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] 0.34% 1238M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.34% 1212M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.32% 1154M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] 0.32% 1150M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] 0.31% 1112M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000931f31d0#call() [JIT compiled code] 0.27% 969M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.26% 929M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():349 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.25% 910M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():255 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initGraph():148 [Interpreted code] 0.24% 865M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():255 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initGraph():148 [Interpreted code] 0.22% 776M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():200 [JIT compiled code] 0.19% 688M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.19% 688M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#():49 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():330 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.19% 675M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M.jfr Profiler for heap at stackSize=12 [medium quantized vectors index (fast) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.int8-quantized.nd27.625M.jfr is 2042.47 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 401376 events (total: 359625M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 10.89% 39160M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 8.88% 31947M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000931f31d0#call() [JIT compiled code] 8.83% 31745M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000931f31d0#call() [JIT compiled code] 8.65% 31096M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000931f31d0#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 6.22% 22354M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():335 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$FieldWriter#addValue():568 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorsWriter$FieldWriter#addValue():518 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():783 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 5.77% 20750M perf.LineFileDocs#readVector():212 [Inlined code] at perf.LineFileDocs#readDocs():183 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 5.71% 20548M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] at perf.LineFileDocs#readVector():213 [Inlined code] at perf.LineFileDocs#readDocs():183 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 4.89% 17598M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 4.85% 17424M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 2.63% 9457M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 1.66% 5954M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.50% 5410M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000931f31d0#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 1.31% 4709M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 1.23% 4434M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000931f31d0#call() [JIT compiled code] 1.21% 4368M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000931e6220#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] 1.17% 4198M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 1.02% 3658M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000931f31d0#call() [JIT compiled code] 1.00% 3599M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 1.00% 3585M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.82% 2949M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [JIT compiled code] 0.77% 2768M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 0.76% 2716M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 0.72% 2595M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.61% 2201M org.apache.lucene.util.TimSorter#():62 [Inlined code] at org.apache.lucene.util.ArrayTimSorter#():34 [Inlined code] at org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [Inlined code] at org.apache.lucene.index.MappedMultiFields$MappedMultiTermsEnum#postings():131 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000931e6220#merge() [Interpreted code] 0.51% 1844M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.51% 1829M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.50% 1813M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.47% 1682M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.46% 1663M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000931e6220#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] at org.apache.lucene.index.IndexWriter#merge():4785 [Interpreted code] at org.apache.lucene.index.IndexWriter$IndexWriterMergeSource#merge():6590 [Interpreted code] at org.apache.lucene.index.ConcurrentMergeScheduler#doMerge():661 [Interpreted code] 0.46% 1649M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [Inlined code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 0.44% 1587M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000931e6220#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] at org.apache.lucene.index.IndexWriter#merge():4785 [Interpreted code] 0.42% 1511M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 0.41% 1488M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 0.39% 1398M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000931e6220#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] at org.apache.lucene.index.IndexWriter#merge():4785 [Interpreted code] 0.38% 1382M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 0.37% 1329M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 0.34% 1212M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.33% 1193M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#postUpdate():404 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] 0.32% 1158M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000931f31d0#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.32% 1154M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.32% 1150M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000931e6220#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] 0.30% 1096M org.apache.lucene.codecs.lucene104.OffHeapScalarQuantizedVectorValues#getCorrectiveTerms():150 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104ScalarQuantizedVectorScorer$ScalarQuantizedVectorScorerSupplier$1#setScoringOrdinal():214 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():369 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x00000000931f31d0#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] at org.apache.lucene.search.TaskExecutor$$Lambda.0x00000000931f3728#run() [JIT compiled code] 0.28% 1005M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] 0.27% 969M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.27% 967M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] 0.26% 929M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():349 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.25% 910M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():255 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initGraph():148 [Interpreted code] at org.apache.lucene.util.hnsw.ConcurrentHnswMerger#createBuilder():81 [Interpreted code] at org.apache.lucene.util.hnsw.IncrementalHnswGraphMerger#merge():212 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#buildAndWriteGraph():485 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#lambda$mergeOneField$0():440 [Interpreted code] 0.24% 865M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#copyGraphStructure():255 [JIT compiled code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initializeFromGraph():188 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#fromGraph():122 [Interpreted code] at org.apache.lucene.util.hnsw.InitializedHnswGraphBuilder#initGraph():148 [Interpreted code] at org.apache.lucene.util.hnsw.ConcurrentHnswMerger#createBuilder():81 [Interpreted code] at org.apache.lucene.util.hnsw.IncrementalHnswGraphMerger#merge():212 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#buildAndWriteGraph():485 [Interpreted code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter#lambda$mergeOneField$0():440 [Interpreted code] 0.22% 776M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():200 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] 0.21% 753M java.util.TreeMap#keyIterator():1421 [Inlined code] at java.util.TreeMap$KeySet#iterator():1434 [JIT compiled code] at java.util.TreeSet#iterator():187 [Inlined code] at org.apache.lucene.codecs.CompetitiveImpactAccumulator#addAll():82 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():482 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#finishTerm():576 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():172 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] move log to /l/logs.nightly/2026.05.15.14.49.32/fastIndexMediumDocsWithVectorsQuantized.log move vmstat log to /l/logs.nightly/2026.05.15.14.49.32/fastIndexMediumDocsWithVectorsQuantized.vmstat.log move top log to /l/logs.nightly/2026.05.15.14.49.32/fastIndexMediumDocsWithVectorsQuantized.top.log [2026-05-16 06:49:14.609115] took 6942.0 sec [2026-05-16 06:49:14.613157] medIndexVectorsAtClose None [2026-05-16 06:49:14.623211] build nrt medium index /l/indices/wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M: now create cd /l/trunk.nightly/lucene/benchmark NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log /l/logs.nightly/nightly.wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M.log run: ['/usr/lib/jvm/java-25-openjdk/bin/java', '--add-modules', 'jdk.incubator.vector', '-Xmx32g', '-Xms32g', '-server', '-XX:+UseParallelGC', '-Djava.io.tmpdir=/l/tmp', '--enable-native-access=ALL-UNNAMED', '-classpath', '/l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build', '-XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M.jfr', '-XX:+UnlockDiagnosticVMOptions', '-XX:+DebugNonSafepoints', 'perf.Indexer', '-dirImpl', 'MMapDirectory', '-indexPath', '/l/indices/wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M', '-analyzer', 'StandardAnalyzerNoStopWords', '-lineDocsFile', '/l/data/enwiki-20110115-lines-1k-fixed-with-random-labels.bin', '-docCountLimit', '27625038', '-threadCount', '36', '-dvfields', '-useCMS', '-ramBufferMB', '2048', '-maxBufferedDocs', '-1', '-postingsFormat', 'Lucene104', '-waitForMerges', '-mergePolicy', 'TieredMergePolicy', '-idFieldPostingsFormat', 'Lucene104', '-idFieldPostingsFormat', 'Lucene104', '-waitForCommit', '-hnswThreadsPerMerge', '1', '-hnswThreadPoolCount', '1'], cwd=/l/trunk.nightly/lucene/benchmark vmstatLogFile=/l/logs.nightly/nightly.vmstat.log topLogFile=/l/logs.nightly/nightly.top.log run vmstat: /usr/sbin/vmstat --active --wide --timestamp --unit M 1 > /l/logs.nightly/nightly.vmstat.log 2>&1 & run /usr/sbin/ps -eo pid,%cpu,%mem,bsdtime,etime,start,args --cols=120 --sort=-%cpu | head -10 >> /l/logs.nightly/nightly.top.log 2>&1 to /l/logs.nightly/nightly.top.log now kill vmstat: pid=2606353 Profiler summary for /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M.jfr Version: 2.1 Chunks: 18 Start: 2026-05-16 10:49:14 (UTC) Duration: 147 s Event Type Count Size (bytes) ============================================================= jdk.FileWrite 4646672 111187957 jdk.CPUTimeSample 3563853 62583561 jdk.FileRead 796627 18876532 jdk.ObjectAllocationInNewTLAB 109900 2147460 jdk.ObjectAllocationOutsideTLAB 37444 655644 jdk.BooleanFlag 12456 395186 jdk.Compilation 7125 184295 jdk.CPULoad 2627 51938 jdk.UnsignedIntFlag 1116 38588 jdk.IntFlag 1008 36206 jdk.Checkpoint 918 31167803 jdk.StringFlag 810 30453 jdk.GarbageCollection 49 1161 jdk.CPUInformation 18 27031 jdk.GCConfiguration 18 463 jdk.JVMInformation 18 20083 jdk.Metadata 18 1989482 jdk.ActiveRecording 0 0 jdk.ActiveSetting 0 0 jdk.AllocationRequiringGC 0 0 jdk.BooleanFlagChanged 0 0 jdk.CPUTimeSamplesLost 0 0 jdk.CPUTimeStampCounter 0 0 jdk.ClassDefine 0 0 jdk.ClassLoad 0 0 jdk.ClassLoaderStatistics 0 0 jdk.ClassLoadingStatistics 0 0 jdk.ClassRedefinition 0 0 jdk.ClassUnload 0 0 jdk.CodeCacheConfiguration 0 0 jdk.CodeCacheFull 0 0 jdk.CodeCacheStatistics 0 0 jdk.CompilationFailure 0 0 jdk.CompilerConfiguration 0 0 jdk.CompilerInlining 0 0 jdk.CompilerPhase 0 0 jdk.CompilerQueueUtilization 0 0 jdk.CompilerStatistics 0 0 jdk.ConcurrentModeFailure 0 0 jdk.ContainerCPUThrottling 0 0 jdk.ContainerCPUUsage 0 0 jdk.ContainerConfiguration 0 0 jdk.ContainerIOUsage 0 0 jdk.ContainerMemoryUsage 0 0 jdk.ContinuationFreeze 0 0 jdk.ContinuationFreezeFast 0 0 jdk.ContinuationFreezeSlow 0 0 jdk.ContinuationThaw 0 0 jdk.ContinuationThawFast 0 0 jdk.ContinuationThawSlow 0 0 jdk.DataLoss 0 0 jdk.Deoptimization 0 0 jdk.DeprecatedInvocation 0 0 jdk.Deserialization 0 0 jdk.DirectBufferStatistics 0 0 jdk.DoubleFlag 0 0 jdk.DoubleFlagChanged 0 0 jdk.DumpReason 0 0 jdk.EvacuationFailed 0 0 jdk.EvacuationInformation 0 0 jdk.ExceptionStatistics 0 0 jdk.ExecuteVMOperation 0 0 jdk.ExecutionSample 0 0 jdk.FileForce 0 0 jdk.FinalizerStatistics 0 0 jdk.Flush 0 0 jdk.G1AdaptiveIHOP 0 0 jdk.G1BasicIHOP 0 0 jdk.G1EvacuationOldStatistics 0 0 jdk.G1EvacuationYoungStatistics 0 0 jdk.G1GarbageCollection 0 0 jdk.G1HeapRegionInformation 0 0 jdk.G1HeapRegionTypeChange 0 0 jdk.G1HeapSummary 0 0 jdk.G1MMU 0 0 jdk.GCCPUTime 0 0 jdk.GCHeapConfiguration 0 0 jdk.GCHeapMemoryPoolUsage 0 0 jdk.GCHeapMemoryUsage 0 0 jdk.GCHeapSummary 0 0 jdk.GCPhaseConcurrent 0 0 jdk.GCPhaseConcurrentLevel1 0 0 jdk.GCPhaseConcurrentLevel2 0 0 jdk.GCPhaseParallel 0 0 jdk.GCPhasePause 0 0 jdk.GCPhasePauseLevel1 0 0 jdk.GCPhasePauseLevel2 0 0 jdk.GCPhasePauseLevel3 0 0 jdk.GCPhasePauseLevel4 0 0 jdk.GCReferenceStatistics 0 0 jdk.GCSurvivorConfiguration 0 0 jdk.GCTLABConfiguration 0 0 jdk.HeapDump 0 0 jdk.InitialEnvironmentVariable 0 0 jdk.InitialSecurityProperty 0 0 jdk.InitialSystemProperty 0 0 jdk.IntFlagChanged 0 0 jdk.JITRestart 0 0 jdk.JavaAgent 0 0 jdk.JavaErrorThrow 0 0 jdk.JavaExceptionThrow 0 0 jdk.JavaMonitorDeflate 0 0 jdk.JavaMonitorEnter 0 0 jdk.JavaMonitorInflate 0 0 jdk.JavaMonitorNotify 0 0 jdk.JavaMonitorStatistics 0 0 jdk.JavaMonitorWait 0 0 jdk.JavaThreadStatistics 0 0 jdk.LongFlag 0 0 jdk.LongFlagChanged 0 0 jdk.MetaspaceAllocationFailure 0 0 jdk.MetaspaceChunkFreeListSummary 0 0 jdk.MetaspaceGCThreshold 0 0 jdk.MetaspaceOOM 0 0 jdk.MetaspaceSummary 0 0 jdk.MethodTiming 0 0 jdk.MethodTrace 0 0 jdk.ModuleExport 0 0 jdk.ModuleRequire 0 0 jdk.NativeAgent 0 0 jdk.NativeLibrary 0 0 jdk.NativeLibraryLoad 0 0 jdk.NativeLibraryUnload 0 0 jdk.NativeMemoryUsage 0 0 jdk.NativeMemoryUsageTotal 0 0 jdk.NativeMethodSample 0 0 jdk.NetworkUtilization 0 0 jdk.OSInformation 0 0 jdk.ObjectAllocationSample 0 0 jdk.ObjectCount 0 0 jdk.ObjectCountAfterGC 0 0 jdk.OldGarbageCollection 0 0 jdk.OldObjectSample 0 0 jdk.PSHeapSummary 0 0 jdk.ParallelOldGarbageCollection 0 0 jdk.PhysicalMemory 0 0 jdk.ProcessStart 0 0 jdk.PromoteObjectInNewPLAB 0 0 jdk.PromoteObjectOutsidePLAB 0 0 jdk.PromotionFailed 0 0 jdk.RedefineClasses 0 0 jdk.ReservedStackActivation 0 0 jdk.ResidentSetSize 0 0 jdk.RetransformClasses 0 0 jdk.SafepointBegin 0 0 jdk.SafepointEnd 0 0 jdk.SafepointLatency 0 0 jdk.SafepointStateSynchronization 0 0 jdk.SecurityPropertyModification 0 0 jdk.SecurityProviderService 0 0 jdk.SerializationMisdeclaration 0 0 jdk.ShenandoahEvacuationInformation 0 0 jdk.ShenandoahHeapRegionInformation 0 0 jdk.ShenandoahHeapRegionStateChange 0 0 jdk.Shutdown 0 0 jdk.SocketRead 0 0 jdk.SocketWrite 0 0 jdk.StringFlagChanged 0 0 jdk.StringTableStatistics 0 0 jdk.SwapSpace 0 0 jdk.SymbolTableStatistics 0 0 jdk.SyncOnValueBasedClass 0 0 jdk.SystemGC 0 0 jdk.SystemProcess 0 0 jdk.TLSHandshake 0 0 jdk.TenuringDistribution 0 0 jdk.ThreadAllocationStatistics 0 0 jdk.ThreadCPULoad 0 0 jdk.ThreadContextSwitchRate 0 0 jdk.ThreadDump 0 0 jdk.ThreadEnd 0 0 jdk.ThreadPark 0 0 jdk.ThreadSleep 0 0 jdk.ThreadStart 0 0 jdk.UnsignedIntFlagChanged 0 0 jdk.UnsignedLongFlag 0 0 jdk.UnsignedLongFlagChanged 0 0 jdk.VirtualThreadEnd 0 0 jdk.VirtualThreadPinned 0 0 jdk.VirtualThreadStart 0 0 jdk.VirtualThreadSubmitFailed 0 0 jdk.VirtualizationInformation 0 0 jdk.X509Certificate 0 0 jdk.X509Validation 0 0 jdk.YoungGarbageCollection 0 0 jdk.YoungGenerationConfiguration 0 0 jdk.ZAllocationStall 0 0 jdk.ZOldGarbageCollection 0 0 jdk.ZPageAllocation 0 0 jdk.ZRelocationSet 0 0 jdk.ZRelocationSetGroup 0 0 jdk.ZStatisticsCounter 0 0 jdk.ZStatisticsSampler 0 0 jdk.ZThreadPhase 0 0 jdk.ZUncommit 0 0 jdk.ZYoungGarbageCollection 0 0 profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M.jfr Profiler for cpu at stackSize=1 [nrt medium index /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M.jfr is 218.77 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 3563853 events (total: 3M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 5.67% 202196 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] 5.06% 180273 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] 4.72% 168391 java.lang.Character#codePointAtImpl():9670 [Inlined code] 4.12% 146965 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] 3.80% 135310 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] 3.23% 115124 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] 2.67% 95082 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] 1.97% 70162 java.lang.Integer#rotateLeft():1650 [Inlined code] 1.90% 67721 java.lang.Character#isHighSurrogate():9464 [Inlined code] 1.86% 66265 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1019 [JIT compiled code] 1.69% 60175 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1022 [JIT compiled code] 1.60% 57121 java.lang.Character#toChars():9872 [Inlined code] 1.60% 56980 org.apache.lucene.util.BytesRefHash#findHash():381 [Inlined code] 1.50% 53428 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#copyBuffer():47 [Inlined code] 1.42% 50731 org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] 1.28% 45775 org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] 1.17% 41660 org.apache.lucene.analysis.CharacterUtils#toLowerCase():57 [Inlined code] 1.13% 40326 org.apache.lucene.util.BytesRefBlockPool#fillBytesRef():65 [Inlined code] 1.12% 40055 org.apache.lucene.index.ByteSliceReader#readByte():74 [Inlined code] 1.09% 38896 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] 1.06% 37683 org.apache.lucene.util.ByteBlockPool#getBuffer():358 [Inlined code] 1.00% 35560 java.lang.Character#codePointAt():9662 [Inlined code] 0.88% 31309 org.apache.lucene.analysis.CharArraySet#contains():89 [Inlined code] 0.87% 30988 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():148 [Inlined code] 0.80% 28430 org.apache.lucene.index.TermsHashPerField#writeByte():222 [Inlined code] 0.75% 26834 java.lang.ThreadLocal#get():171 [Inlined code] 0.73% 26006 org.apache.lucene.util.BytesRefBuilder#growNoCopy():67 [Inlined code] 0.72% 25681 org.apache.lucene.document.Field#setIntValue():372 [Inlined code] 0.70% 24987 org.apache.lucene.analysis.standard.StandardTokenizerImpl#zzCMap():742 [Inlined code] 0.68% 24389 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] 0.64% 22730 java.lang.Character#toLowerCase():11251 [Inlined code] 0.58% 20779 jdk.internal.util.ArraysSupport#mismatch():564 [Inlined code] 0.51% 18334 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():143 [Inlined code] 0.51% 18266 org.apache.lucene.store.DataOutput#writeVInt():203 [Inlined code] 0.51% 18223 jdk.internal.misc.ScopedMemoryAccess#getByteInternal():1100 [Inlined code] 0.51% 18129 java.lang.Character#codePointAt():9665 [Inlined code] 0.49% 17514 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] 0.47% 16756 org.apache.lucene.codecs.lucene104.PForUtil#encode():58 [JIT compiled code] 0.44% 15842 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():131 [JIT compiled code] 0.43% 15426 org.apache.lucene.index.TermsHashPerField#initReader():100 [Inlined code] 0.42% 15061 jdk.internal.util.ArraysSupport#mismatch():563 [Inlined code] 0.42% 15036 org.apache.lucene.index.DocIDMerger$Sub#nextMappedDoc():60 [Inlined code] 0.42% 14901 org.apache.lucene.index.TermsHashPerField#positionStreamSlice():214 [Inlined code] 0.41% 14527 org.apache.lucene.util.AttributeSource#clearAttributes():274 [Inlined code] 0.40% 14286 org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] 0.40% 14284 org.apache.lucene.codecs.lucene104.ForUtil#encode():154 [JIT compiled code] 0.40% 14131 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1040 [JIT compiled code] 0.37% 13320 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():170 [JIT compiled code] 0.37% 13228 org.apache.lucene.util.AttributeSource#clearAttributes():273 [Inlined code] 0.36% 12712 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():173 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=2 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M.jfr Profiler for cpu at stackSize=2 [nrt medium index /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M.jfr is 218.77 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 3563853 events (total: 3M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=2 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 5.06% 180273 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 4.72% 168391 java.lang.Character#codePointAtImpl():9670 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] 4.12% 146819 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] 3.80% 135308 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] 3.22% 114686 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 2.67% 95080 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] 1.97% 70162 java.lang.Integer#rotateLeft():1650 [Inlined code] at org.apache.lucene.util.StringHelper#murmurhash3_x86_32():175 [Inlined code] 1.89% 67180 java.lang.Character#isHighSurrogate():9464 [Inlined code] at java.lang.Character#codePointAtImpl():9671 [Inlined code] 1.86% 66250 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1019 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] 1.69% 60174 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1022 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] 1.61% 57264 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] 1.60% 57121 java.lang.Character#toChars():9872 [Inlined code] at org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] 1.60% 56980 org.apache.lucene.util.BytesRefHash#findHash():381 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] 1.50% 53428 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#copyBuffer():47 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getText():709 [Inlined code] 1.45% 51599 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] 1.42% 50731 org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] 1.34% 47858 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [JIT compiled code] 1.28% 45775 org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] 1.28% 45475 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] 1.17% 41660 org.apache.lucene.analysis.CharacterUtils#toLowerCase():57 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] 1.12% 40055 org.apache.lucene.index.ByteSliceReader#readByte():74 [Inlined code] at org.apache.lucene.store.DataInput#readVInt():107 [Inlined code] 1.08% 38578 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.88% 31309 org.apache.lucene.analysis.CharArraySet#contains():89 [Inlined code] at org.apache.lucene.analysis.StopFilter#accept():97 [Inlined code] 0.87% 30987 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():148 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():148 [JIT compiled code] 0.79% 27981 java.lang.Character#codePointAt():9662 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] 0.74% 26445 java.lang.ThreadLocal#get():171 [Inlined code] at perf.LineFileDocs#reserve():570 [Inlined code] 0.72% 25681 org.apache.lucene.document.Field#setIntValue():372 [Inlined code] at org.apache.lucene.document.IntField#setIntValue():97 [Inlined code] 0.72% 25531 org.apache.lucene.util.BytesRefBuilder#growNoCopy():67 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():147 [JIT compiled code] 0.70% 24987 org.apache.lucene.analysis.standard.StandardTokenizerImpl#zzCMap():742 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] 0.68% 24384 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] 0.63% 22502 java.lang.Character#toLowerCase():11251 [Inlined code] at org.apache.lucene.analysis.CharacterUtils#toLowerCase():59 [Inlined code] 0.58% 20815 org.apache.lucene.util.BytesRefBlockPool#fillBytesRef():65 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum#next():194 [Inlined code] 0.54% 19376 org.apache.lucene.util.BytesRefBlockPool#fillBytesRef():65 [Inlined code] at org.apache.lucene.util.BytesRefHash$1#get():266 [Inlined code] 0.54% 19073 org.apache.lucene.util.ByteBlockPool#getBuffer():358 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():223 [Inlined code] 0.51% 18334 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():143 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():148 [JIT compiled code] 0.51% 18223 jdk.internal.misc.ScopedMemoryAccess#getByteInternal():1100 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getByte():1088 [Inlined code] 0.50% 17941 java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] 0.49% 17446 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] 0.49% 17339 jdk.internal.util.ArraysSupport#mismatch():564 [Inlined code] at java.util.Arrays#equals():2707 [Inlined code] 0.44% 15825 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():131 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 0.43% 15425 org.apache.lucene.util.ByteBlockPool#getBuffer():358 [Inlined code] at org.apache.lucene.util.BytesRefBlockPool#equals():156 [Inlined code] 0.42% 15037 org.apache.lucene.index.TermsHashPerField#initReader():100 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum#reset():435 [Inlined code] 0.42% 15026 org.apache.lucene.index.DocIDMerger$Sub#nextMappedDoc():60 [Inlined code] at org.apache.lucene.index.DocIDMerger$SequentialDocIDMerger#next():123 [Inlined code] 0.42% 14901 org.apache.lucene.index.TermsHashPerField#positionStreamSlice():214 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] 0.41% 14527 org.apache.lucene.util.AttributeSource#clearAttributes():274 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():153 [Inlined code] 0.40% 14286 org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] 0.40% 14122 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1040 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] 0.39% 13917 org.apache.lucene.index.TermsHashPerField#writeByte():222 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [JIT compiled code] 0.37% 13319 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():170 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] 0.37% 13216 org.apache.lucene.util.AttributeSource#clearAttributes():273 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():153 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M.jfr Profiler for cpu at stackSize=4 [nrt medium index /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M.jfr is 218.77 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 3563853 events (total: 3M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 4.52% 161072 java.lang.Character#codePointAtImpl():9670 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] 4.12% 146742 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] 3.64% 129562 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 2.66% 94676 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] 2.62% 93405 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] 2.42% 86389 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 1.95% 69330 java.lang.Integer#rotateLeft():1650 [Inlined code] at org.apache.lucene.util.StringHelper#murmurhash3_x86_32():175 [Inlined code] at org.apache.lucene.util.BytesRefHash#doHash():473 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():332 [JIT compiled code] 1.86% 66247 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1019 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] 1.84% 65424 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] 1.79% 63811 java.lang.Character#isHighSurrogate():9464 [Inlined code] at java.lang.Character#codePointAtImpl():9671 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] 1.69% 60174 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1022 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] 1.60% 57121 java.lang.Character#toChars():9872 [Inlined code] at org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] 1.59% 56530 org.apache.lucene.util.BytesRefHash#findHash():381 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 1.50% 53428 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#copyBuffer():47 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getText():709 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():165 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] 1.42% 50730 org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] 1.33% 47489 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] 1.33% 47450 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] 1.28% 45775 org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] 1.25% 44372 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] 1.17% 41660 org.apache.lucene.analysis.CharacterUtils#toLowerCase():57 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] 1.15% 40970 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] 1.14% 40767 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] 0.88% 31307 org.apache.lucene.analysis.CharArraySet#contains():89 [Inlined code] at org.apache.lucene.analysis.StopFilter#accept():97 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():52 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] 0.87% 30987 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():148 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():148 [JIT compiled code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.78% 27719 java.lang.Character#codePointAt():9662 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] 0.74% 26344 java.lang.ThreadLocal#get():171 [Inlined code] at perf.LineFileDocs#reserve():570 [Inlined code] at perf.LineFileDocs#nextDoc():610 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 0.72% 25557 org.apache.lucene.document.Field#setIntValue():372 [Inlined code] at org.apache.lucene.document.IntField#setIntValue():97 [Inlined code] at perf.LineFileDocs#nextDoc():744 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 0.72% 25531 org.apache.lucene.util.BytesRefBuilder#growNoCopy():67 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():147 [JIT compiled code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.70% 24987 org.apache.lucene.analysis.standard.StandardTokenizerImpl#zzCMap():742 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] 0.68% 24384 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.68% 24363 org.apache.lucene.index.ByteSliceReader#readByte():74 [Inlined code] at org.apache.lucene.store.DataInput#readVInt():107 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum#nextPosition():501 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():148 [JIT compiled code] 0.63% 22502 java.lang.Character#toLowerCase():11251 [Inlined code] at org.apache.lucene.analysis.CharacterUtils#toLowerCase():59 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] 0.57% 20207 org.apache.lucene.util.BytesRefBlockPool#fillBytesRef():65 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum#next():194 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():381 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] 0.55% 19498 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 0.53% 18888 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] 0.51% 18334 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():143 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():148 [JIT compiled code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.51% 18223 jdk.internal.misc.ScopedMemoryAccess#getByteInternal():1100 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getByte():1088 [Inlined code] at java.lang.invoke.VarHandleSegmentAsBytes#get():56 [Inlined code] at java.lang.invoke.VarHandleSegmentAsBytes#get():49 [Inlined code] 0.50% 17652 java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] 0.49% 17446 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] 0.49% 17338 jdk.internal.util.ArraysSupport#mismatch():564 [Inlined code] at java.util.Arrays#equals():2707 [Inlined code] at org.apache.lucene.util.BytesRefBlockPool#equals():169 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] 0.43% 15423 org.apache.lucene.util.ByteBlockPool#getBuffer():358 [Inlined code] at org.apache.lucene.util.BytesRefBlockPool#equals():156 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] 0.43% 15249 org.apache.lucene.util.BytesRefBlockPool#fillBytesRef():65 [Inlined code] at org.apache.lucene.util.BytesRefHash$1#get():266 [Inlined code] at org.apache.lucene.util.StringSorter$MSBStringRadixSorter#byteAt():77 [Inlined code] at org.apache.lucene.util.MSBRadixSorter#getBucket():207 [Inlined code] 0.42% 14977 org.apache.lucene.index.TermsHashPerField#initReader():100 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum#reset():435 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum#postings():250 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] 0.41% 14527 org.apache.lucene.util.AttributeSource#clearAttributes():274 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():153 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] 0.40% 14121 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1040 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] 0.39% 13783 org.apache.lucene.index.TermsHashPerField#writeByte():222 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] 0.37% 13309 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():170 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.37% 13216 org.apache.lucene.util.AttributeSource#clearAttributes():273 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():153 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] 0.36% 12712 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():173 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.35% 12618 org.apache.lucene.index.DocIDMerger$Sub#nextMappedDoc():60 [Inlined code] at org.apache.lucene.index.DocIDMerger$SequentialDocIDMerger#next():123 [Inlined code] at org.apache.lucene.index.MappingMultiPostingsEnum#nextDoc():100 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():131 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=8 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M.jfr Profiler for cpu at stackSize=8 [nrt medium index /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M.jfr is 218.77 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 3563853 events (total: 3M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=8 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 3.08% 109678 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 2.43% 86462 java.lang.Character#codePointAtImpl():9670 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 2.17% 77392 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] 2.09% 74610 java.lang.Character#codePointAtImpl():9670 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] 1.99% 71058 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] 1.94% 69012 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 1.86% 66314 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] 1.84% 65424 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000001d1e6f58#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] 1.81% 64338 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 1.79% 63811 java.lang.Character#isHighSurrogate():9464 [Inlined code] at java.lang.Character#codePointAtImpl():9671 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] 1.33% 47487 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 1.25% 44372 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 1.21% 42949 org.apache.lucene.util.BytesRefHash#findHash():381 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 1.15% 40957 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 1.14% 40767 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 1.07% 38160 java.lang.Integer#rotateLeft():1650 [Inlined code] at org.apache.lucene.util.StringHelper#murmurhash3_x86_32():175 [Inlined code] at org.apache.lucene.util.BytesRefHash#doHash():473 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():332 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 0.94% 33544 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1019 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] 0.86% 30812 java.lang.Integer#rotateLeft():1650 [Inlined code] at org.apache.lucene.util.StringHelper#murmurhash3_x86_32():175 [Inlined code] at org.apache.lucene.util.BytesRefHash#doHash():473 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():332 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] 0.81% 28698 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1022 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] 0.80% 28434 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1019 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] 0.78% 27695 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1022 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] 0.77% 27385 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#copyBuffer():47 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getText():709 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():165 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 0.77% 27341 java.lang.Character#toChars():9872 [Inlined code] at org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] 0.74% 26344 java.lang.ThreadLocal#get():171 [Inlined code] at perf.LineFileDocs#reserve():570 [Inlined code] at perf.LineFileDocs#nextDoc():610 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.74% 26229 java.lang.Character#toChars():9872 [Inlined code] at org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] 0.73% 26013 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#copyBuffer():47 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getText():709 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():165 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] 0.72% 25557 org.apache.lucene.document.Field#setIntValue():372 [Inlined code] at org.apache.lucene.document.IntField#setIntValue():97 [Inlined code] at perf.LineFileDocs#nextDoc():744 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.71% 25474 org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.71% 25395 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] 0.65% 23162 org.apache.lucene.index.ByteSliceReader#readByte():74 [Inlined code] at org.apache.lucene.store.DataInput#readVInt():107 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum#nextPosition():501 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():148 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] 0.64% 22651 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.63% 22313 org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.62% 22055 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] 0.61% 21658 org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.58% 20502 org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.55% 19698 org.apache.lucene.analysis.CharacterUtils#toLowerCase():57 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.54% 19240 org.apache.lucene.analysis.CharacterUtils#toLowerCase():57 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.49% 17589 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [Inlined code] 0.49% 17446 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] at sun.nio.ch.IOUtil#write():72 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():355 [Inlined code] at sun.nio.ch.FileChannelImpl#traceImplWrite():374 [Inlined code] at sun.nio.ch.FileChannelImpl#write():333 [Inlined code] 0.48% 16929 org.apache.lucene.analysis.CharArraySet#contains():89 [Inlined code] at org.apache.lucene.analysis.StopFilter#accept():97 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():52 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.45% 16185 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [Inlined code] 0.43% 15484 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.42% 15143 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.42% 14813 org.apache.lucene.util.BytesRefBlockPool#fillBytesRef():65 [Inlined code] at org.apache.lucene.util.BytesRefHash$1#get():266 [Inlined code] at org.apache.lucene.util.StringSorter$MSBStringRadixSorter#byteAt():77 [Inlined code] at org.apache.lucene.util.MSBRadixSorter#getBucket():207 [Inlined code] at org.apache.lucene.util.BytesRefHash$1$1#buildHistogram():223 [Inlined code] at org.apache.lucene.util.MSBRadixSorter#computeCommonPrefixLengthAndBuildHistogramPart2():267 [Inlined code] at org.apache.lucene.util.MSBRadixSorter#computeCommonPrefixLengthAndBuildHistogramPart1():257 [Inlined code] at org.apache.lucene.util.MSBRadixSorter#computeCommonPrefixLengthAndBuildHistogram():220 [JIT compiled code] 0.41% 14472 jdk.internal.misc.ScopedMemoryAccess#getByteInternal():1100 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getByte():1088 [Inlined code] at java.lang.invoke.VarHandleSegmentAsBytes#get():56 [Inlined code] at java.lang.invoke.VarHandleSegmentAsBytes#get():49 [Inlined code] at java.lang.invoke.VarHandleGuards#guard_LJ_I():251 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#get():694 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput$SingleSegmentImpl#readByte():754 [Inlined code] at org.apache.lucene.codecs.lucene90.Lucene90NormsProducer$3#longValue():396 [Inlined code] 0.41% 14444 org.apache.lucene.index.TermsHashPerField#initReader():100 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum#reset():435 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum#postings():250 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] 0.40% 14415 java.lang.Character#codePointAt():9662 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 0.40% 14167 org.apache.lucene.analysis.standard.StandardTokenizerImpl#zzCMap():742 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 0.39% 13824 org.apache.lucene.analysis.CharArraySet#contains():89 [Inlined code] at org.apache.lucene.analysis.StopFilter#accept():97 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():52 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.39% 13779 org.apache.lucene.index.TermsHashPerField#writeByte():222 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M.jfr Profiler for cpu at stackSize=12 [nrt medium index /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M.jfr is 218.77 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 3563853 events (total: 3M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 3.02% 107649 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 2.13% 75955 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 2.01% 71798 java.lang.Character#codePointAtImpl():9670 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 1.96% 69737 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 1.94% 69007 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] at perf.IndexThreads$IndexThread#run():419 [JIT compiled code] 1.84% 65424 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000001d1e6f58#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] at org.apache.lucene.index.IndexWriter#merge():4785 [Interpreted code] at org.apache.lucene.index.IndexWriter$IndexWriterMergeSource#merge():6590 [Interpreted code] 1.83% 65054 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 1.81% 64338 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] at perf.IndexThreads$IndexThread#run():419 [JIT compiled code] 1.74% 61998 java.lang.Character#codePointAtImpl():9670 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 1.23% 43926 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 1.19% 42269 org.apache.lucene.util.BytesRefHash#findHash():381 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 1.18% 42004 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 1.07% 37999 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 1.06% 37802 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.92% 32932 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1019 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 0.91% 32438 java.lang.Integer#rotateLeft():1650 [Inlined code] at org.apache.lucene.util.StringHelper#murmurhash3_x86_32():175 [Inlined code] at org.apache.lucene.util.BytesRefHash#doHash():473 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():332 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.82% 29152 java.lang.Character#isHighSurrogate():9464 [Inlined code] at java.lang.Character#codePointAtImpl():9671 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.79% 28221 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1022 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 0.78% 27927 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1019 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 0.76% 27203 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1022 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 0.75% 26833 java.lang.Character#toChars():9872 [Inlined code] at org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 0.74% 26354 java.lang.Integer#rotateLeft():1650 [Inlined code] at org.apache.lucene.util.StringHelper#murmurhash3_x86_32():175 [Inlined code] at org.apache.lucene.util.BytesRefHash#doHash():473 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():332 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.74% 26344 java.lang.ThreadLocal#get():171 [Inlined code] at perf.LineFileDocs#reserve():570 [Inlined code] at perf.LineFileDocs#nextDoc():610 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.73% 25929 java.lang.Character#isHighSurrogate():9464 [Inlined code] at java.lang.Character#codePointAtImpl():9671 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.72% 25734 java.lang.Character#toChars():9872 [Inlined code] at org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 0.72% 25557 org.apache.lucene.document.Field#setIntValue():372 [Inlined code] at org.apache.lucene.document.IntField#setIntValue():97 [Inlined code] at perf.LineFileDocs#nextDoc():744 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.71% 25273 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#copyBuffer():47 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getText():709 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():165 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.70% 24915 org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.67% 23872 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#copyBuffer():47 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getText():709 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():165 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.65% 23017 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 0.62% 22182 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.61% 21889 org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.59% 21152 org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.56% 20064 org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.54% 19358 org.apache.lucene.analysis.CharacterUtils#toLowerCase():57 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.53% 18886 org.apache.lucene.analysis.CharacterUtils#toLowerCase():57 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.49% 17426 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] at sun.nio.ch.IOUtil#write():72 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():355 [Inlined code] at sun.nio.ch.FileChannelImpl#traceImplWrite():374 [Inlined code] at sun.nio.ch.FileChannelImpl#write():333 [Inlined code] at sun.nio.ch.ChannelOutputStream#writeFully():68 [Inlined code] at sun.nio.ch.ChannelOutputStream#write():105 [Inlined code] at org.apache.lucene.store.FSDirectory$FSIndexOutput$1#write():391 [Inlined code] at java.util.zip.CheckedOutputStream#write():73 [JIT compiled code] 0.48% 17088 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] at perf.IndexThreads$IndexThread#run():419 [JIT compiled code] 0.47% 16839 org.apache.lucene.analysis.CharArraySet#contains():89 [Inlined code] at org.apache.lucene.analysis.StopFilter#accept():97 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():52 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.44% 15690 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] at perf.IndexThreads$IndexThread#run():419 [JIT compiled code] 0.43% 15484 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] at perf.IndexThreads$IndexThread#run():419 [JIT compiled code] 0.42% 15143 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] at perf.IndexThreads$IndexThread#run():419 [JIT compiled code] 0.40% 14424 jdk.internal.misc.ScopedMemoryAccess#getByteInternal():1100 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#getByte():1088 [Inlined code] at java.lang.invoke.VarHandleSegmentAsBytes#get():56 [Inlined code] at java.lang.invoke.VarHandleSegmentAsBytes#get():49 [Inlined code] at java.lang.invoke.VarHandleGuards#guard_LJ_I():251 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#get():694 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput$SingleSegmentImpl#readByte():754 [Inlined code] at org.apache.lucene.codecs.lucene90.Lucene90NormsProducer$3#longValue():396 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#startDoc():289 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():144 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 0.40% 14240 java.lang.Character#codePointAtImpl():9670 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 0.39% 13726 org.apache.lucene.analysis.CharArraySet#contains():89 [Inlined code] at org.apache.lucene.analysis.StopFilter#accept():97 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():52 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.37% 13174 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():148 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():148 [JIT compiled code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.37% 13157 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():148 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():148 [JIT compiled code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.37% 13031 org.apache.lucene.analysis.standard.StandardTokenizerImpl#zzCMap():742 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.35% 12612 org.apache.lucene.index.TermsHashPerField#writeByte():222 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.35% 12610 org.apache.lucene.index.DocIDMerger$Sub#nextMappedDoc():60 [Inlined code] at org.apache.lucene.index.DocIDMerger$SequentialDocIDMerger#next():123 [Inlined code] at org.apache.lucene.index.MappingMultiPostingsEnum#nextDoc():100 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():131 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000001d1e6f58#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M.jfr Profiler for heap at stackSize=1 [nrt medium index /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M.jfr is 218.77 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 147313 events (total: 337369M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 15.84% 53450M perf.LineFileDocs#nextDoc():647 [JIT compiled code] 8.98% 30299M java.lang.StringUTF16#compress():212 [Inlined code] 8.68% 29291M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] 6.62% 22348M perf.LineFileDocs#readDocs():176 [JIT compiled code] 6.58% 22213M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] 4.08% 13768M java.lang.StringUTF16#compress():216 [Inlined code] 3.37% 11373M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] 3.26% 10981M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] 3.16% 10657M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] 2.86% 9661M org.apache.lucene.util.BytesRef#():71 [Inlined code] 2.71% 9157M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] 2.23% 7513M perf.LineFileDocs#nextDoc():642 [JIT compiled code] 1.88% 6353M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] 1.87% 6311M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] 1.76% 5931M org.apache.lucene.util.TimSorter#():62 [Inlined code] 1.72% 5792M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] 1.67% 5649M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] 1.58% 5334M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] 1.55% 5237M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] 1.37% 4612M java.util.TreeMap#keyIterator():1421 [Inlined code] 1.22% 4118M perf.LineFileDocs#readDocs():176 [Interpreted code] 1.17% 3932M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] 1.12% 3792M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] 0.80% 2685M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] 0.66% 2229M java.nio.HeapByteBuffer#():75 [Inlined code] 0.59% 2003M org.apache.lucene.document.KeywordField#setStringValue():119 [Inlined code] 0.58% 1973M java.util.ArrayList#grow():240 [Inlined code] 0.58% 1940M org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] 0.57% 1932M org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] 0.57% 1921M org.apache.lucene.document.IntPoint#pack():114 [Inlined code] 0.46% 1546M perf.LineFileDocs#newDocState():509 [Interpreted code] 0.44% 1482M org.apache.lucene.index.IndexingChain$IntBlockAllocator#getIntBlock():1978 [Inlined code] 0.44% 1478M org.apache.lucene.document.IntPoint#pack():108 [Inlined code] 0.43% 1467M org.apache.lucene.codecs.CompetitiveImpactAccumulator#getCompetitiveFreqNormPairs():108 [JIT compiled code] 0.41% 1376M org.apache.lucene.codecs.lucene104.PForUtil#encode():78 [JIT compiled code] 0.39% 1318M java.lang.Long#valueOf():1000 [Inlined code] 0.34% 1160M perf.LineFileDocs#nextDoc():649 [JIT compiled code] 0.31% 1033M perf.LineFileDocs#nextDoc():654 [JIT compiled code] 0.30% 1017M java.util.ArrayDeque#():179 [Inlined code] 0.30% 1011M perf.LineFileDocs#nextDoc():739 [JIT compiled code] 0.29% 976M org.apache.lucene.document.LongField#binaryValue():90 [JIT compiled code] 0.27% 912M perf.LineFileDocs#intToID():299 [Inlined code] 0.27% 912M org.apache.lucene.document.LongField#binaryValue():88 [JIT compiled code] 0.27% 909M java.util.List#of():935 [Inlined code] 0.27% 896M perf.LineFileDocs#nextDoc():644 [JIT compiled code] 0.26% 877M perf.LineFileDocs#nextDoc():652 [JIT compiled code] 0.26% 861M org.apache.lucene.document.IntField#binaryValue():87 [JIT compiled code] 0.25% 853M perf.LineFileDocs#intToID():305 [Inlined code] 0.22% 756M org.apache.lucene.util.PagedBytes$PagedBytesDataOutput#writeBytes():412 [Inlined code] 0.21% 711M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#writeBlock():967 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=2 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M.jfr Profiler for heap at stackSize=2 [nrt medium index /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M.jfr is 218.77 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 147313 events (total: 337369M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=2 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 15.81% 53321M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 8.98% 30299M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] 8.68% 29291M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] 6.62% 22348M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 6.58% 22213M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] 4.08% 13768M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] 3.37% 11366M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 3.12% 10521M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] 2.76% 9325M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] 2.71% 9130M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] 2.55% 8613M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] 2.23% 7513M perf.LineFileDocs#nextDoc():642 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 1.88% 6353M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] 1.87% 6311M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] 1.76% 5931M org.apache.lucene.util.TimSorter#():62 [Inlined code] at org.apache.lucene.util.ArrayTimSorter#():34 [Inlined code] 1.72% 5792M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] 1.67% 5649M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] 1.58% 5334M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] 1.55% 5237M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] 1.37% 4612M java.util.TreeMap#keyIterator():1421 [Inlined code] at java.util.TreeMap$KeySet#iterator():1434 [JIT compiled code] 1.22% 4118M perf.LineFileDocs#readDocs():176 [Interpreted code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.17% 3932M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():349 [JIT compiled code] 1.12% 3792M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] 0.75% 2541M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] 0.70% 2367M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():464 [JIT compiled code] 0.66% 2229M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] 0.58% 1973M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] 0.57% 1921M org.apache.lucene.document.IntPoint#pack():114 [Inlined code] at org.apache.lucene.document.IntPoint#setIntValues():72 [Inlined code] 0.57% 1912M org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [Inlined code] 0.46% 1546M perf.LineFileDocs#newDocState():509 [Interpreted code] at perf.IndexThreads$IndexThread#run():188 [Interpreted code] 0.44% 1482M org.apache.lucene.index.IndexingChain$IntBlockAllocator#getIntBlock():1978 [Inlined code] at org.apache.lucene.util.IntBlockPool#nextBuffer():153 [JIT compiled code] 0.44% 1478M org.apache.lucene.document.IntPoint#pack():108 [Inlined code] at org.apache.lucene.document.IntPoint#setIntValues():72 [Inlined code] 0.43% 1467M org.apache.lucene.codecs.CompetitiveImpactAccumulator#getCompetitiveFreqNormPairs():108 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():398 [JIT compiled code] 0.39% 1318M java.lang.Long#valueOf():1000 [Inlined code] at org.apache.lucene.document.Field#setLongValue():381 [Inlined code] 0.34% 1160M perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 0.31% 1039M org.apache.lucene.document.KeywordField#setStringValue():119 [Inlined code] at perf.LineFileDocs#nextDoc():736 [JIT compiled code] 0.31% 1033M perf.LineFileDocs#nextDoc():654 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 0.30% 1018M org.apache.lucene.codecs.lucene104.PForUtil#encode():78 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] 0.30% 1012M java.util.ArrayDeque#():179 [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput#():112 [Inlined code] 0.30% 1011M org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():753 [JIT compiled code] 0.30% 1011M perf.LineFileDocs#nextDoc():739 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 0.29% 963M org.apache.lucene.document.KeywordField#setStringValue():119 [Inlined code] at perf.LineFileDocs#nextDoc():742 [JIT compiled code] 0.28% 929M org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():737 [JIT compiled code] 0.27% 912M perf.LineFileDocs#intToID():299 [Inlined code] at perf.LineFileDocs#nextDoc():753 [JIT compiled code] 0.27% 909M java.util.List#of():935 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1883 [JIT compiled code] 0.27% 896M perf.LineFileDocs#nextDoc():644 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 0.26% 877M perf.LineFileDocs#nextDoc():652 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 0.26% 864M org.apache.lucene.document.LongField#binaryValue():90 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1252 [Inlined code] 0.25% 853M perf.LineFileDocs#intToID():305 [Inlined code] at perf.LineFileDocs#nextDoc():753 [JIT compiled code] 0.24% 816M org.apache.lucene.document.LongField#binaryValue():88 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1252 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M.jfr Profiler for heap at stackSize=4 [nrt medium index /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M.jfr is 218.77 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 147313 events (total: 337369M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 15.81% 53321M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 8.61% 29046M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 8.14% 27461M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] 6.62% 22348M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 5.05% 17052M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] 4.05% 13646M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] 3.09% 10424M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 2.65% 8953M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 2.55% 8597M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 2.23% 7513M perf.LineFileDocs#nextDoc():642 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 1.88% 6353M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] 1.87% 6311M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] 1.74% 5853M org.apache.lucene.util.TimSorter#():62 [Inlined code] at org.apache.lucene.util.ArrayTimSorter#():34 [Inlined code] at org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [Inlined code] 1.73% 5834M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] 1.72% 5792M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] 1.67% 5649M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] 1.58% 5334M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] 1.56% 5256M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] 1.55% 5237M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] 1.37% 4612M java.util.TreeMap#keyIterator():1421 [Inlined code] at java.util.TreeMap$KeySet#iterator():1434 [JIT compiled code] at java.util.TreeSet#iterator():187 [Inlined code] at org.apache.lucene.codecs.CompetitiveImpactAccumulator#addAll():82 [Inlined code] 1.22% 4118M perf.LineFileDocs#readDocs():176 [Interpreted code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.12% 3792M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] 1.07% 3622M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#initStreamSlices():161 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():198 [JIT compiled code] 1.05% 3541M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():349 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.94% 3158M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at perf.LineFileDocs#nextDoc():739 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 0.91% 3084M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.KeywordField#setStringValue():119 [Inlined code] at perf.LineFileDocs#nextDoc():736 [JIT compiled code] 0.73% 2470M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.ArrayUtil#grow():377 [Inlined code] at org.apache.lucene.index.PointValuesWriter#addPackedValue():80 [JIT compiled code] 0.70% 2367M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():464 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#startDoc():259 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():144 [JIT compiled code] 0.64% 2161M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput$$Lambda.0x000000001d184f38#apply() [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput#appendBlock():506 [JIT compiled code] 0.58% 1973M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] 0.57% 1912M org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [Inlined code] at org.apache.lucene.index.MappedMultiFields$MappedMultiTermsEnum#postings():131 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] 0.46% 1546M perf.LineFileDocs#newDocState():509 [Interpreted code] at perf.IndexThreads$IndexThread#run():188 [Interpreted code] 0.46% 1539M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.util.BytesRefBlockPool#addBytesRef():91 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():343 [JIT compiled code] 0.44% 1482M org.apache.lucene.index.IndexingChain$IntBlockAllocator#getIntBlock():1978 [Inlined code] at org.apache.lucene.util.IntBlockPool#nextBuffer():153 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#initStreamSlices():155 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():198 [JIT compiled code] 0.44% 1472M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():644 [JIT compiled code] 0.43% 1467M org.apache.lucene.codecs.CompetitiveImpactAccumulator#getCompetitiveFreqNormPairs():108 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():398 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#startDoc():259 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():144 [JIT compiled code] 0.35% 1188M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():753 [JIT compiled code] 0.34% 1160M perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.32% 1073M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():737 [JIT compiled code] 0.32% 1065M org.apache.lucene.document.IntPoint#pack():114 [Inlined code] at org.apache.lucene.document.IntPoint#setIntValues():72 [Inlined code] at org.apache.lucene.document.IntPoint#setIntValue():57 [Inlined code] at perf.LineFileDocs#nextDoc():763 [JIT compiled code] 0.31% 1039M org.apache.lucene.document.KeywordField#setStringValue():119 [Inlined code] at perf.LineFileDocs#nextDoc():736 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.31% 1033M perf.LineFileDocs#nextDoc():654 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.30% 1018M org.apache.lucene.codecs.lucene104.PForUtil#encode():78 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 0.30% 1011M java.util.ArrayDeque#():179 [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput#():112 [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput#():138 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.TrieBuilder#():82 [Inlined code] 0.30% 1011M org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():753 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.30% 1011M perf.LineFileDocs#nextDoc():739 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.29% 963M org.apache.lucene.document.KeywordField#setStringValue():119 [Inlined code] at perf.LineFileDocs#nextDoc():742 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.28% 929M org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():737 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.27% 912M perf.LineFileDocs#intToID():299 [Inlined code] at perf.LineFileDocs#nextDoc():753 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.27% 909M java.util.List#of():935 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1883 [JIT compiled code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] at perf.IndexThreads$IndexThread#run():419 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=8 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M.jfr Profiler for heap at stackSize=8 [nrt medium index /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M.jfr is 218.77 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 147313 events (total: 337369M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=8 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 15.81% 53321M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 8.11% 27375M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 6.62% 22348M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 4.10% 13848M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] 4.03% 13603M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 2.32% 7813M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] 2.23% 7513M perf.LineFileDocs#nextDoc():642 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 2.00% 6743M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] 1.74% 5853M org.apache.lucene.util.TimSorter#():62 [Inlined code] at org.apache.lucene.util.ArrayTimSorter#():34 [Inlined code] at org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [Inlined code] at org.apache.lucene.index.MappedMultiFields$MappedMultiTermsEnum#postings():131 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 1.67% 5649M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 1.61% 5446M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 1.59% 5368M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 1.59% 5353M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] 1.56% 5273M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():200 [JIT compiled code] 1.56% 5256M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000001d1e6f58#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] 1.55% 5237M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 1.45% 4907M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 1.45% 4897M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000001d1e6f58#merge() [Interpreted code] 1.34% 4514M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 1.22% 4118M perf.LineFileDocs#readDocs():176 [Interpreted code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.17% 3932M java.util.TreeMap#keyIterator():1421 [Inlined code] at java.util.TreeMap$KeySet#iterator():1434 [JIT compiled code] at java.util.TreeSet#iterator():187 [Inlined code] at org.apache.lucene.codecs.CompetitiveImpactAccumulator#addAll():82 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():482 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#finishTerm():576 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():172 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 1.15% 3885M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000001d1e6f58#merge() [Interpreted code] 1.04% 3514M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():349 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.94% 3158M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at perf.LineFileDocs#nextDoc():739 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.93% 3123M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#initStreamSlices():161 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():198 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] 0.91% 3084M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.KeywordField#setStringValue():119 [Inlined code] at perf.LineFileDocs#nextDoc():736 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.89% 3006M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.85% 2878M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] 0.85% 2856M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] 0.80% 2714M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] 0.75% 2543M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] 0.75% 2517M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] 0.73% 2478M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():200 [JIT compiled code] 0.73% 2450M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] 0.71% 2386M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] 0.64% 2174M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():173 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] 0.63% 2141M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.ArrayUtil#grow():377 [Inlined code] at org.apache.lucene.index.PointValuesWriter#addPackedValue():80 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1252 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.63% 2137M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] 0.57% 1923M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput$$Lambda.0x000000001d184f38#apply() [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput#appendBlock():506 [JIT compiled code] at org.apache.lucene.store.ByteBuffersDataOutput#writeByte():187 [Inlined code] at org.apache.lucene.store.DataOutput#writeVInt():203 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.TrieBuilder#append():138 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingBlock#compileIndex():488 [JIT compiled code] 0.57% 1912M org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [Inlined code] at org.apache.lucene.index.MappedMultiFields$MappedMultiTermsEnum#postings():131 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] 0.49% 1640M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] at org.apache.lucene.codecs.CompetitiveImpactAccumulator#getCompetitiveFreqNormPairs():108 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():398 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#startDoc():259 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():144 [JIT compiled code] 0.48% 1618M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():464 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#startDoc():259 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():144 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] 0.48% 1613M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] 0.46% 1546M perf.LineFileDocs#newDocState():509 [Interpreted code] at perf.IndexThreads$IndexThread#run():188 [Interpreted code] 0.44% 1481M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] 0.44% 1472M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():644 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.36% 1214M org.apache.lucene.index.IndexingChain$IntBlockAllocator#getIntBlock():1978 [Inlined code] at org.apache.lucene.util.IntBlockPool#nextBuffer():153 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#initStreamSlices():155 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():198 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] 0.35% 1188M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():753 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.34% 1160M perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.32% 1081M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M.jfr Profiler for heap at stackSize=12 [nrt medium index /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M.jfr is 218.77 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 147313 events (total: 337369M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 15.81% 53321M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 8.11% 27375M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 6.62% 22348M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 4.10% 13848M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000001d1e6f58#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] 4.03% 13603M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 2.23% 7513M perf.LineFileDocs#nextDoc():642 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 2.07% 6988M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [JIT compiled code] 1.74% 5853M org.apache.lucene.util.TimSorter#():62 [Inlined code] at org.apache.lucene.util.ArrayTimSorter#():34 [Inlined code] at org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [Inlined code] at org.apache.lucene.index.MappedMultiFields$MappedMultiTermsEnum#postings():131 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000001d1e6f58#merge() [Interpreted code] 1.59% 5353M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000001d1e6f58#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] 1.56% 5256M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000001d1e6f58#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] at org.apache.lucene.index.IndexWriter#merge():4785 [Interpreted code] at org.apache.lucene.index.IndexWriter$IndexWriterMergeSource#merge():6590 [Interpreted code] at org.apache.lucene.index.ConcurrentMergeScheduler#doMerge():661 [Interpreted code] 1.55% 5232M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 1.52% 5140M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 1.52% 5116M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 1.46% 4937M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 1.45% 4897M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000001d1e6f58#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] at org.apache.lucene.index.IndexWriter#merge():4785 [Interpreted code] 1.37% 4635M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 1.23% 4138M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 1.22% 4118M perf.LineFileDocs#readDocs():176 [Interpreted code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.19% 4006M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():200 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] 1.15% 3885M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000001d1e6f58#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] at org.apache.lucene.index.IndexWriter#merge():4785 [Interpreted code] 1.04% 3520M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [JIT compiled code] 1.04% 3514M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():349 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.94% 3158M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at perf.LineFileDocs#nextDoc():739 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.91% 3084M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.KeywordField#setStringValue():119 [Inlined code] at perf.LineFileDocs#nextDoc():736 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.90% 3037M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#initStreamSlices():161 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():198 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 0.87% 2929M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [Inlined code] 0.87% 2924M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.85% 2856M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.77% 2590M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] 0.75% 2543M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 0.73% 2450M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 0.71% 2407M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] 0.69% 2322M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():200 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] 0.64% 2174M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():173 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 0.63% 2141M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.ArrayUtil#grow():377 [Inlined code] at org.apache.lucene.index.PointValuesWriter#addPackedValue():80 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1252 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] at perf.IndexThreads$IndexThread#run():419 [JIT compiled code] 0.57% 1912M org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [Inlined code] at org.apache.lucene.index.MappedMultiFields$MappedMultiTermsEnum#postings():131 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000001d1e6f58#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] 0.56% 1904M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput$$Lambda.0x000000001d184f38#apply() [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput#appendBlock():506 [JIT compiled code] at org.apache.lucene.store.ByteBuffersDataOutput#writeByte():187 [Inlined code] at org.apache.lucene.store.DataOutput#writeVInt():203 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.TrieBuilder#append():138 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingBlock#compileIndex():488 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#writeBlocks():682 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#pushTerm():1039 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():995 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 0.52% 1761M java.util.TreeMap#keyIterator():1421 [Inlined code] at java.util.TreeMap$KeySet#iterator():1434 [JIT compiled code] at java.util.TreeSet#iterator():187 [Inlined code] at org.apache.lucene.codecs.CompetitiveImpactAccumulator#addAll():82 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():482 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#finishTerm():576 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():172 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] 0.48% 1618M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():464 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#startDoc():259 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():144 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x000000001d1e6f58#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] 0.46% 1546M perf.LineFileDocs#newDocState():509 [Interpreted code] at perf.IndexThreads$IndexThread#run():188 [Interpreted code] 0.44% 1495M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [JIT compiled code] 0.44% 1472M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():644 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.43% 1455M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [JIT compiled code] 0.38% 1267M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():200 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 0.37% 1251M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] 0.36% 1198M org.apache.lucene.index.IndexingChain$IntBlockAllocator#getIntBlock():1978 [Inlined code] at org.apache.lucene.util.IntBlockPool#nextBuffer():153 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#initStreamSlices():155 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():198 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [JIT compiled code] 0.35% 1188M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():753 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.35% 1177M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] 0.34% 1160M perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.33% 1129M java.util.TreeMap#keyIterator():1421 [Inlined code] at java.util.TreeMap$KeySet#iterator():1434 [JIT compiled code] at java.util.TreeSet#iterator():187 [Inlined code] at org.apache.lucene.codecs.CompetitiveImpactAccumulator#addAll():82 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():482 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#finishTerm():576 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():172 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] move log to /l/logs.nightly/2026.05.15.14.49.32/nrtIndexMediumDocs.log move vmstat log to /l/logs.nightly/2026.05.15.14.49.32/nrtIndexMediumDocs.vmstat.log move top log to /l/logs.nightly/2026.05.15.14.49.32/nrtIndexMediumDocs.top.log [2026-05-16 06:53:22.315358] took 146.3 sec [2026-05-16 06:53:22.319482] run CheckIndex [2026-05-16 06:53:22.319559] RUN: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -classpath "/l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build" -ea org.apache.lucene.index.CheckIndex -threadCount 16 -level 2 "/l/indices/wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M/index" > /l/logs.nightly/2026.05.15.14.49.32/checkIndex.nrtIndexMediumDocs.log 2>&1 [2026-05-16 07:00:50.257535] took 447.9 sec [2026-05-16 07:00:50.259414] nrtMedIndexAtClose 30 segments: segments_2: _78(11.0.0):C6801878 _1a(11.0.0):C463785 _1k(11.0.0):C586542 _1v(11.0.0):C719704 _27(11.0.0):C906309 _5p(11.0.0):C6945108 _6b(11.0.0):C912075 _6j(11.0.0):C895660 _6r(11.0.0):C908651 _70(11.0.0):C897074 _7g(11.0.0):C898932 _8d(11.0.0):C872934 _85(11.0.0):C889477 _7p(11.0.0):C905041 _7w(11.0.0):C918590 _8i(11.0.0):C903862 _8k(11.0.0):C868261 _7n(11.0.0):C100537 _8j(11.0.0):c111401 _8l(11.0.0):C588279 _86(11.0.0):C38840 _7q(11.0.0):C88454 _80(11.0.0):C55453 _7o(11.0.0):C97128 _82(11.0.0):C48527 _83(11.0.0):C45546 _88(11.0.0):C29045 _87(11.0.0):C34555 _84(11.0.0):C41663 _81(11.0.0):C51727 [2026-05-16 07:00:50.259564] RUN: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -classpath "/l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build" perf.NRTPerfTest MMapDirectory "/l/indices/wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M/index" multi "/l/data/enwiki-20110115-lines-1k-fixed-with-random-labels.bin" 17 1103 1800 4 1 1 update 5 no 0.0 body10.tasks> /l/logs.nightly/2026.05.15.14.49.32/nrt.log 2>&1 [2026-05-16 07:30:51.908603] took 1801.6 sec [2026-05-16 07:30:51.913360] drop: 482.4 496.1 501.8 505.0 511.6 516.2 520.5 522.7 523.5 524.8 525.0 525.3 528.4 530.0 531.0 531.0 531.0 531.1 531.2 531.3 531.3 531.3 531.6 531.6 531.7 531.8 531.8 531.8 532.1 532.2 532.3 532.4 532.5 533.0 533.3 [2026-05-16 07:30:51.913736] times: 20.2 20.3 20.5 20.5 20.5 20.7 20.8 20.8 20.9 20.9 21.0 21.0 21.2 21.2 21.4 21.4 21.4 21.4 21.5 21.6 21.7 21.7 21.8 21.8 21.9 21.9 22.0 22.0 22.1 22.1 22.1 22.1 22.1 22.2 22.2 22.2 22.3 22.3 22.4 22.4 22.4 22.4 22.4 22.4 22.5 22.5 22.5 22.5 22.6 22.6 22.6 22.6 22.6 22.6 22.6 22.6 22.7 22.7 22.7 22.7 22.7 22.7 22.7 22.8 22.8 22.8 22.8 22.8 22.9 22.9 22.9 23.0 23.0 23.1 23.1 23.1 23.1 23.1 23.2 23.2 23.2 23.2 23.3 23.3 23.3 23.3 23.3 23.3 23.3 23.3 23.4 23.4 23.4 23.4 23.4 23.4 23.4 23.5 23.5 23.5 23.5 23.6 23.6 23.6 23.6 23.7 23.7 23.7 23.7 23.7 23.7 23.7 23.8 23.8 23.8 23.8 23.8 23.8 23.8 23.8 23.8 23.8 23.9 23.9 23.9 23.9 23.9 24.0 24.0 24.0 24.0 24.0 24.1 24.1 24.1 24.1 24.1 24.2 24.2 24.2 24.2 24.2 24.2 24.2 24.2 24.2 24.2 24.2 24.3 24.3 24.3 24.3 24.3 24.4 24.4 24.4 24.4 24.5 24.5 24.5 24.5 24.5 24.5 24.6 24.6 24.6 24.6 24.6 24.6 24.6 24.6 24.6 24.6 24.6 24.7 24.7 24.7 24.7 24.7 24.7 24.7 24.7 24.7 24.7 24.8 24.9 24.9 24.9 24.9 24.9 24.9 25.0 25.0 25.0 25.1 25.1 25.1 25.1 25.1 25.1 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.3 25.3 25.3 25.3 25.3 25.3 25.4 25.4 25.4 25.4 25.4 25.4 25.5 25.6 25.6 25.6 25.6 25.6 25.7 25.7 25.7 25.8 25.8 25.9 25.9 25.9 25.9 26.0 26.0 26.0 26.0 26.0 26.0 26.1 26.1 26.1 26.1 26.2 26.2 26.2 26.2 26.2 26.2 26.3 26.3 26.3 26.3 26.3 26.4 26.4 26.4 26.4 26.4 26.4 26.5 26.5 26.5 26.5 26.5 26.5 26.6 26.7 26.7 26.8 26.8 26.8 26.9 27.0 27.1 27.1 27.1 27.1 27.1 27.2 27.2 27.2 27.3 27.3 27.3 27.3 27.3 27.4 27.5 27.5 27.5 27.5 27.5 27.6 27.6 27.6 27.6 27.6 27.7 27.7 27.8 27.8 27.8 27.8 27.8 27.9 27.9 27.9 28.0 28.0 28.0 28.0 28.1 28.1 28.1 28.1 28.1 28.1 28.2 28.2 28.3 28.3 28.3 28.3 28.3 28.3 28.3 28.3 28.4 28.4 28.4 28.4 28.4 28.4 28.4 28.4 28.4 28.5 28.5 28.5 28.5 28.5 28.5 28.5 28.5 28.5 28.6 28.6 28.6 28.6 28.6 28.6 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 29.0 29.0 29.0 29.0 29.0 29.0 29.0 29.0 29.0 29.0 29.0 29.0 29.0 29.0 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.3 29.3 29.3 29.3 29.3 29.3 29.3 29.3 29.3 29.3 29.3 29.3 29.3 29.3 29.3 29.3 29.3 29.3 29.3 29.3 29.3 29.3 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.6 29.6 29.6 29.6 29.6 29.6 29.6 29.6 29.6 29.6 29.6 29.6 29.6 29.6 29.6 29.6 29.6 29.6 29.6 29.6 29.6 29.6 29.6 29.6 29.6 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.1 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.0 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.9 31.9 31.9 31.9 31.9 31.9 31.9 31.9 31.9 31.9 31.9 31.9 31.9 31.9 31.9 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.3 32.3 32.3 32.3 32.4 32.4 32.4 32.4 32.4 32.5 32.5 32.5 32.6 32.6 32.6 32.6 32.6 32.6 32.7 32.7 32.8 32.8 32.9 32.9 33.0 33.0 33.0 33.2 33.4 33.5 33.5 33.6 33.7 33.7 34.1 34.1 34.1 34.4 34.4 34.5 34.6 34.6 34.8 34.8 34.8 35.2 35.6 35.8 35.9 36.2 36.2 36.3 36.5 36.5 36.6 36.8 36.9 37.1 37.4 37.4 37.6 37.6 38.0 39.0 41.4 42.4 141.0 150.7 155.0 156.8 159.6 165.4 179.7 192.2 203.5 206.6 207.4 209.4 210.3 211.9 212.9 215.6 217.2 217.9 218.0 218.1 218.9 219.6 220.0 220.1 220.2 220.2 221.0 222.2 222.5 222.8 223.2 223.2 224.0 224.1 224.3 225.5 225.8 226.0 227.2 228.1 236.7 241.5 245.3 248.5 252.3 253.1 254.4 255.6 255.9 261.3 263.2 265.3 266.5 267.7 268.6 270.7 272.1 272.8 285.5 287.3 289.5 290.8 292.0 292.5 294.4 295.2 296.1 303.5 310.5 314.0 314.6 316.2 317.2 319.1 321.6 322.3 323.6 326.3 326.9 328.2 329.9 332.6 333.5 333.5 334.7 336.9 337.5 339.6 339.9 342.4 342.4 343.3 343.5 345.2 347.4 347.7 348.4 349.0 349.2 349.5 350.5 351.3 351.3 351.5 352.0 353.4 354.3 354.9 355.3 355.6 355.9 356.5 356.8 357.0 357.2 358.2 358.4 361.8 362.9 365.7 366.2 385.1 386.6 392.2 393.9 394.2 398.9 403.3 419.3 421.5 421.7 422.4 422.9 427.6 431.5 434.3 443.7 451.8 453.3 454.7 455.2 455.3 455.7 456.8 457.1 458.1 458.2 459.4 460.2 461.0 461.2 462.0 462.7 462.8 463.7 463.7 463.8 463.8 464.1 464.5 465.2 466.1 466.5 466.8 468.1 468.1 468.3 469.0 469.0 469.0 469.4 469.7 470.2 470.5 472.0 472.4 472.5 473.6 473.9 474.4 474.4 474.7 474.9 479.5 [2026-05-16 07:30:51.913871] NRT reopen time (msec) mean=61.9768 stdDev=100.0756 [2026-05-16 07:30:51.913877] run CheckIndex [2026-05-16 07:30:51.913947] RUN: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -classpath "/l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build" -ea org.apache.lucene.index.CheckIndex -threadCount 16 -level 2 "/l/indices/wikimedium.trunk.nightly.Lucene104.dvfields.nd27.625M/index" > /l/logs.nightly/2026.05.15.14.49.32/checkIndex.nrt.log 2>&1 [2026-05-16 07:38:12.632509] took 440.7 sec [2026-05-16 07:38:13.638337] build big index (fast) /l/indices/wikibig.trunk.nightly.Lucene104.nd5.98205M: now create cd /l/trunk.nightly/lucene/benchmark NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log /l/logs.nightly/nightly.wikibig.trunk.nightly.Lucene104.nd5.98205M.log run: ['/usr/lib/jvm/java-25-openjdk/bin/java', '--add-modules', 'jdk.incubator.vector', '-Xmx32g', '-Xms32g', '-server', '-XX:+UseParallelGC', '-Djava.io.tmpdir=/l/tmp', '--enable-native-access=ALL-UNNAMED', '-classpath', '/l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build', '-XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-index-nightly-wikibig.trunk.nightly.Lucene104.nd5.98205M.jfr', '-XX:+UnlockDiagnosticVMOptions', '-XX:+DebugNonSafepoints', 'perf.Indexer', '-dirImpl', 'MMapDirectory', '-indexPath', '/l/indices/wikibig.trunk.nightly.Lucene104.nd5.98205M', '-analyzer', 'StandardAnalyzerNoStopWords', '-lineDocsFile', '/l/data/enwiki-20110115-lines-with-random-label.bin', '-docCountLimit', '5982049', '-threadCount', '36', '-useCMS', '-ramBufferMB', '2048', '-maxBufferedDocs', '-1', '-postingsFormat', 'Lucene104', '-mergePolicy', 'TieredMergePolicy', '-idFieldPostingsFormat', 'Lucene104', '-idFieldPostingsFormat', 'Lucene104', '-hnswThreadsPerMerge', '1', '-hnswThreadPoolCount', '1'], cwd=/l/trunk.nightly/lucene/benchmark vmstatLogFile=/l/logs.nightly/nightly.vmstat.log topLogFile=/l/logs.nightly/nightly.top.log run vmstat: /usr/sbin/vmstat --active --wide --timestamp --unit M 1 > /l/logs.nightly/nightly.vmstat.log 2>&1 & run /usr/sbin/ps -eo pid,%cpu,%mem,bsdtime,etime,start,args --cols=120 --sort=-%cpu | head -10 >> /l/logs.nightly/nightly.top.log 2>&1 to /l/logs.nightly/nightly.top.log now kill vmstat: pid=2636818 Profiler summary for /l/logs.nightly/bench-index-nightly-wikibig.trunk.nightly.Lucene104.nd5.98205M.jfr Version: 2.1 Chunks: 16 Start: 2026-05-16 11:38:13 (UTC) Duration: 123 s Event Type Count Size (bytes) ============================================================= jdk.FileWrite 4016764 83676031 jdk.CPUTimeSample 3469236 60961176 jdk.FileRead 624181 14701407 jdk.ObjectAllocationInNewTLAB 607464 10606022 jdk.ObjectAllocationOutsideTLAB 164060 2606622 jdk.BooleanFlag 11072 350892 jdk.Compilation 5904 151898 jdk.CPULoad 2200 43397 jdk.UnsignedIntFlag 992 34266 jdk.IntFlag 896 32152 jdk.Checkpoint 815 25419744 jdk.StringFlag 720 26855 jdk.GarbageCollection 41 973 jdk.CPUInformation 16 24027 jdk.GCConfiguration 16 411 jdk.JVMInformation 16 16683 jdk.Metadata 16 1768428 jdk.ActiveRecording 0 0 jdk.ActiveSetting 0 0 jdk.AllocationRequiringGC 0 0 jdk.BooleanFlagChanged 0 0 jdk.CPUTimeSamplesLost 0 0 jdk.CPUTimeStampCounter 0 0 jdk.ClassDefine 0 0 jdk.ClassLoad 0 0 jdk.ClassLoaderStatistics 0 0 jdk.ClassLoadingStatistics 0 0 jdk.ClassRedefinition 0 0 jdk.ClassUnload 0 0 jdk.CodeCacheConfiguration 0 0 jdk.CodeCacheFull 0 0 jdk.CodeCacheStatistics 0 0 jdk.CompilationFailure 0 0 jdk.CompilerConfiguration 0 0 jdk.CompilerInlining 0 0 jdk.CompilerPhase 0 0 jdk.CompilerQueueUtilization 0 0 jdk.CompilerStatistics 0 0 jdk.ConcurrentModeFailure 0 0 jdk.ContainerCPUThrottling 0 0 jdk.ContainerCPUUsage 0 0 jdk.ContainerConfiguration 0 0 jdk.ContainerIOUsage 0 0 jdk.ContainerMemoryUsage 0 0 jdk.ContinuationFreeze 0 0 jdk.ContinuationFreezeFast 0 0 jdk.ContinuationFreezeSlow 0 0 jdk.ContinuationThaw 0 0 jdk.ContinuationThawFast 0 0 jdk.ContinuationThawSlow 0 0 jdk.DataLoss 0 0 jdk.Deoptimization 0 0 jdk.DeprecatedInvocation 0 0 jdk.Deserialization 0 0 jdk.DirectBufferStatistics 0 0 jdk.DoubleFlag 0 0 jdk.DoubleFlagChanged 0 0 jdk.DumpReason 0 0 jdk.EvacuationFailed 0 0 jdk.EvacuationInformation 0 0 jdk.ExceptionStatistics 0 0 jdk.ExecuteVMOperation 0 0 jdk.ExecutionSample 0 0 jdk.FileForce 0 0 jdk.FinalizerStatistics 0 0 jdk.Flush 0 0 jdk.G1AdaptiveIHOP 0 0 jdk.G1BasicIHOP 0 0 jdk.G1EvacuationOldStatistics 0 0 jdk.G1EvacuationYoungStatistics 0 0 jdk.G1GarbageCollection 0 0 jdk.G1HeapRegionInformation 0 0 jdk.G1HeapRegionTypeChange 0 0 jdk.G1HeapSummary 0 0 jdk.G1MMU 0 0 jdk.GCCPUTime 0 0 jdk.GCHeapConfiguration 0 0 jdk.GCHeapMemoryPoolUsage 0 0 jdk.GCHeapMemoryUsage 0 0 jdk.GCHeapSummary 0 0 jdk.GCPhaseConcurrent 0 0 jdk.GCPhaseConcurrentLevel1 0 0 jdk.GCPhaseConcurrentLevel2 0 0 jdk.GCPhaseParallel 0 0 jdk.GCPhasePause 0 0 jdk.GCPhasePauseLevel1 0 0 jdk.GCPhasePauseLevel2 0 0 jdk.GCPhasePauseLevel3 0 0 jdk.GCPhasePauseLevel4 0 0 jdk.GCReferenceStatistics 0 0 jdk.GCSurvivorConfiguration 0 0 jdk.GCTLABConfiguration 0 0 jdk.HeapDump 0 0 jdk.InitialEnvironmentVariable 0 0 jdk.InitialSecurityProperty 0 0 jdk.InitialSystemProperty 0 0 jdk.IntFlagChanged 0 0 jdk.JITRestart 0 0 jdk.JavaAgent 0 0 jdk.JavaErrorThrow 0 0 jdk.JavaExceptionThrow 0 0 jdk.JavaMonitorDeflate 0 0 jdk.JavaMonitorEnter 0 0 jdk.JavaMonitorInflate 0 0 jdk.JavaMonitorNotify 0 0 jdk.JavaMonitorStatistics 0 0 jdk.JavaMonitorWait 0 0 jdk.JavaThreadStatistics 0 0 jdk.LongFlag 0 0 jdk.LongFlagChanged 0 0 jdk.MetaspaceAllocationFailure 0 0 jdk.MetaspaceChunkFreeListSummary 0 0 jdk.MetaspaceGCThreshold 0 0 jdk.MetaspaceOOM 0 0 jdk.MetaspaceSummary 0 0 jdk.MethodTiming 0 0 jdk.MethodTrace 0 0 jdk.ModuleExport 0 0 jdk.ModuleRequire 0 0 jdk.NativeAgent 0 0 jdk.NativeLibrary 0 0 jdk.NativeLibraryLoad 0 0 jdk.NativeLibraryUnload 0 0 jdk.NativeMemoryUsage 0 0 jdk.NativeMemoryUsageTotal 0 0 jdk.NativeMethodSample 0 0 jdk.NetworkUtilization 0 0 jdk.OSInformation 0 0 jdk.ObjectAllocationSample 0 0 jdk.ObjectCount 0 0 jdk.ObjectCountAfterGC 0 0 jdk.OldGarbageCollection 0 0 jdk.OldObjectSample 0 0 jdk.PSHeapSummary 0 0 jdk.ParallelOldGarbageCollection 0 0 jdk.PhysicalMemory 0 0 jdk.ProcessStart 0 0 jdk.PromoteObjectInNewPLAB 0 0 jdk.PromoteObjectOutsidePLAB 0 0 jdk.PromotionFailed 0 0 jdk.RedefineClasses 0 0 jdk.ReservedStackActivation 0 0 jdk.ResidentSetSize 0 0 jdk.RetransformClasses 0 0 jdk.SafepointBegin 0 0 jdk.SafepointEnd 0 0 jdk.SafepointLatency 0 0 jdk.SafepointStateSynchronization 0 0 jdk.SecurityPropertyModification 0 0 jdk.SecurityProviderService 0 0 jdk.SerializationMisdeclaration 0 0 jdk.ShenandoahEvacuationInformation 0 0 jdk.ShenandoahHeapRegionInformation 0 0 jdk.ShenandoahHeapRegionStateChange 0 0 jdk.Shutdown 0 0 jdk.SocketRead 0 0 jdk.SocketWrite 0 0 jdk.StringFlagChanged 0 0 jdk.StringTableStatistics 0 0 jdk.SwapSpace 0 0 jdk.SymbolTableStatistics 0 0 jdk.SyncOnValueBasedClass 0 0 jdk.SystemGC 0 0 jdk.SystemProcess 0 0 jdk.TLSHandshake 0 0 jdk.TenuringDistribution 0 0 jdk.ThreadAllocationStatistics 0 0 jdk.ThreadCPULoad 0 0 jdk.ThreadContextSwitchRate 0 0 jdk.ThreadDump 0 0 jdk.ThreadEnd 0 0 jdk.ThreadPark 0 0 jdk.ThreadSleep 0 0 jdk.ThreadStart 0 0 jdk.UnsignedIntFlagChanged 0 0 jdk.UnsignedLongFlag 0 0 jdk.UnsignedLongFlagChanged 0 0 jdk.VirtualThreadEnd 0 0 jdk.VirtualThreadPinned 0 0 jdk.VirtualThreadStart 0 0 jdk.VirtualThreadSubmitFailed 0 0 jdk.VirtualizationInformation 0 0 jdk.X509Certificate 0 0 jdk.X509Validation 0 0 jdk.YoungGarbageCollection 0 0 jdk.YoungGenerationConfiguration 0 0 jdk.ZAllocationStall 0 0 jdk.ZOldGarbageCollection 0 0 jdk.ZPageAllocation 0 0 jdk.ZRelocationSet 0 0 jdk.ZRelocationSetGroup 0 0 jdk.ZStatisticsCounter 0 0 jdk.ZStatisticsSampler 0 0 jdk.ZThreadPhase 0 0 jdk.ZUncommit 0 0 jdk.ZYoungGarbageCollection 0 0 profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikibig.trunk.nightly.Lucene104.nd5.98205M.jfr Profiler for cpu at stackSize=1 [big index (fast) /l/logs.nightly/bench-index-nightly-wikibig.trunk.nightly.Lucene104.nd5.98205M.jfr is 191.14 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 3469229 events (total: 3M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 17.64% 611987 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():982 [JIT compiled code] 5.21% 180632 org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 4.51% 156530 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] 4.24% 147133 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] 3.02% 104865 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] 2.84% 98528 java.lang.Integer#rotateLeft():1650 [Inlined code] 2.82% 97889 java.lang.Character#codePointAtImpl():9670 [Inlined code] 2.81% 97577 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] 2.43% 84446 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1019 [JIT compiled code] 2.25% 78158 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] 1.86% 64623 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1022 [JIT compiled code] 1.50% 51951 org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] 1.38% 47822 org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] 1.35% 46879 org.apache.lucene.util.BytesRefHash#findHash():381 [Inlined code] 1.25% 43413 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#copyBuffer():47 [Inlined code] 1.17% 40459 java.lang.Character#isHighSurrogate():9464 [Inlined code] 1.12% 38845 org.apache.lucene.util.BytesRefBuilder#growNoCopy():67 [Inlined code] 1.10% 38215 org.apache.lucene.util.AttributeSource#getCurrentState():254 [Inlined code] 1.10% 38072 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] 1.00% 34845 org.apache.lucene.index.ByteSliceReader#readByte():74 [Inlined code] 0.99% 34309 org.apache.lucene.util.ByteBlockPool#getBuffer():358 [Inlined code] 0.98% 33925 org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] 0.84% 29102 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():145 [Inlined code] 0.71% 24492 org.apache.lucene.index.TermsHashPerField#writeByte():222 [Inlined code] 0.61% 21247 org.apache.lucene.util.BytesRefBlockPool#fillBytesRef():65 [Inlined code] 0.47% 16231 org.apache.lucene.analysis.standard.StandardTokenizerImpl#zzCMap():742 [Inlined code] 0.45% 15769 jdk.internal.util.ArraysSupport#mismatch():563 [Inlined code] 0.45% 15642 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] 0.45% 15569 org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] 0.42% 14681 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():986 [JIT compiled code] 0.42% 14590 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] 0.41% 14360 jdk.internal.util.ArraysSupport#mismatch():564 [Inlined code] 0.40% 14045 org.apache.lucene.index.TermsHashPerField#initReader():100 [Inlined code] 0.40% 13865 org.apache.lucene.codecs.lucene104.Lucene104PostingsReader$BlockPostingsEnum#nextPosition():1300 [Inlined code] 0.40% 13851 org.apache.lucene.codecs.lucene104.ForUtil#encode():154 [JIT compiled code] 0.40% 13713 org.apache.lucene.util.UnicodeUtil#UTF8toUTF16():641 [Inlined code] 0.39% 13541 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1026 [JIT compiled code] 0.38% 13046 org.apache.lucene.util.AttributeSource#clearAttributes():274 [Inlined code] 0.37% 12944 org.apache.lucene.codecs.lucene104.PForUtil#encode():58 [JIT compiled code] 0.36% 12561 java.lang.Character#toLowerCase():11251 [Inlined code] 0.36% 12539 org.apache.lucene.util.BytesRefBuilder#copyChars():148 [Inlined code] 0.36% 12396 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1108 [JIT compiled code] 0.34% 11820 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1040 [JIT compiled code] 0.33% 11530 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():131 [JIT compiled code] 0.33% 11396 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1020 [JIT compiled code] 0.33% 11370 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():143 [Inlined code] 0.31% 10692 org.apache.lucene.store.DataOutput#writeVInt():203 [Inlined code] 0.30% 10491 java.lang.Character#codePointAt():9662 [Inlined code] 0.30% 10373 org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum#next():193 [Inlined code] 0.29% 10172 org.apache.lucene.index.TermsHashPerField#positionStreamSlice():214 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=2 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikibig.trunk.nightly.Lucene104.nd5.98205M.jfr Profiler for cpu at stackSize=2 [big index (fast) /l/logs.nightly/bench-index-nightly-wikibig.trunk.nightly.Lucene104.nd5.98205M.jfr is 191.14 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 3469229 events (total: 3M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=2 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 17.64% 611987 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():982 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] 4.24% 147047 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] 3.02% 104865 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] 2.84% 98528 java.lang.Integer#rotateLeft():1650 [Inlined code] at org.apache.lucene.util.StringHelper#murmurhash3_x86_32():175 [Inlined code] 2.82% 97889 java.lang.Character#codePointAtImpl():9670 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] 2.81% 97537 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 2.67% 92698 org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] 2.53% 87823 org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 2.43% 84426 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1019 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] 2.25% 78158 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] 1.97% 68348 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] 1.86% 64623 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1022 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] 1.50% 51951 org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] 1.38% 47807 org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] 1.35% 46879 org.apache.lucene.util.BytesRefHash#findHash():381 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] 1.25% 43413 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#copyBuffer():47 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getText():709 [Inlined code] 1.16% 40155 java.lang.Character#isHighSurrogate():9464 [Inlined code] at java.lang.Character#codePointAtImpl():9671 [Inlined code] 1.11% 38508 org.apache.lucene.util.BytesRefBuilder#growNoCopy():67 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():147 [Inlined code] 1.10% 38211 org.apache.lucene.util.AttributeSource#getCurrentState():254 [Inlined code] at org.apache.lucene.util.AttributeSource#clearAttributes():273 [Inlined code] 1.10% 37992 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 1.00% 34844 org.apache.lucene.index.ByteSliceReader#readByte():74 [Inlined code] at org.apache.lucene.store.DataInput#readVInt():107 [Inlined code] 0.98% 33925 org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] 0.94% 32745 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] 0.89% 30895 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [JIT compiled code] 0.84% 29101 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():145 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():148 [Inlined code] 0.71% 24542 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] 0.51% 17564 org.apache.lucene.util.ByteBlockPool#getBuffer():358 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():223 [Inlined code] 0.47% 16420 org.apache.lucene.util.BytesRefBlockPool#fillBytesRef():65 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum#next():194 [Inlined code] 0.47% 16231 org.apache.lucene.analysis.standard.StandardTokenizerImpl#zzCMap():742 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] 0.45% 15642 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] 0.45% 15568 org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] 0.42% 14680 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():986 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] 0.42% 14551 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] 0.41% 14158 org.apache.lucene.util.ByteBlockPool#getBuffer():358 [Inlined code] at org.apache.lucene.util.BytesRefBlockPool#equals():156 [Inlined code] 0.40% 13856 org.apache.lucene.codecs.lucene104.Lucene104PostingsReader$BlockPostingsEnum#nextPosition():1300 [Inlined code] at org.apache.lucene.index.MappingMultiPostingsEnum#nextPosition():110 [Inlined code] 0.40% 13835 org.apache.lucene.index.TermsHashPerField#initReader():100 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum#reset():435 [Inlined code] 0.39% 13522 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1026 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] 0.39% 13454 org.apache.lucene.util.UnicodeUtil#UTF8toUTF16():641 [Inlined code] at perf.LineFileDocs#nextDoc():648 [JIT compiled code] 0.38% 13046 org.apache.lucene.util.AttributeSource#clearAttributes():274 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():153 [JIT compiled code] 0.36% 12641 org.apache.lucene.codecs.lucene104.ForUtil#encode():154 [JIT compiled code] at org.apache.lucene.codecs.lucene104.ForUtil#encode():96 [Inlined code] 0.36% 12539 org.apache.lucene.util.BytesRefBuilder#copyChars():148 [Inlined code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [JIT compiled code] 0.36% 12462 java.lang.Character#toLowerCase():11251 [Inlined code] at org.apache.lucene.analysis.CharacterUtils#toLowerCase():59 [Inlined code] 0.36% 12385 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1108 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] 0.35% 12207 jdk.internal.util.ArraysSupport#mismatch():563 [Inlined code] at java.util.Arrays#equals():2707 [Inlined code] 0.34% 11810 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1040 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] 0.33% 11522 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():131 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 0.33% 11406 jdk.internal.util.ArraysSupport#mismatch():564 [Inlined code] at java.util.Arrays#equals():2707 [Inlined code] 0.33% 11394 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1020 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] 0.33% 11366 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():143 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():148 [Inlined code] 0.33% 11303 org.apache.lucene.index.TermsHashPerField#writeByte():222 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikibig.trunk.nightly.Lucene104.nd5.98205M.jfr Profiler for cpu at stackSize=4 [big index (fast) /l/logs.nightly/bench-index-nightly-wikibig.trunk.nightly.Lucene104.nd5.98205M.jfr is 191.14 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 3469229 events (total: 3M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 17.64% 611986 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():982 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] 4.23% 146900 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] 2.98% 103480 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 2.82% 97917 java.lang.Integer#rotateLeft():1650 [Inlined code] at org.apache.lucene.util.StringHelper#murmurhash3_x86_32():175 [Inlined code] at org.apache.lucene.util.BytesRefHash#doHash():473 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():332 [JIT compiled code] 2.73% 94782 java.lang.Character#codePointAtImpl():9670 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] 2.43% 84380 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1019 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] 2.33% 80664 org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] 2.25% 78158 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] 2.21% 76568 org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] 1.86% 64618 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1022 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] 1.46% 50522 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] 1.41% 48885 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] 1.38% 47807 org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] 1.35% 46959 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] 1.35% 46860 org.apache.lucene.util.BytesRefHash#findHash():381 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 1.25% 43409 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#copyBuffer():47 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getText():709 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():165 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] 1.11% 38507 org.apache.lucene.util.BytesRefBuilder#growNoCopy():67 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():147 [Inlined code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 1.10% 38204 org.apache.lucene.util.AttributeSource#getCurrentState():254 [Inlined code] at org.apache.lucene.util.AttributeSource#clearAttributes():273 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():153 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] 0.94% 32766 java.lang.Character#isHighSurrogate():9464 [Inlined code] at java.lang.Character#codePointAtImpl():9671 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] 0.90% 31197 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] 0.88% 30430 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] 0.84% 29097 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():145 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():148 [Inlined code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.75% 26140 org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 0.74% 25807 org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] 0.72% 24857 org.apache.lucene.index.ByteSliceReader#readByte():74 [Inlined code] at org.apache.lucene.store.DataInput#readVInt():107 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum#nextPosition():501 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():148 [JIT compiled code] 0.58% 19987 org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] 0.56% 19422 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] 0.55% 19123 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():200 [JIT compiled code] 0.53% 18238 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 0.47% 16420 org.apache.lucene.util.BytesRefBlockPool#fillBytesRef():65 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum#next():194 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():381 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] 0.47% 16229 org.apache.lucene.analysis.standard.StandardTokenizerImpl#zzCMap():742 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] 0.45% 15640 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.45% 15568 org.apache.lucene.analysis.CharacterUtils#toLowerCase():58 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] 0.42% 14670 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():986 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] 0.42% 14550 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] 0.41% 14158 org.apache.lucene.util.ByteBlockPool#getBuffer():358 [Inlined code] at org.apache.lucene.util.BytesRefBlockPool#equals():156 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] 0.41% 14063 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():200 [JIT compiled code] 0.40% 13931 org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 0.40% 13856 org.apache.lucene.codecs.lucene104.Lucene104PostingsReader$BlockPostingsEnum#nextPosition():1300 [Inlined code] at org.apache.lucene.index.MappingMultiPostingsEnum#nextPosition():110 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():148 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 0.39% 13646 org.apache.lucene.index.TermsHashPerField#initReader():100 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum#reset():435 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum#postings():250 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] 0.39% 13483 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1026 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] 0.38% 13046 org.apache.lucene.util.AttributeSource#clearAttributes():274 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():153 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] 0.37% 12718 org.apache.lucene.util.UnicodeUtil#UTF8toUTF16():641 [Inlined code] at perf.LineFileDocs#nextDoc():648 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.36% 12461 java.lang.Character#toLowerCase():11251 [Inlined code] at org.apache.lucene.analysis.CharacterUtils#toLowerCase():59 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():38 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] 0.36% 12367 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1108 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] 0.35% 12207 jdk.internal.util.ArraysSupport#mismatch():563 [Inlined code] at java.util.Arrays#equals():2707 [Inlined code] at org.apache.lucene.util.BytesRefBlockPool#equals():169 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] 0.34% 11905 org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [Inlined code] 0.34% 11838 org.apache.lucene.codecs.lucene104.ForUtil#encode():154 [JIT compiled code] at org.apache.lucene.codecs.lucene104.ForUtil#encode():96 [Inlined code] at org.apache.lucene.codecs.lucene104.PForUtil#encode():102 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] 0.34% 11801 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1040 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] 0.33% 11406 jdk.internal.util.ArraysSupport#mismatch():564 [Inlined code] at java.util.Arrays#equals():2707 [Inlined code] at org.apache.lucene.util.BytesRefBlockPool#equals():169 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=8 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikibig.trunk.nightly.Lucene104.nd5.98205M.jfr Profiler for cpu at stackSize=8 [big index (fast) /l/logs.nightly/bench-index-nightly-wikibig.trunk.nightly.Lucene104.nd5.98205M.jfr is 191.14 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 3469229 events (total: 3M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=8 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 8.90% 308838 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():982 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] 8.73% 302812 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():982 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] 2.33% 80789 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 2.19% 76020 org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 2.07% 71712 org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 1.99% 69163 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] 1.96% 67964 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] 1.70% 58825 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] 1.46% 50522 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000341c5000#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] 1.45% 50251 java.lang.Integer#rotateLeft():1650 [Inlined code] at org.apache.lucene.util.StringHelper#murmurhash3_x86_32():175 [Inlined code] at org.apache.lucene.util.BytesRefHash#doHash():473 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():332 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 1.41% 48840 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 1.38% 47944 java.lang.Character#codePointAtImpl():9670 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] 1.36% 47316 java.lang.Integer#rotateLeft():1650 [Inlined code] at org.apache.lucene.util.StringHelper#murmurhash3_x86_32():175 [Inlined code] at org.apache.lucene.util.BytesRefHash#doHash():473 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():332 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] 1.35% 46687 java.lang.Character#codePointAtImpl():9670 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 1.09% 37684 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1019 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] 1.03% 35810 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1019 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] 0.94% 32755 java.lang.Character#isHighSurrogate():9464 [Inlined code] at java.lang.Character#codePointAtImpl():9671 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] 0.92% 31996 org.apache.lucene.util.BytesRefHash#findHash():381 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.88% 30693 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1022 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] 0.87% 30317 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 0.87% 30269 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 0.86% 29837 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1022 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] 0.78% 27032 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] 0.70% 24383 org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 0.69% 24016 org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 0.68% 23507 org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.67% 23244 org.apache.lucene.index.ByteSliceReader#readByte():74 [Inlined code] at org.apache.lucene.store.DataInput#readVInt():107 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum#nextPosition():501 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():148 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] 0.63% 21780 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#copyBuffer():47 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getText():709 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():165 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 0.60% 20912 org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.60% 20797 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#copyBuffer():47 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getText():709 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():165 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] 0.54% 18772 org.apache.lucene.util.AttributeSource#getCurrentState():254 [Inlined code] at org.apache.lucene.util.AttributeSource#clearAttributes():273 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():153 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] 0.54% 18769 org.apache.lucene.util.AttributeSource#getCurrentState():254 [Inlined code] at org.apache.lucene.util.AttributeSource#clearAttributes():273 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():153 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 0.54% 18756 org.apache.lucene.util.BytesRefBuilder#growNoCopy():67 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():147 [Inlined code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.53% 18326 org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 0.52% 18070 org.apache.lucene.util.BytesRefBuilder#growNoCopy():67 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():147 [Inlined code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.51% 17771 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.48% 16582 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] 0.48% 16575 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.47% 16371 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.42% 14549 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] at sun.nio.ch.IOUtil#write():72 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():355 [Inlined code] at sun.nio.ch.FileChannelImpl#traceImplWrite():374 [Inlined code] at sun.nio.ch.FileChannelImpl#write():333 [Inlined code] 0.42% 14542 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():145 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():148 [Inlined code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.42% 14529 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] 0.42% 14521 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():200 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] 0.42% 14516 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.40% 13856 org.apache.lucene.codecs.lucene104.Lucene104PostingsReader$BlockPostingsEnum#nextPosition():1300 [Inlined code] at org.apache.lucene.index.MappingMultiPostingsEnum#nextPosition():110 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():148 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] 0.37% 12903 org.apache.lucene.index.TermsHashPerField#initReader():100 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxPostingsEnum#reset():435 [Inlined code] at org.apache.lucene.index.FreqProxFields$FreqProxTermsEnum#postings():250 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] 0.37% 12838 org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 0.37% 12766 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():145 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():148 [Inlined code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.37% 12718 org.apache.lucene.util.UnicodeUtil#UTF8toUTF16():641 [Inlined code] at perf.LineFileDocs#nextDoc():648 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.35% 12054 org.apache.lucene.util.BytesRefHash#findHash():381 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikibig.trunk.nightly.Lucene104.nd5.98205M.jfr Profiler for cpu at stackSize=12 [big index (fast) /l/logs.nightly/bench-index-nightly-wikibig.trunk.nightly.Lucene104.nd5.98205M.jfr is 191.14 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 3469229 events (total: 3M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 8.82% 305928 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():982 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 8.65% 299991 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():982 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 2.17% 75414 org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] at perf.IndexThreads$IndexThread#run():419 [JIT compiled code] 2.10% 73022 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 2.05% 71018 org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] at perf.IndexThreads$IndexThread#run():419 [JIT compiled code] 1.85% 64041 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 1.82% 63277 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 1.57% 54320 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 1.46% 50522 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000341c5000#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] at org.apache.lucene.index.IndexWriter#merge():4785 [Interpreted code] at org.apache.lucene.index.IndexWriter$IndexWriterMergeSource#merge():6590 [Interpreted code] 1.36% 47044 java.lang.Integer#rotateLeft():1650 [Inlined code] at org.apache.lucene.util.StringHelper#murmurhash3_x86_32():175 [Inlined code] at org.apache.lucene.util.BytesRefHash#doHash():473 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():332 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 1.31% 45309 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 1.28% 44321 java.lang.Integer#rotateLeft():1650 [Inlined code] at org.apache.lucene.util.StringHelper#murmurhash3_x86_32():175 [Inlined code] at org.apache.lucene.util.BytesRefHash#doHash():473 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():332 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 1.13% 39134 java.lang.Character#codePointAtImpl():9670 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 1.10% 38124 java.lang.Character#codePointAtImpl():9670 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 0.99% 34379 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1019 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 0.93% 32378 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1019 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 0.85% 29396 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.84% 29043 org.apache.lucene.util.BytesRefHash#findHash():381 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 0.82% 28453 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1022 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 0.82% 28283 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.80% 27727 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1022 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 0.65% 22535 org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] 0.64% 22200 org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] 0.62% 21514 org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 0.59% 20606 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#copyBuffer():47 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getText():709 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():165 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.56% 19569 org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#copyBuffer():47 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getText():709 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():165 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.55% 19172 org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 0.51% 17803 org.apache.lucene.util.AttributeSource#getCurrentState():254 [Inlined code] at org.apache.lucene.util.AttributeSource#clearAttributes():273 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():153 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.51% 17726 org.apache.lucene.util.AttributeSource#getCurrentState():254 [Inlined code] at org.apache.lucene.util.AttributeSource#clearAttributes():273 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():153 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.47% 16259 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] at perf.IndexThreads$IndexThread#run():419 [JIT compiled code] 0.46% 15842 java.lang.Character#isHighSurrogate():9464 [Inlined code] at java.lang.Character#codePointAtImpl():9671 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.45% 15694 org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] 0.44% 15192 org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] at perf.IndexThreads$IndexThread#run():419 [JIT compiled code] 0.43% 14945 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 0.43% 14788 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 0.42% 14607 java.lang.Character#isHighSurrogate():9464 [Inlined code] at java.lang.Character#codePointAtImpl():9671 [Inlined code] at java.lang.Character#codePointAt():9665 [Inlined code] at org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():995 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [JIT compiled code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [Inlined code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1767 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.42% 14546 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] at sun.nio.ch.IOUtil#write():72 [Inlined code] at sun.nio.ch.FileChannelImpl#implWrite():355 [Inlined code] at sun.nio.ch.FileChannelImpl#traceImplWrite():374 [Inlined code] at sun.nio.ch.FileChannelImpl#write():333 [Inlined code] at sun.nio.ch.ChannelOutputStream#writeFully():68 [Inlined code] at sun.nio.ch.ChannelOutputStream#write():105 [Inlined code] at org.apache.lucene.store.FSDirectory$FSIndexOutput$1#write():391 [Inlined code] at java.util.zip.CheckedOutputStream#write():73 [JIT compiled code] 0.41% 14235 org.apache.lucene.util.BytesRefBuilder#growNoCopy():67 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():147 [Inlined code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 0.40% 13893 org.apache.lucene.util.BytesRefBuilder#growNoCopy():67 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():147 [Inlined code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 0.40% 13856 org.apache.lucene.codecs.lucene104.Lucene104PostingsReader$BlockPostingsEnum#nextPosition():1300 [Inlined code] at org.apache.lucene.index.MappingMultiPostingsEnum#nextPosition():110 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():148 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000341c5000#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] 0.39% 13403 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():145 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():148 [Inlined code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 0.38% 13309 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 0.38% 13263 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():200 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 0.37% 12844 org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 0.37% 12718 org.apache.lucene.util.UnicodeUtil#UTF8toUTF16():641 [Inlined code] at perf.LineFileDocs#nextDoc():648 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.33% 11593 org.apache.lucene.util.UnicodeUtil#UTF16toUTF8():145 [Inlined code] at org.apache.lucene.util.BytesRefBuilder#copyChars():148 [Inlined code] at org.apache.lucene.analysis.tokenattributes.CharTermAttributeImpl#getBytesRef():93 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 0.32% 10967 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 0.31% 10897 org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocument():1491 [Inlined code] 0.31% 10873 org.apache.lucene.util.BytesRefHash#findHash():381 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] at org.apache.lucene.index.IndexingChain#invertAndStore():1275 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 0.31% 10590 org.apache.lucene.index.TermsHashPerField#writeByte():222 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikibig.trunk.nightly.Lucene104.nd5.98205M.jfr Profiler for heap at stackSize=1 [big index (fast) /l/logs.nightly/bench-index-nightly-wikibig.trunk.nightly.Lucene104.nd5.98205M.jfr is 191.14 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 771497 events (total: 290362M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 15.13% 43939M perf.LineFileDocs#nextDoc():647 [JIT compiled code] 12.36% 35879M java.lang.StringUTF16#compress():216 [Inlined code] 8.88% 25783M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] 8.70% 25271M java.lang.StringUTF16#compress():212 [Inlined code] 7.51% 21813M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] 7.01% 20349M perf.LineFileDocs#readDocs():176 [JIT compiled code] 3.16% 9189M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] 3.07% 8917M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] 2.95% 8553M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] 2.77% 8046M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] 1.93% 5608M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] 1.85% 5367M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] 1.81% 5263M org.apache.lucene.util.TimSorter#():62 [Inlined code] 1.78% 5164M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] 1.73% 5020M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] 1.71% 4966M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] 1.71% 4953M perf.LineFileDocs#readDocs():176 [Interpreted code] 1.64% 4772M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] 1.33% 3864M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] 1.26% 3647M perf.LineFileDocs#nextDoc():642 [JIT compiled code] 1.13% 3283M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] 1.05% 3038M perf.LineFileDocs#nextDoc():647 [Interpreted code] 0.99% 2863M java.util.TreeMap#keyIterator():1421 [Inlined code] 0.62% 1796M org.apache.lucene.index.IndexingChain$IntBlockAllocator#getIntBlock():1978 [Inlined code] 0.55% 1582M org.apache.lucene.codecs.lucene104.PForUtil#encode():78 [JIT compiled code] 0.54% 1557M java.nio.HeapByteBuffer#():75 [Inlined code] 0.53% 1546M perf.LineFileDocs#newDocState():509 [Interpreted code] 0.52% 1496M org.apache.lucene.util.BytesRef#():71 [Inlined code] 0.51% 1472M org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] 0.42% 1233M org.apache.lucene.codecs.CompetitiveImpactAccumulator#getCompetitiveFreqNormPairs():108 [JIT compiled code] 0.33% 960M java.util.ArrayList#grow():240 [Inlined code] 0.26% 742M java.util.ArrayDeque#():179 [Inlined code] 0.22% 633M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#writeBlock():967 [JIT compiled code] 0.20% 592M org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] 0.19% 549M perf.LineFileDocs#nextDoc():605 [Interpreted code] 0.18% 511M org.apache.lucene.util.StringSorter#fallbackSorter():92 [Inlined code] 0.15% 433M org.apache.lucene.document.IntPoint#pack():114 [Inlined code] 0.15% 430M org.apache.lucene.document.IntPoint#pack():108 [Inlined code] 0.15% 427M java.util.ArrayList#iterator():1030 [JIT compiled code] 0.15% 425M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] 0.14% 417M org.apache.lucene.codecs.lucene103.blocktree.TrieBuilder#():82 [Inlined code] 0.13% 374M java.lang.invoke.DirectMethodHandle#allocateInstance():500 [Inlined code] 0.12% 337M perf.LineFileDocs#nextDoc():649 [JIT compiled code] 0.10% 304M org.apache.lucene.codecs.lucene103.blocktree.TrieBuilder#bytesRefToTrie():94 [JIT compiled code] 0.10% 302M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [JIT compiled code] 0.09% 256M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#writeBlock():725 [JIT compiled code] 0.09% 255M java.nio.HeapByteBuffer#asReadOnlyBuffer():152 [Inlined code] 0.09% 251M perf.LineFileDocs#nextDoc():644 [JIT compiled code] 0.09% 248M org.apache.lucene.codecs.CompetitiveImpactAccumulator#getCompetitiveFreqNormPairs():103 [JIT compiled code] 0.08% 235M java.lang.Thread#beforeSleep():473 [Interpreted code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=2 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikibig.trunk.nightly.Lucene104.nd5.98205M.jfr Profiler for heap at stackSize=2 [big index (fast) /l/logs.nightly/bench-index-nightly-wikibig.trunk.nightly.Lucene104.nd5.98205M.jfr is 191.14 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 771497 events (total: 290362M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=2 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 14.05% 40806M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 12.36% 35879M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] 8.88% 25783M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] 8.70% 25271M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] 7.51% 21813M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] 7.01% 20349M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 3.07% 8917M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 2.91% 8437M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] 2.77% 8055M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] 2.74% 7946M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] 1.93% 5608M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] 1.85% 5367M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] 1.81% 5263M org.apache.lucene.util.TimSorter#():62 [Inlined code] at org.apache.lucene.util.ArrayTimSorter#():34 [Inlined code] 1.73% 5034M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] 1.73% 5020M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] 1.71% 4966M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] 1.71% 4953M perf.LineFileDocs#readDocs():176 [Interpreted code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.64% 4772M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] 1.29% 3734M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] 1.13% 3283M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():349 [JIT compiled code] 1.09% 3178M perf.LineFileDocs#nextDoc():642 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 1.08% 3133M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [JIT compiled code] 1.04% 3022M perf.LineFileDocs#nextDoc():647 [Interpreted code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 0.99% 2863M java.util.TreeMap#keyIterator():1421 [Inlined code] at java.util.TreeMap$KeySet#iterator():1434 [JIT compiled code] 0.62% 1796M org.apache.lucene.index.IndexingChain$IntBlockAllocator#getIntBlock():1978 [Inlined code] at org.apache.lucene.util.IntBlockPool#nextBuffer():153 [JIT compiled code] 0.54% 1557M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] 0.53% 1546M perf.LineFileDocs#newDocState():509 [Interpreted code] at perf.IndexThreads$IndexThread#run():188 [Interpreted code] 0.50% 1459M org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [Inlined code] 0.47% 1376M org.apache.lucene.codecs.lucene104.PForUtil#encode():78 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] 0.44% 1285M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] 0.42% 1228M org.apache.lucene.codecs.CompetitiveImpactAccumulator#getCompetitiveFreqNormPairs():108 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():398 [JIT compiled code] 0.39% 1133M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():464 [JIT compiled code] 0.33% 960M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] 0.25% 738M java.util.ArrayDeque#():179 [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput#():112 [Inlined code] 0.19% 549M perf.LineFileDocs#nextDoc():605 [Interpreted code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 0.18% 511M org.apache.lucene.util.StringSorter#fallbackSorter():92 [Inlined code] at org.apache.lucene.util.StringSorter$MSBStringRadixSorter#getFallbackSorter():83 [Inlined code] 0.16% 468M perf.LineFileDocs#nextDoc():642 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [JIT compiled code] 0.15% 433M org.apache.lucene.document.IntPoint#pack():114 [Inlined code] at org.apache.lucene.document.IntPoint#setIntValues():72 [Inlined code] 0.15% 430M org.apache.lucene.document.IntPoint#pack():108 [Inlined code] at org.apache.lucene.document.IntPoint#setIntValues():72 [Inlined code] 0.14% 417M org.apache.lucene.codecs.lucene103.blocktree.TrieBuilder#():82 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.TrieBuilder#bytesRefToTrie():94 [JIT compiled code] 0.14% 396M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] 0.13% 374M java.lang.invoke.DirectMethodHandle#allocateInstance():500 [Inlined code] at java.lang.invoke.LambdaForm$DMH.0x00000000341a1400#newInvokeSpecial() [Inlined code] 0.13% 373M java.util.ArrayList#iterator():1030 [JIT compiled code] at jdk.jfr.internal.periodic.PeriodicEvents#doPeriodic():126 [Interpreted code] 0.11% 330M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#writeBlock():967 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#writeBlocks():666 [JIT compiled code] 0.10% 304M org.apache.lucene.codecs.lucene103.blocktree.TrieBuilder#bytesRefToTrie():94 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingBlock#compileIndex():481 [JIT compiled code] 0.10% 302M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#writeBlock():967 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#writeBlocks():636 [JIT compiled code] 0.10% 302M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [JIT compiled code] 0.09% 274M perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] 0.09% 255M java.nio.HeapByteBuffer#asReadOnlyBuffer():152 [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput#toBufferList():242 [JIT compiled code] 0.09% 248M org.apache.lucene.codecs.CompetitiveImpactAccumulator#getCompetitiveFreqNormPairs():103 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():398 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikibig.trunk.nightly.Lucene104.nd5.98205M.jfr Profiler for heap at stackSize=4 [big index (fast) /l/logs.nightly/bench-index-nightly-wikibig.trunk.nightly.Lucene104.nd5.98205M.jfr is 191.14 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 771497 events (total: 290362M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 14.05% 40806M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 11.31% 32831M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] 7.92% 22990M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] 7.48% 21728M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 7.14% 20742M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] 7.01% 20349M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 2.90% 8431M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 2.77% 8038M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 2.74% 7946M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 1.93% 5608M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] 1.85% 5367M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] 1.79% 5203M org.apache.lucene.util.TimSorter#():62 [Inlined code] at org.apache.lucene.util.ArrayTimSorter#():34 [Inlined code] at org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [Inlined code] 1.73% 5034M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] 1.73% 5020M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] 1.71% 4966M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] 1.71% 4953M perf.LineFileDocs#readDocs():176 [Interpreted code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.64% 4772M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] 1.62% 4706M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] 1.29% 3734M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] 1.26% 3664M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] 1.20% 3474M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#initStreamSlices():161 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():198 [JIT compiled code] 1.09% 3178M perf.LineFileDocs#nextDoc():642 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 1.09% 3156M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():349 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 1.08% 3133M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [JIT compiled code] at perf.IndexThreads$IndexThread#run():397 [Interpreted code] 1.04% 3022M perf.LineFileDocs#nextDoc():647 [Interpreted code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.98% 2848M java.util.TreeMap#keyIterator():1421 [Inlined code] at java.util.TreeMap$KeySet#iterator():1434 [JIT compiled code] at java.util.TreeSet#iterator():187 [Inlined code] at org.apache.lucene.codecs.CompetitiveImpactAccumulator#addAll():82 [Inlined code] 0.92% 2682M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [JIT compiled code] at perf.LineFileDocs#nextDoc():649 [Interpreted code] 0.62% 1796M org.apache.lucene.index.IndexingChain$IntBlockAllocator#getIntBlock():1978 [Inlined code] at org.apache.lucene.util.IntBlockPool#nextBuffer():153 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#initStreamSlices():155 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():198 [JIT compiled code] 0.58% 1681M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [JIT compiled code] at perf.LineFileDocs#nextDoc():649 [Interpreted code] 0.54% 1567M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.util.BytesRefBlockPool#addBytesRef():91 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():343 [JIT compiled code] 0.53% 1546M perf.LineFileDocs#newDocState():509 [Interpreted code] at perf.IndexThreads$IndexThread#run():188 [Interpreted code] 0.52% 1519M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput$$Lambda.0x000000003413acd8#apply() [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput#appendBlock():506 [JIT compiled code] 0.50% 1459M org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [Inlined code] at org.apache.lucene.index.MappedMultiFields$MappedMultiTermsEnum#postings():131 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] 0.47% 1376M org.apache.lucene.codecs.lucene104.PForUtil#encode():78 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 0.42% 1226M org.apache.lucene.codecs.CompetitiveImpactAccumulator#getCompetitiveFreqNormPairs():108 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():398 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#startDoc():259 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():144 [JIT compiled code] 0.39% 1133M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():464 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#startDoc():259 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():144 [JIT compiled code] 0.33% 960M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] 0.25% 738M java.util.ArrayDeque#():179 [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput#():112 [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput#():138 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.TrieBuilder#():82 [Inlined code] 0.22% 648M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#setStringValue():102 [Inlined code] at perf.LineFileDocs#nextDoc():736 [JIT compiled code] 0.19% 549M perf.LineFileDocs#nextDoc():605 [Interpreted code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.19% 547M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] 0.18% 511M org.apache.lucene.util.StringSorter#fallbackSorter():92 [Inlined code] at org.apache.lucene.util.StringSorter$MSBStringRadixSorter#getFallbackSorter():83 [Inlined code] at org.apache.lucene.util.MSBRadixSorter#sort():134 [Inlined code] at org.apache.lucene.util.MSBRadixSorter#radixSort():182 [JIT compiled code] 0.16% 468M perf.LineFileDocs#nextDoc():642 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [JIT compiled code] at perf.IndexThreads$IndexThread#run():397 [Interpreted code] 0.14% 417M org.apache.lucene.codecs.lucene103.blocktree.TrieBuilder#():82 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.TrieBuilder#bytesRefToTrie():94 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingBlock#compileIndex():481 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#writeBlocks():682 [JIT compiled code] 0.14% 396M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.ArrayUtil#grow():377 [Inlined code] at org.apache.lucene.index.PointValuesWriter#addPackedValue():80 [Inlined code] 0.13% 374M java.lang.invoke.DirectMethodHandle#allocateInstance():500 [Inlined code] at java.lang.invoke.LambdaForm$DMH.0x00000000341a1400#newInvokeSpecial() [Inlined code] at java.lang.invoke.Invokers$Holder#linkToTargetMethod() [Inlined code] at org.apache.lucene.util.StringSorter$MSBStringRadixSorter#getFallbackSorter():83 [Inlined code] 0.13% 373M java.util.ArrayList#iterator():1030 [JIT compiled code] at jdk.jfr.internal.periodic.PeriodicEvents#doPeriodic():126 [Interpreted code] at jdk.jfr.internal.PlatformRecorder#periodicTask():502 [Interpreted code] at jdk.jfr.internal.PlatformRecorder#lambda$startDiskMonitor$0():428 [Interpreted code] 0.12% 355M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [JIT compiled code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] 0.11% 330M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#writeBlock():967 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#writeBlocks():666 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#pushTerm():1039 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():995 [JIT compiled code] 0.10% 304M org.apache.lucene.codecs.lucene103.blocktree.TrieBuilder#bytesRefToTrie():94 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingBlock#compileIndex():481 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#writeBlocks():682 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#pushTerm():1039 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=8 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikibig.trunk.nightly.Lucene104.nd5.98205M.jfr Profiler for heap at stackSize=8 [big index (fast) /l/logs.nightly/bench-index-nightly-wikibig.trunk.nightly.Lucene104.nd5.98205M.jfr is 191.14 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 771497 events (total: 290362M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=8 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 14.05% 40806M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 10.52% 30552M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 7.44% 21617M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 7.01% 20349M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 3.08% 8931M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] 3.07% 8915M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():200 [JIT compiled code] 2.40% 6974M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] 1.95% 5663M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():200 [JIT compiled code] 1.80% 5227M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 1.79% 5203M org.apache.lucene.util.TimSorter#():62 [Inlined code] at org.apache.lucene.util.ArrayTimSorter#():34 [Inlined code] at org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [Inlined code] at org.apache.lucene.index.MappedMultiFields$MappedMultiTermsEnum#postings():131 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 1.73% 5020M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 1.71% 4966M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 1.71% 4953M perf.LineFileDocs#readDocs():176 [Interpreted code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.70% 4940M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 1.65% 4787M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] 1.62% 4701M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] 1.60% 4645M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 1.53% 4448M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 1.26% 3664M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000341c5000#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] 1.17% 3394M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000341c5000#merge() [Interpreted code] 1.15% 3343M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 1.13% 3274M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000341c5000#merge() [Interpreted code] 1.09% 3178M perf.LineFileDocs#nextDoc():642 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 1.09% 3178M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#initStreamSlices():161 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():198 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] 1.08% 3133M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [JIT compiled code] at perf.IndexThreads$IndexThread#run():397 [Interpreted code] 1.04% 3022M perf.LineFileDocs#nextDoc():647 [Interpreted code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 1.03% 2984M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():349 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.95% 2754M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] 0.92% 2682M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [JIT compiled code] at perf.LineFileDocs#nextDoc():649 [Interpreted code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.86% 2491M java.util.TreeMap#keyIterator():1421 [Inlined code] at java.util.TreeMap$KeySet#iterator():1434 [JIT compiled code] at java.util.TreeSet#iterator():187 [Inlined code] at org.apache.lucene.codecs.CompetitiveImpactAccumulator#addAll():82 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#flushDocBlock():482 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#finishTerm():576 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():172 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 0.84% 2438M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] 0.78% 2279M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [JIT compiled code] at perf.IndexThreads$IndexThread#run():397 [Interpreted code] 0.65% 1896M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] 0.62% 1798M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] 0.59% 1718M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] 0.58% 1670M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] 0.57% 1664M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [JIT compiled code] at perf.LineFileDocs#nextDoc():649 [Interpreted code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.57% 1649M org.apache.lucene.index.IndexingChain$IntBlockAllocator#getIntBlock():1978 [Inlined code] at org.apache.lucene.util.IntBlockPool#nextBuffer():153 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#initStreamSlices():155 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():198 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] 0.53% 1546M perf.LineFileDocs#newDocState():509 [Interpreted code] at perf.IndexThreads$IndexThread#run():188 [Interpreted code] 0.51% 1484M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():173 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] 0.50% 1459M org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [Inlined code] at org.apache.lucene.index.MappedMultiFields$MappedMultiTermsEnum#postings():131 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] 0.50% 1453M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] 0.48% 1400M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] 0.47% 1373M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [JIT compiled code] at perf.IndexThreads$IndexThread#run():397 [Interpreted code] 0.46% 1343M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput$$Lambda.0x000000003413acd8#apply() [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput#appendBlock():506 [JIT compiled code] at org.apache.lucene.store.ByteBuffersDataOutput#writeByte():187 [Inlined code] at org.apache.lucene.store.DataOutput#writeVInt():203 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.TrieBuilder#append():138 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingBlock#compileIndex():488 [JIT compiled code] 0.45% 1318M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] 0.45% 1315M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.util.BytesRefBlockPool#addBytesRef():91 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():343 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 0.41% 1183M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] 0.39% 1138M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#postUpdate():404 [Inlined code] 0.38% 1112M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [JIT compiled code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikibig.trunk.nightly.Lucene104.nd5.98205M.jfr Profiler for heap at stackSize=12 [big index (fast) /l/logs.nightly/bench-index-nightly-wikibig.trunk.nightly.Lucene104.nd5.98205M.jfr is 191.14 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 771497 events (total: 290362M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 14.05% 40806M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 10.52% 30552M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 7.44% 21617M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 7.01% 20349M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 3.08% 8931M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000341c5000#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] 2.01% 5827M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():200 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] 1.79% 5203M org.apache.lucene.util.TimSorter#():62 [Inlined code] at org.apache.lucene.util.ArrayTimSorter#():34 [Inlined code] at org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [Inlined code] at org.apache.lucene.index.MappedMultiFields$MappedMultiTermsEnum#postings():131 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000341c5000#merge() [Interpreted code] 1.71% 4953M perf.LineFileDocs#readDocs():176 [Interpreted code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.69% 4899M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():245 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 1.68% 4891M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():243 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 1.65% 4787M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000341c5000#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] 1.64% 4769M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 1.62% 4709M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():240 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 1.52% 4427M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 1.50% 4365M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():200 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [JIT compiled code] 1.44% 4190M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [Inlined code] 1.39% 4037M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 1.26% 3664M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000341c5000#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] at org.apache.lucene.index.IndexWriter#merge():4785 [Interpreted code] at org.apache.lucene.index.IndexWriter$IndexWriterMergeSource#merge():6590 [Interpreted code] at org.apache.lucene.index.ConcurrentMergeScheduler#doMerge():661 [Interpreted code] 1.17% 3394M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000341c5000#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] at org.apache.lucene.index.IndexWriter#merge():4785 [Interpreted code] 1.13% 3274M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000341c5000#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [Interpreted code] at org.apache.lucene.index.IndexWriter#merge():4785 [Interpreted code] 1.09% 3178M perf.LineFileDocs#nextDoc():642 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 1.09% 3177M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():340 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 1.08% 3133M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [JIT compiled code] at perf.IndexThreads$IndexThread#run():397 [Interpreted code] 1.06% 3087M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():200 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 1.06% 3073M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [Inlined code] 1.04% 3022M perf.LineFileDocs#nextDoc():647 [Interpreted code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 1.04% 3012M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#initStreamSlices():161 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():198 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 0.95% 2751M org.apache.lucene.util.BytesRefHash#rehash():438 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():349 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 0.94% 2725M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#postUpdate():404 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] 0.92% 2682M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [JIT compiled code] at perf.LineFileDocs#nextDoc():649 [Interpreted code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.78% 2279M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [JIT compiled code] at perf.IndexThreads$IndexThread#run():397 [Interpreted code] 0.59% 1724M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] 0.57% 1664M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [JIT compiled code] at perf.LineFileDocs#nextDoc():649 [Interpreted code] at perf.LineFileDocs#nextDoc():588 [Inlined code] at perf.IndexThreads$IndexThread#run():397 [JIT compiled code] 0.56% 1628M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#postUpdate():404 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] 0.53% 1546M perf.LineFileDocs#newDocState():509 [Interpreted code] at perf.IndexThreads$IndexThread#run():188 [Interpreted code] 0.52% 1505M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 0.52% 1496M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [Interpreted code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] 0.51% 1493M org.apache.lucene.index.IndexingChain$IntBlockAllocator#getIntBlock():1978 [Inlined code] at org.apache.lucene.util.IntBlockPool#nextBuffer():153 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#initStreamSlices():155 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():198 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 0.50% 1459M org.apache.lucene.util.ArrayUtil#timSort():568 [Inlined code] at org.apache.lucene.index.MultiTermsEnum#postings():332 [Inlined code] at org.apache.lucene.index.MappedMultiFields$MappedMultiTermsEnum#postings():131 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():125 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [Interpreted code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [Interpreted code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000341c5000#merge() [Interpreted code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [Interpreted code] at org.apache.lucene.index.SegmentMerger#merge():147 [Interpreted code] 0.50% 1453M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():172 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 0.50% 1441M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():173 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] 0.48% 1400M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():268 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 0.47% 1373M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.LineFileDocs#nextDoc():588 [JIT compiled code] at perf.IndexThreads$IndexThread#run():397 [Interpreted code] 0.46% 1332M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput$$Lambda.0x000000003413acd8#apply() [Inlined code] at org.apache.lucene.store.ByteBuffersDataOutput#appendBlock():506 [JIT compiled code] at org.apache.lucene.store.ByteBuffersDataOutput#writeByte():187 [Inlined code] at org.apache.lucene.store.DataOutput#writeVInt():203 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.TrieBuilder#append():138 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingBlock#compileIndex():488 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#writeBlocks():682 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#pushTerm():1039 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():995 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 0.45% 1318M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():183 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 0.45% 1298M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeByte():228 [Inlined code] at org.apache.lucene.index.TermsHashPerField#writeVInt():265 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#writeProx():86 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField#addTerm():200 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#positionStreamSlice():216 [Inlined code] at org.apache.lucene.index.TermsHashPerField#add():201 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] 0.44% 1268M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.util.BytesRefBlockPool#addBytesRef():91 [JIT compiled code] at org.apache.lucene.util.BytesRefHash#add():343 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] at org.apache.lucene.index.IndexingChain$PerField#invert():1743 [Inlined code] at org.apache.lucene.index.IndexingChain#invertAndStore():1271 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1245 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.41% 1204M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] 0.41% 1183M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#updateDocument():1882 [Inlined code] 0.39% 1140M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [Interpreted code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Interpreted code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [Interpreted code] at org.apache.lucene.index.DocumentsWriter#maybeFlush():496 [Inlined code] at org.apache.lucene.index.DocumentsWriter#postUpdate():407 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] move log to /l/logs.nightly/2026.05.15.14.49.32/fastIndexBigDocs.log move vmstat log to /l/logs.nightly/2026.05.15.14.49.32/fastIndexBigDocs.vmstat.log move top log to /l/logs.nightly/2026.05.15.14.49.32/fastIndexBigDocs.top.log [2026-05-16 07:42:12.693797] took 96.8 sec [2026-05-16 07:42:12.694858] bigIndexAtClose None [2026-05-16 07:42:12.696004] build search index (fixed segments) /l/indices/wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M: now create cd /l/trunk.nightly/lucene/benchmark NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log /l/logs.nightly/nightly.wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.log run: ['/usr/lib/jvm/java-25-openjdk/bin/java', '--add-modules', 'jdk.incubator.vector', '-Xmx32g', '-Xms32g', '-server', '-XX:+UseParallelGC', '-Djava.io.tmpdir=/l/tmp', '--enable-native-access=ALL-UNNAMED', '-classpath', '/l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build', '-XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.jfr', '-XX:+UnlockDiagnosticVMOptions', '-XX:+DebugNonSafepoints', 'perf.Indexer', '-dirImpl', 'MMapDirectory', '-indexPath', '/l/indices/wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M', '-analyzer', 'StandardAnalyzerNoStopWords', '-lineDocsFile', '/l/data/enwiki-20110115-lines-1k-fixed-with-random-labels.bin', '-docCountLimit', '27625038', '-threadCount', '1', '-dvfields', '-addDVSkippers', '-vectorFile', '/big/cohere-v3-wikipedia-en-scattered-1024d.docs.vec', '-vectorDimension', '1024', '-vectorEncoding', 'FLOAT32', '-ramBufferMB', '-1', '-maxBufferedDocs', '49774', '-postingsFormat', 'Lucene104', '-waitForMerges', '-mergePolicy', 'LogDocMergePolicy', '-facets', 'taxonomy:Date;Date', '-facets', 'taxonomy:Month;Month', '-facets', 'taxonomy:DayOfYear;DayOfYear', '-facets', 'sortedset:Month;Month', '-facets', 'sortedset:DayOfYear;DayOfYear', '-facets', 'sortedset:Date;Date', '-facets', 'taxonomy:RandomLabel;RandomLabel', '-facets', 'sortedset:RandomLabel;RandomLabel', '-facetDVFormat', 'Lucene90', '-idFieldPostingsFormat', 'Lucene104', '-idFieldPostingsFormat', 'Lucene104', '-grouping', '-waitForCommit', '-hnswThreadsPerMerge', '16', '-hnswThreadPoolCount', '96'], cwd=/l/trunk.nightly/lucene/benchmark vmstatLogFile=/l/logs.nightly/nightly.vmstat.log topLogFile=/l/logs.nightly/nightly.top.log run vmstat: /usr/sbin/vmstat --active --wide --timestamp --unit M 1 > /l/logs.nightly/nightly.vmstat.log 2>&1 & run /usr/sbin/ps -eo pid,%cpu,%mem,bsdtime,etime,start,args --cols=120 --sort=-%cpu | head -10 >> /l/logs.nightly/nightly.top.log 2>&1 to /l/logs.nightly/nightly.top.log now kill vmstat: pid=2640507 Profiler summary for /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.jfr Version: 2.1 Chunks: 168 Start: 2026-05-16 19:36:47 (UTC) Duration: 11827 s Event Type Count Size (bytes) ============================================================= jdk.CPUTimeSample 86921441 1651035214 jdk.FileWrite 15408136 354358995 jdk.FileRead 343579 9533469 jdk.CPULoad 223349 4690329 jdk.BooleanFlag 116256 3836952 jdk.ObjectAllocationInNewTLAB 35974 784141 jdk.Checkpoint 35338 98530307 jdk.UnsignedIntFlag 10416 373464 jdk.IntFlag 9408 349944 jdk.StringFlag 7560 323736 jdk.CPUInformation 168 252504 jdk.GCConfiguration 168 4536 jdk.JVMInformation 168 316680 jdk.Metadata 168 18568704 jdk.Compilation 165 4612 jdk.ObjectAllocationOutsideTLAB 159 2830 jdk.GarbageCollection 71 1846 jdk.ActiveRecording 0 0 jdk.ActiveSetting 0 0 jdk.AllocationRequiringGC 0 0 jdk.BooleanFlagChanged 0 0 jdk.CPUTimeSamplesLost 0 0 jdk.CPUTimeStampCounter 0 0 jdk.ClassDefine 0 0 jdk.ClassLoad 0 0 jdk.ClassLoaderStatistics 0 0 jdk.ClassLoadingStatistics 0 0 jdk.ClassRedefinition 0 0 jdk.ClassUnload 0 0 jdk.CodeCacheConfiguration 0 0 jdk.CodeCacheFull 0 0 jdk.CodeCacheStatistics 0 0 jdk.CompilationFailure 0 0 jdk.CompilerConfiguration 0 0 jdk.CompilerInlining 0 0 jdk.CompilerPhase 0 0 jdk.CompilerQueueUtilization 0 0 jdk.CompilerStatistics 0 0 jdk.ConcurrentModeFailure 0 0 jdk.ContainerCPUThrottling 0 0 jdk.ContainerCPUUsage 0 0 jdk.ContainerConfiguration 0 0 jdk.ContainerIOUsage 0 0 jdk.ContainerMemoryUsage 0 0 jdk.ContinuationFreeze 0 0 jdk.ContinuationFreezeFast 0 0 jdk.ContinuationFreezeSlow 0 0 jdk.ContinuationThaw 0 0 jdk.ContinuationThawFast 0 0 jdk.ContinuationThawSlow 0 0 jdk.DataLoss 0 0 jdk.Deoptimization 0 0 jdk.DeprecatedInvocation 0 0 jdk.Deserialization 0 0 jdk.DirectBufferStatistics 0 0 jdk.DoubleFlag 0 0 jdk.DoubleFlagChanged 0 0 jdk.DumpReason 0 0 jdk.EvacuationFailed 0 0 jdk.EvacuationInformation 0 0 jdk.ExceptionStatistics 0 0 jdk.ExecuteVMOperation 0 0 jdk.ExecutionSample 0 0 jdk.FileForce 0 0 jdk.FinalizerStatistics 0 0 jdk.Flush 0 0 jdk.G1AdaptiveIHOP 0 0 jdk.G1BasicIHOP 0 0 jdk.G1EvacuationOldStatistics 0 0 jdk.G1EvacuationYoungStatistics 0 0 jdk.G1GarbageCollection 0 0 jdk.G1HeapRegionInformation 0 0 jdk.G1HeapRegionTypeChange 0 0 jdk.G1HeapSummary 0 0 jdk.G1MMU 0 0 jdk.GCCPUTime 0 0 jdk.GCHeapConfiguration 0 0 jdk.GCHeapMemoryPoolUsage 0 0 jdk.GCHeapMemoryUsage 0 0 jdk.GCHeapSummary 0 0 jdk.GCPhaseConcurrent 0 0 jdk.GCPhaseConcurrentLevel1 0 0 jdk.GCPhaseConcurrentLevel2 0 0 jdk.GCPhaseParallel 0 0 jdk.GCPhasePause 0 0 jdk.GCPhasePauseLevel1 0 0 jdk.GCPhasePauseLevel2 0 0 jdk.GCPhasePauseLevel3 0 0 jdk.GCPhasePauseLevel4 0 0 jdk.GCReferenceStatistics 0 0 jdk.GCSurvivorConfiguration 0 0 jdk.GCTLABConfiguration 0 0 jdk.HeapDump 0 0 jdk.InitialEnvironmentVariable 0 0 jdk.InitialSecurityProperty 0 0 jdk.InitialSystemProperty 0 0 jdk.IntFlagChanged 0 0 jdk.JITRestart 0 0 jdk.JavaAgent 0 0 jdk.JavaErrorThrow 0 0 jdk.JavaExceptionThrow 0 0 jdk.JavaMonitorDeflate 0 0 jdk.JavaMonitorEnter 0 0 jdk.JavaMonitorInflate 0 0 jdk.JavaMonitorNotify 0 0 jdk.JavaMonitorStatistics 0 0 jdk.JavaMonitorWait 0 0 jdk.JavaThreadStatistics 0 0 jdk.LongFlag 0 0 jdk.LongFlagChanged 0 0 jdk.MetaspaceAllocationFailure 0 0 jdk.MetaspaceChunkFreeListSummary 0 0 jdk.MetaspaceGCThreshold 0 0 jdk.MetaspaceOOM 0 0 jdk.MetaspaceSummary 0 0 jdk.MethodTiming 0 0 jdk.MethodTrace 0 0 jdk.ModuleExport 0 0 jdk.ModuleRequire 0 0 jdk.NativeAgent 0 0 jdk.NativeLibrary 0 0 jdk.NativeLibraryLoad 0 0 jdk.NativeLibraryUnload 0 0 jdk.NativeMemoryUsage 0 0 jdk.NativeMemoryUsageTotal 0 0 jdk.NativeMethodSample 0 0 jdk.NetworkUtilization 0 0 jdk.OSInformation 0 0 jdk.ObjectAllocationSample 0 0 jdk.ObjectCount 0 0 jdk.ObjectCountAfterGC 0 0 jdk.OldGarbageCollection 0 0 jdk.OldObjectSample 0 0 jdk.PSHeapSummary 0 0 jdk.ParallelOldGarbageCollection 0 0 jdk.PhysicalMemory 0 0 jdk.ProcessStart 0 0 jdk.PromoteObjectInNewPLAB 0 0 jdk.PromoteObjectOutsidePLAB 0 0 jdk.PromotionFailed 0 0 jdk.RedefineClasses 0 0 jdk.ReservedStackActivation 0 0 jdk.ResidentSetSize 0 0 jdk.RetransformClasses 0 0 jdk.SafepointBegin 0 0 jdk.SafepointEnd 0 0 jdk.SafepointLatency 0 0 jdk.SafepointStateSynchronization 0 0 jdk.SecurityPropertyModification 0 0 jdk.SecurityProviderService 0 0 jdk.SerializationMisdeclaration 0 0 jdk.ShenandoahEvacuationInformation 0 0 jdk.ShenandoahHeapRegionInformation 0 0 jdk.ShenandoahHeapRegionStateChange 0 0 jdk.Shutdown 0 0 jdk.SocketRead 0 0 jdk.SocketWrite 0 0 jdk.StringFlagChanged 0 0 jdk.StringTableStatistics 0 0 jdk.SwapSpace 0 0 jdk.SymbolTableStatistics 0 0 jdk.SyncOnValueBasedClass 0 0 jdk.SystemGC 0 0 jdk.SystemProcess 0 0 jdk.TLSHandshake 0 0 jdk.TenuringDistribution 0 0 jdk.ThreadAllocationStatistics 0 0 jdk.ThreadCPULoad 0 0 jdk.ThreadContextSwitchRate 0 0 jdk.ThreadDump 0 0 jdk.ThreadEnd 0 0 jdk.ThreadPark 0 0 jdk.ThreadSleep 0 0 jdk.ThreadStart 0 0 jdk.UnsignedIntFlagChanged 0 0 jdk.UnsignedLongFlag 0 0 jdk.UnsignedLongFlagChanged 0 0 jdk.VirtualThreadEnd 0 0 jdk.VirtualThreadPinned 0 0 jdk.VirtualThreadStart 0 0 jdk.VirtualThreadSubmitFailed 0 0 jdk.VirtualizationInformation 0 0 jdk.X509Certificate 0 0 jdk.X509Validation 0 0 jdk.YoungGarbageCollection 0 0 jdk.YoungGenerationConfiguration 0 0 jdk.ZAllocationStall 0 0 jdk.ZOldGarbageCollection 0 0 jdk.ZPageAllocation 0 0 jdk.ZRelocationSet 0 0 jdk.ZRelocationSetGroup 0 0 jdk.ZStatisticsCounter 0 0 jdk.ZStatisticsSampler 0 0 jdk.ZThreadPhase 0 0 jdk.ZUncommit 0 0 jdk.ZYoungGarbageCollection 0 0 profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.jfr Profiler for cpu at stackSize=1 [search index (fixed segments) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.jfr is 2043.70 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 86921441 events (total: 86M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 45.07% 39M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] 32.46% 28M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] 7.89% 6M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] 1.32% 1M org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] 1.01% 880203 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] 0.91% 791517 jdk.internal.util.Preconditions#outOfBoundsCheckIndex():124 [Inlined code] 0.90% 784554 java.util.Arrays#fill():3144 [Inlined code] 0.78% 675551 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [Inlined code] 0.73% 636014 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [Inlined code] 0.57% 494063 org.apache.lucene.util.VectorUtil#dotProduct():64 [Inlined code] 0.55% 476095 jdk.jfr.internal.JVM#emitEvent() [Native code] 0.43% 373383 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [Inlined code] 0.38% 330491 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] 0.36% 316123 java.util.ArrayList#elementData():412 [Inlined code] 0.35% 307716 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#apparentlyFirstQueuedIsExclusive():897 [Inlined code] 0.34% 294139 java.util.concurrent.locks.ReentrantReadWriteLock#readLock():248 [Inlined code] 0.30% 259442 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():254 [JIT compiled code] 0.22% 191511 org.apache.lucene.util.FixedBitSet#getAndSet():307 [Inlined code] 0.18% 156185 org.apache.lucene.util.VectorUtil#normalizeToUnitInterval():412 [Inlined code] 0.17% 144169 jdk.incubator.vector.FloatVector#fromArray0Template():3343 [Inlined code] 0.16% 141070 org.apache.lucene.util.FixedBitSet#getAndSet():308 [Inlined code] 0.16% 136329 java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] 0.16% 135141 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] 0.14% 119741 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] 0.13% 113983 org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] 0.11% 98855 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():326 [JIT compiled code] 0.10% 89844 org.apache.lucene.codecs.lucene95.OffHeapFloatVectorValues#vectorValue():83 [Inlined code] 0.10% 86490 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#getState():165 [Inlined code] 0.09% 79770 org.apache.lucene.index.TermsHashPerField#writeByte():232 [Inlined code] 0.09% 76949 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] 0.09% 75250 org.apache.lucene.util.hnsw.HnswLock#read():40 [Inlined code] 0.07% 64363 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] 0.07% 56637 org.apache.lucene.util.TernaryLongHeap#downHeap():232 [Inlined code] 0.06% 52646 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] 0.06% 51663 org.apache.lucene.util.hnsw.NeighborQueue#encode():115 [Inlined code] 0.06% 51593 org.apache.lucene.util.TernaryLongHeap#updateTop():153 [Inlined code] 0.06% 50801 java.util.Arrays#fill():3143 [Inlined code] 0.06% 48993 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#compareAndSetState():189 [Inlined code] 0.05% 44096 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():51 [JIT compiled code] 0.05% 43758 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] 0.05% 43493 org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] 0.05% 43346 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] 0.05% 41556 jdk.internal.foreign.MemorySessionImpl#checkValidStateRaw():200 [Inlined code] 0.05% 41334 org.apache.lucene.util.TernaryLongHeap#push():81 [Inlined code] 0.05% 40856 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():336 [JIT compiled code] 0.05% 40706 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] 0.04% 38271 org.apache.lucene.util.TernaryLongHeap#upHeap():204 [Inlined code] 0.04% 37479 org.apache.lucene.util.hnsw.NeighborArray#nodes():217 [Inlined code] 0.04% 35961 jdk.internal.foreign.AbstractMemorySegmentImpl#sessionImpl():429 [Inlined code] 0.04% 33831 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=2 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.jfr Profiler for cpu at stackSize=2 [search index (fixed segments) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.jfr is 2043.70 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 86921441 events (total: 86M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=2 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 45.07% 39M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] 32.46% 28M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] 7.89% 6M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] 1.32% 1M org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] 1.01% 880203 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] 0.91% 791517 jdk.internal.util.Preconditions#outOfBoundsCheckIndex():124 [Inlined code] at jdk.internal.util.Preconditions#checkIndex():448 [Inlined code] 0.90% 784554 java.util.Arrays#fill():3144 [Inlined code] at org.apache.lucene.util.FixedBitSet#clear():174 [Inlined code] 0.78% 675551 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] 0.73% 636014 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.57% 494063 org.apache.lucene.util.VectorUtil#dotProduct():64 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] 0.55% 476095 jdk.jfr.internal.JVM#emitEvent() [Native code] at jdk.jfr.internal.periodic.JVMEventTask#execute():54 [Inlined code] 0.38% 330491 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] 0.36% 316077 java.util.ArrayList#elementData():412 [Inlined code] at java.util.ArrayList#get():429 [Inlined code] 0.35% 307716 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#apparentlyFirstQueuedIsExclusive():897 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$NonfairSync#readerShouldBlock():698 [Inlined code] 0.34% 294139 java.util.concurrent.locks.ReentrantReadWriteLock#readLock():248 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():40 [Inlined code] 0.30% 265019 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():249 [JIT compiled code] 0.30% 259442 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():254 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] 0.22% 191511 org.apache.lucene.util.FixedBitSet#getAndSet():307 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] 0.17% 144169 jdk.incubator.vector.FloatVector#fromArray0Template():3343 [Inlined code] at jdk.incubator.vector.Float256Vector#fromArray0():935 [Inlined code] 0.16% 141070 org.apache.lucene.util.FixedBitSet#getAndSet():308 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] 0.16% 136329 java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] 0.16% 135141 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] 0.15% 134476 org.apache.lucene.util.VectorUtil#normalizeToUnitInterval():412 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] 0.13% 116209 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.11% 99044 org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] 0.11% 94711 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():326 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.10% 88086 org.apache.lucene.codecs.lucene95.OffHeapFloatVectorValues#vectorValue():83 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] 0.09% 81992 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#seek():177 [Inlined code] 0.09% 76949 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.09% 75250 org.apache.lucene.util.hnsw.HnswLock#read():40 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] 0.08% 66607 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#getState():165 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():475 [Inlined code] 0.07% 64363 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] 0.07% 56637 org.apache.lucene.util.TernaryLongHeap#downHeap():232 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#pop():124 [Inlined code] 0.06% 52125 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] 0.06% 51593 org.apache.lucene.util.TernaryLongHeap#updateTop():153 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] 0.06% 50801 java.util.Arrays#fill():3143 [Inlined code] at org.apache.lucene.util.FixedBitSet#clear():174 [Inlined code] 0.05% 44096 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():51 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.05% 43758 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] 0.05% 43493 org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():140 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] 0.05% 43346 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] 0.05% 40706 org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 0.05% 39813 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.04% 38429 org.apache.lucene.util.hnsw.NeighborQueue#encode():115 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] 0.04% 38271 org.apache.lucene.util.TernaryLongHeap#upHeap():204 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#push():82 [Inlined code] 0.04% 36872 org.apache.lucene.util.TernaryLongHeap#push():81 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] 0.04% 34632 jdk.internal.foreign.AbstractMemorySegmentImpl#sessionImpl():429 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():336 [Inlined code] 0.04% 33831 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] 0.04% 32520 org.apache.lucene.util.hnsw.NeighborArray#nodes():217 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():254 [JIT compiled code] 0.04% 31770 org.apache.lucene.util.BytesRefHash#findHash():381 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] 0.04% 30765 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():347 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.jfr Profiler for cpu at stackSize=4 [search index (fixed segments) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.jfr is 2043.70 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 86921441 events (total: 86M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 45.07% 39M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] 31.65% 27M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] 7.88% 6M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] 1.32% 1M org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.91% 789350 jdk.internal.util.Preconditions#outOfBoundsCheckIndex():124 [Inlined code] at jdk.internal.util.Preconditions#checkIndex():448 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#checkBounds():403 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#checkAccess():357 [Inlined code] 0.90% 784554 java.util.Arrays#fill():3144 [Inlined code] at org.apache.lucene.util.FixedBitSet#clear():174 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#prepareScratchState():374 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():290 [JIT compiled code] 0.81% 703775 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] 0.73% 636014 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.68% 593003 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] 0.64% 554665 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():166 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] 0.55% 476095 jdk.jfr.internal.JVM#emitEvent() [Native code] at jdk.jfr.internal.periodic.JVMEventTask#execute():54 [Inlined code] at jdk.jfr.internal.periodic.PeriodicTask#run():125 [Inlined code] at jdk.jfr.internal.periodic.PeriodicEvents#doPeriodic():145 [JIT compiled code] 0.47% 409753 org.apache.lucene.util.VectorUtil#dotProduct():64 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] 0.38% 330491 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] 0.35% 307290 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#apparentlyFirstQueuedIsExclusive():897 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$NonfairSync#readerShouldBlock():698 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():480 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] 0.35% 302036 java.util.ArrayList#elementData():412 [Inlined code] at java.util.ArrayList#get():429 [Inlined code] at org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] 0.34% 294139 java.util.concurrent.locks.ReentrantReadWriteLock#readLock():248 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():40 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] 0.33% 287042 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():128 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] 0.29% 251020 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():249 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.28% 246898 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():254 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.22% 187705 org.apache.lucene.util.FixedBitSet#getAndSet():307 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.16% 137909 org.apache.lucene.util.FixedBitSet#getAndSet():308 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.16% 136329 java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] 0.15% 128346 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] 0.13% 114368 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.11% 98037 jdk.incubator.vector.FloatVector#fromArray0Template():3343 [Inlined code] at jdk.incubator.vector.Float256Vector#fromArray0():935 [Inlined code] at jdk.incubator.vector.FloatVector#fromArray():2856 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():154 [JIT compiled code] 0.11% 93736 org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.11% 92061 org.apache.lucene.util.VectorUtil#normalizeToUnitInterval():412 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] 0.10% 86846 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():326 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [JIT compiled code] 0.09% 82548 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] 0.09% 81992 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [Inlined code] at org.apache.lucene.util.hnsw.OnHeapHnswGraph#seek():177 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#graphSeek():389 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] 0.09% 79741 org.apache.lucene.util.VectorUtil#dotProduct():64 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] 0.08% 72955 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.08% 71866 org.apache.lucene.util.hnsw.HnswLock#read():40 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.08% 66242 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#getState():165 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():475 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] 0.08% 65350 org.apache.lucene.codecs.lucene95.OffHeapFloatVectorValues#vectorValue():83 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.06% 53664 org.apache.lucene.util.TernaryLongHeap#downHeap():232 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#pop():124 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#pop():129 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():322 [JIT compiled code] 0.06% 52125 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.06% 51593 org.apache.lucene.util.TernaryLongHeap#updateTop():153 [Inlined code] at org.apache.lucene.util.TernaryLongHeap#insertWithOverflow():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#collect():713 [Inlined code] 0.06% 51302 org.apache.lucene.util.BytesRefHash#findHash():376 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [Inlined code] at org.apache.lucene.index.IndexingChain$PerField#invertTokenStream():1855 [JIT compiled code] 0.06% 50801 java.util.Arrays#fill():3143 [Inlined code] at org.apache.lucene.util.FixedBitSet#clear():174 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#prepareScratchState():374 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():290 [JIT compiled code] 0.05% 43346 sun.nio.ch.UnixFileDispatcherImpl#write0() [Native code] at sun.nio.ch.UnixFileDispatcherImpl#write():65 [Inlined code] at sun.nio.ch.IOUtil#writeFromNativeBuffer():137 [Inlined code] at sun.nio.ch.IOUtil#write():102 [Inlined code] 0.05% 41784 org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():51 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.04% 38778 org.apache.lucene.util.VectorUtil#normalizeToUnitInterval():412 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] 0.04% 38764 org.apache.lucene.util.BytesRefBlockPool#equals():160 [Inlined code] at org.apache.lucene.util.BytesRefHash#findHash():382 [Inlined code] at org.apache.lucene.util.BytesRefHash#add():334 [JIT compiled code] at org.apache.lucene.index.TermsHashPerField#add():195 [Inlined code] 0.04% 37970 org.apache.lucene.util.hnsw.NeighborQueue#encode():115 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#insertWithOverflow():91 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#collect():713 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():350 [JIT compiled code] 0.04% 35702 org.apache.lucene.util.TernaryLongHeap#push():81 [Inlined code] at org.apache.lucene.util.hnsw.NeighborQueue#add():78 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():348 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.04% 35335 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():82 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] 0.04% 35238 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.04% 34629 jdk.internal.foreign.AbstractMemorySegmentImpl#sessionImpl():429 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():336 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] 0.04% 33831 org.apache.lucene.analysis.standard.StandardTokenizerImpl#getNextToken():1018 [JIT compiled code] at org.apache.lucene.analysis.standard.StandardTokenizer#incrementToken():157 [Inlined code] at org.apache.lucene.analysis.LowerCaseFilter#incrementToken():37 [JIT compiled code] at org.apache.lucene.analysis.FilteringTokenFilter#incrementToken():51 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=8 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.jfr Profiler for cpu at stackSize=8 [search index (fixed segments) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.jfr is 2043.70 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 86921441 events (total: 86M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=8 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 29.64% 25M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 11.76% 10M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():120 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] 10.53% 9M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():121 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] 9.50% 8M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():123 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] 7.59% 6M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():122 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] 2.61% 2M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():155 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] 1.88% 1M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():110 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] 1.71% 1M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():112 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] 1.65% 1M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():118 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] 1.63% 1M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():113 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] 1.33% 1M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 1.28% 1M org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [JIT compiled code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] 0.91% 787630 jdk.internal.util.Preconditions#outOfBoundsCheckIndex():124 [Inlined code] at jdk.internal.util.Preconditions#checkIndex():448 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#checkBounds():403 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#checkAccess():357 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#copy():650 [Inlined code] at java.lang.foreign.MemorySegment#copy():2555 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#readFloats():245 [Inlined code] at org.apache.lucene.codecs.lucene95.OffHeapFloatVectorValues#vectorValue():83 [Inlined code] 0.89% 777648 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():80 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] 0.83% 719919 jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():111 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] 0.81% 705903 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():150 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] 0.76% 661605 java.util.Arrays#fill():3144 [Inlined code] at org.apache.lucene.util.FixedBitSet#clear():174 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#prepareScratchState():374 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():290 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.71% 617693 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():140 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] 0.68% 593003 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.68% 592977 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.66% 574780 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():145 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] 0.64% 554235 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.63% 548656 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] 0.55% 476095 jdk.jfr.internal.JVM#emitEvent() [Native code] at jdk.jfr.internal.periodic.JVMEventTask#execute():54 [Inlined code] at jdk.jfr.internal.periodic.PeriodicTask#run():125 [Inlined code] at jdk.jfr.internal.periodic.PeriodicEvents#doPeriodic():145 [JIT compiled code] at jdk.jfr.internal.PlatformRecorder#periodicTask():502 [JIT compiled code] at jdk.jfr.internal.PlatformRecorder#lambda$startDiskMonitor$0():428 [Interpreted code] at jdk.jfr.internal.PlatformRecorder$$Lambda.0x000000004907aa58#run() [Interpreted code] at java.lang.Thread#runWith():1487 [Interpreted code] 0.45% 392699 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():166 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] 0.43% 373660 org.apache.lucene.util.VectorUtil#dotProduct():64 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.35% 307290 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#apparentlyFirstQueuedIsExclusive():897 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$NonfairSync#readerShouldBlock():698 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():480 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] 0.33% 290907 java.util.ArrayList#elementData():412 [Inlined code] at java.util.ArrayList#get():429 [Inlined code] at org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.32% 276245 java.util.concurrent.locks.ReentrantReadWriteLock#readLock():248 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():40 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.29% 251020 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():249 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 0.28% 246898 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():254 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.23% 203430 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.19% 162965 org.apache.lucene.util.FixedBitSet#getAndSet():307 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.19% 160979 jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():78 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] 0.15% 128346 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] 0.14% 125919 java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.14% 121947 java.util.Arrays#fill():3144 [Inlined code] at org.apache.lucene.util.FixedBitSet#clear():174 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#prepareScratchState():374 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():290 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.14% 120997 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():128 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] 0.13% 115238 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] 0.13% 114368 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x0000000049209848#call() [JIT compiled code] 0.12% 106392 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():166 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] 0.11% 94442 jdk.incubator.vector.FloatVector#fromArray0Template():3343 [Inlined code] at jdk.incubator.vector.Float256Vector#fromArray0():935 [Inlined code] at jdk.incubator.vector.FloatVector#fromArray():2856 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():154 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] 0.11% 92923 org.apache.lucene.util.FixedBitSet#getAndSet():308 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.10% 90877 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():136 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] 0.10% 89845 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():128 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] 0.10% 86846 org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():326 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [JIT compiled code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 0.09% 82530 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [JIT compiled code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] 0.09% 81157 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [JIT compiled code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.09% 80871 org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 0.09% 79741 org.apache.lucene.util.VectorUtil#dotProduct():64 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.jfr Profiler for cpu at stackSize=12 [search index (fixed segments) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.jfr is 2043.70 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 86921441 events (total: 86M) tests.profile.mode=cpu tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT CPU SAMPLES STACK 29.64% 25M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 10.45% 9M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():120 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 9.10% 7M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():123 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 9.04% 7M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():121 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 5.51% 4M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():122 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 2.23% 1M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():155 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 1.58% 1M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():113 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 1.57% 1M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():112 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 1.54% 1M jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():110 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 1.53% 1M jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():122 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 1.33% 1M org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 1.28% 1M org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [JIT compiled code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 1.04% 907482 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():121 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.86% 749615 jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():118 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.85% 735991 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():120 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.77% 668842 jdk.internal.util.Preconditions#outOfBoundsCheckIndex():124 [Inlined code] at jdk.internal.util.Preconditions#checkIndex():448 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#checkBounds():403 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#checkAccess():357 [Inlined code] at jdk.internal.foreign.AbstractMemorySegmentImpl#copy():650 [Inlined code] at java.lang.foreign.MemorySegment#copy():2555 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#readFloats():245 [Inlined code] at org.apache.lucene.codecs.lucene95.OffHeapFloatVectorValues#vectorValue():83 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] 0.76% 661605 java.util.Arrays#fill():3144 [Inlined code] at org.apache.lucene.util.FixedBitSet#clear():174 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#prepareScratchState():374 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():290 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x0000000049209848#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 0.70% 612729 jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():111 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.70% 607827 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():80 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] 0.68% 593003 org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():300 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x0000000049209848#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 0.67% 582903 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.63% 548161 org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.60% 524829 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():150 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.60% 524250 org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():477 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x0000000049209848#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.56% 485633 jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():118 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.55% 476095 jdk.jfr.internal.JVM#emitEvent() [Native code] at jdk.jfr.internal.periodic.JVMEventTask#execute():54 [Inlined code] at jdk.jfr.internal.periodic.PeriodicTask#run():125 [Inlined code] at jdk.jfr.internal.periodic.PeriodicEvents#doPeriodic():145 [JIT compiled code] at jdk.jfr.internal.PlatformRecorder#periodicTask():502 [JIT compiled code] at jdk.jfr.internal.PlatformRecorder#lambda$startDiskMonitor$0():428 [Interpreted code] at jdk.jfr.internal.PlatformRecorder$$Lambda.0x000000004907aa58#run() [Interpreted code] at java.lang.Thread#runWith():1487 [Interpreted code] at java.lang.Thread#run():1474 [Interpreted code] 0.44% 385501 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():145 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.43% 373660 org.apache.lucene.util.VectorUtil#dotProduct():64 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x0000000049209848#call() [JIT compiled code] 0.42% 368260 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():140 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] 0.35% 308102 jdk.incubator.vector.FloatVector#reduceLanesTemplate():2701 [Inlined code] at jdk.incubator.vector.Float256Vector#reduceLanes():317 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():166 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.33% 290877 java.util.ArrayList#elementData():412 [Inlined code] at java.util.ArrayList#get():429 [Inlined code] at org.apache.lucene.index.FloatVectorValues$1#vectorValue():122 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [JIT compiled code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.33% 289660 java.util.concurrent.locks.AbstractQueuedLongSynchronizer#apparentlyFirstQueuedIsExclusive():897 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$NonfairSync#readerShouldBlock():698 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$Sync#tryAcquireShared():480 [Inlined code] at java.util.concurrent.locks.AbstractQueuedLongSynchronizer#acquireShared():738 [Inlined code] at java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.33% 285153 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():120 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.32% 276245 java.util.concurrent.locks.ReentrantReadWriteLock#readLock():248 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():40 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x0000000049209848#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] 0.31% 265550 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():123 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.30% 264029 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():121 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.29% 251020 org.apache.lucene.util.hnsw.OnHeapHnswGraph#getNeighbors():108 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():249 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x0000000049209848#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] 0.28% 240916 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():155 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] 0.27% 232601 org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():254 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x0000000049209848#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.26% 226276 jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():110 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():318 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.23% 196530 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():140 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] 0.21% 180512 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():122 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():342 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():313 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.19% 162619 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulkImpl():122 [JIT compiled code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProductBulk():69 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():147 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#bulkScore():302 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():478 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.18% 160510 jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegmentScopedInternal():358 [Inlined code] at jdk.internal.misc.ScopedMemoryAccess#loadFromMemorySegment():335 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment0Template():3410 [Inlined code] at jdk.incubator.vector.Float256Vector#fromMemorySegment0():958 [Inlined code] at jdk.incubator.vector.FloatVector#fromMemorySegment():3042 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():78 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] 0.18% 153948 org.apache.lucene.util.FixedBitSet#getAndSet():307 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x0000000049209848#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 0.18% 153575 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():80 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():329 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] 0.17% 146014 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():145 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] 0.16% 136225 jdk.incubator.vector.FloatVector#lanewiseTemplate():1023 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():294 [Inlined code] at jdk.incubator.vector.Float256Vector#lanewise():43 [Inlined code] at jdk.incubator.vector.FloatVector#fma():2521 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#fma():93 [Inlined code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProductBody():150 [JIT compiled code] at org.apache.lucene.internal.vectorization.PanamaVectorUtilSupport#dotProduct():116 [Inlined code] at org.apache.lucene.util.VectorUtil#dotProduct():67 [Inlined code] at org.apache.lucene.index.VectorSimilarityFunction$2#compare():57 [Inlined code] at org.apache.lucene.codecs.hnsw.DefaultFlatVectorScorer$FloatScoringSupplier$1#score():150 [JIT compiled code] at org.apache.lucene.util.hnsw.RandomVectorScorer#bulkScore():50 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#diversityCheck():515 [JIT compiled code] 0.15% 128346 org.apache.lucene.internal.vectorization.MemorySegmentBulkVectorOps$DotProduct#dotProduct():76 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$DotProductSupplier$1#vectorOp():134 [Inlined code] at org.apache.lucene.internal.vectorization.Lucene99MemorySegmentFloatVectorScorerSupplier$AbstractBulkScorer#score():287 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#isWorstNonDiverse():318 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():301 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] 0.14% 125919 java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock#lock():744 [Inlined code] at org.apache.lucene.util.hnsw.HnswLock#read():41 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$MergeSearcher#graphSeek():247 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphSearcher#searchLevel():323 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():328 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x0000000049209848#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=1 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.jfr Profiler for heap at stackSize=1 [search index (fixed segments) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.jfr is 2043.70 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 36130 events (total: 682458M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=1 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 14.80% 100988M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] 14.76% 100764M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] 5.03% 34323M perf.LineFileDocs#readVector():212 [Inlined code] 4.95% 33779M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] 4.65% 31761M java.nio.HeapByteBuffer#():75 [Inlined code] 3.16% 21561M org.apache.lucene.util.BytesRef#():71 [Inlined code] 2.81% 19152M org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#getNode():183 [Inlined code] 2.61% 17827M java.util.Arrays#copyOf():3478 [Inlined code] 2.38% 16263M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] 2.04% 13910M perf.LineFileDocs#nextDoc():647 [JIT compiled code] 1.80% 12317M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] 1.53% 10474M org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#getFrame():169 [Inlined code] 1.49% 10191M org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#getNode():180 [Inlined code] 1.43% 9773M java.util.Arrays#copyOf():3537 [Inlined code] 1.37% 9315M java.util.Arrays#copyOfRange():3849 [Inlined code] 1.31% 8973M java.util.ArrayList#grow():240 [Inlined code] 1.24% 8483M perf.LineFileDocs#readDocs():176 [JIT compiled code] 1.22% 8301M java.lang.AbstractStringBuilder#():101 [Inlined code] 1.21% 8288M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] 1.13% 7678M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] 1.12% 7668M jdk.internal.misc.Unsafe#allocateUninitializedArray():1396 [Inlined code] 1.06% 7235M java.lang.StringUTF16#compress():212 [Inlined code] 0.90% 6120M java.util.ImmutableCollections$AbstractImmutableList#iterator():303 [JIT compiled code] 0.89% 6088M java.lang.StringBuilder#toString():478 [Inlined code] 0.82% 5584M org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():448 [JIT compiled code] 0.77% 5245M org.apache.lucene.document.StringField#():61 [Inlined code] 0.76% 5180M java.util.HashMap#newNode():1910 [Inlined code] 0.71% 4861M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] 0.71% 4850M org.apache.lucene.codecs.lucene104.Lucene104PostingsReader#newTermState():203 [Inlined code] 0.65% 4433M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] 0.62% 4212M org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():423 [JIT compiled code] 0.59% 4041M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] 0.54% 3703M java.util.HashMap#resize():711 [JIT compiled code] 0.53% 3618M java.lang.StringUTF16#compress():216 [Inlined code] 0.50% 3426M perf.LineFileDocs#cloneDoc():533 [JIT compiled code] 0.50% 3419M org.apache.lucene.util.FixedBitSet#():148 [Inlined code] 0.47% 3228M org.apache.lucene.codecs.lucene104.Lucene104PostingsReader$BlockPostingsEnum#():301 [JIT compiled code] 0.46% 3159M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] 0.43% 2939M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [Inlined code] 0.39% 2666M org.apache.lucene.util.hnsw.NeighborArray#():55 [Inlined code] 0.39% 2642M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] 0.39% 2638M org.apache.lucene.codecs.lucene104.Lucene104PostingsReader$BlockPostingsEnum#():334 [JIT compiled code] 0.34% 2287M org.apache.lucene.util.hnsw.NeighborArray#():54 [Inlined code] 0.33% 2268M org.apache.lucene.facet.taxonomy.FacetLabel#():74 [Inlined code] 0.33% 2263M org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnumFrame#loadBlock():195 [JIT compiled code] 0.33% 2258M org.apache.lucene.facet.FacetsConfig#processSSDVFacetFields():497 [Inlined code] 0.32% 2200M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] 0.31% 2103M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] 0.30% 2081M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] 0.29% 1971M org.apache.lucene.store.MemorySegmentIndexInput#buildSlice():658 [Inlined code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=2 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.jfr Profiler for heap at stackSize=2 [search index (fixed segments) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.jfr is 2043.70 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 36130 events (total: 682458M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=2 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 14.80% 100988M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] 14.43% 98465M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] 5.03% 34323M perf.LineFileDocs#readVector():212 [Inlined code] at perf.LineFileDocs#readDocs():183 [JIT compiled code] 4.95% 33779M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] 4.60% 31409M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] 3.16% 21561M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] 2.81% 19152M org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#getNode():183 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#prepareSeekExact():412 [JIT compiled code] 2.61% 17827M java.util.Arrays#copyOf():3478 [Inlined code] at java.util.ArrayList#grow():238 [Inlined code] 2.38% 16263M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] 2.04% 13910M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] 1.80% 12317M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] 1.53% 10474M org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#getFrame():169 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#pushFrame():192 [JIT compiled code] 1.49% 10191M org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#getNode():180 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#prepareSeekExact():412 [JIT compiled code] 1.43% 9773M java.util.Arrays#copyOf():3537 [Inlined code] at java.lang.AbstractStringBuilder#ensureCapacityNewCoder():282 [JIT compiled code] 1.37% 9315M java.util.Arrays#copyOfRange():3849 [Inlined code] at java.lang.String#():4863 [Inlined code] 1.31% 8973M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] 1.24% 8483M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.22% 8301M java.lang.AbstractStringBuilder#():101 [Inlined code] at java.lang.StringBuilder#():106 [Inlined code] 1.21% 8288M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [Inlined code] 1.13% 7678M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] 1.12% 7668M jdk.internal.misc.Unsafe#allocateUninitializedArray():1396 [Inlined code] at java.lang.StringConcatHelper#newArray():578 [Inlined code] 1.06% 7235M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] 0.90% 6119M java.util.ImmutableCollections$AbstractImmutableList#iterator():303 [JIT compiled code] at org.apache.lucene.index.BufferedUpdatesStream#waitApplyForMerge():181 [JIT compiled code] 0.89% 6088M java.lang.StringBuilder#toString():478 [Inlined code] at org.apache.lucene.facet.FacetsConfig#pathToString():592 [JIT compiled code] 0.71% 4861M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 0.71% 4850M org.apache.lucene.codecs.lucene104.Lucene104PostingsReader#newTermState():203 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnumFrame#():106 [Inlined code] 0.59% 4041M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] 0.53% 3618M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] 0.51% 3459M org.apache.lucene.document.StringField#():61 [Inlined code] at org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():450 [JIT compiled code] 0.50% 3426M perf.LineFileDocs#cloneDoc():533 [JIT compiled code] at perf.LineFileDocs#nextDoc():766 [JIT compiled code] 0.48% 3248M org.apache.lucene.util.FixedBitSet#():148 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsReader$BlockPostingsEnum#():306 [JIT compiled code] 0.47% 3228M org.apache.lucene.codecs.lucene104.Lucene104PostingsReader$BlockPostingsEnum#():301 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsReader#postings():259 [Inlined code] 0.47% 3201M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] 0.47% 3189M org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():448 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processSSDVFacetFields():501 [Inlined code] 0.46% 3159M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] 0.45% 3101M java.util.HashMap#newNode():1910 [Inlined code] at java.util.HashMap#computeIfAbsent():1241 [JIT compiled code] 0.43% 2939M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] 0.39% 2648M java.util.HashMap#resize():711 [JIT compiled code] at java.util.HashMap#computeIfAbsent():1207 [JIT compiled code] 0.39% 2642M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] 0.39% 2638M org.apache.lucene.codecs.lucene104.Lucene104PostingsReader$BlockPostingsEnum#():334 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsReader#postings():259 [Inlined code] 0.35% 2394M org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():448 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():400 [JIT compiled code] 0.34% 2338M org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():423 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():400 [JIT compiled code] 0.34% 2299M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [Inlined code] 0.33% 2263M org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnumFrame#loadBlock():195 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum$1#get():489 [Inlined code] 0.33% 2258M org.apache.lucene.facet.FacetsConfig#processSSDVFacetFields():497 [Inlined code] at org.apache.lucene.facet.FacetsConfig#build():345 [JIT compiled code] 0.32% 2200M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] 0.31% 2103M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] 0.30% 2081M org.apache.lucene.index.ParallelPostingsArray#():33 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] 0.29% 1971M org.apache.lucene.store.MemorySegmentIndexInput#buildSlice():658 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#slice():604 [JIT compiled code] 0.29% 1968M org.apache.lucene.util.hnsw.OnHeapHnswGraph#addNode():158 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():286 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=4 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.jfr Profiler for heap at stackSize=4 [search index (fixed segments) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.jfr is 2043.70 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 36130 events (total: 682458M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=4 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 13.61% 92909M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] 13.28% 90619M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] 5.03% 34323M perf.LineFileDocs#readVector():212 [Inlined code] at perf.LineFileDocs#readDocs():183 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 4.95% 33779M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():335 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] 4.60% 31409M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] at perf.LineFileDocs#readVector():213 [Inlined code] at perf.LineFileDocs#readDocs():183 [JIT compiled code] 2.81% 19152M org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#getNode():183 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#prepareSeekExact():412 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#seekExact():521 [Inlined code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#findCategory():363 [JIT compiled code] 2.61% 17827M java.util.Arrays#copyOf():3478 [Inlined code] at java.util.ArrayList#grow():238 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] 2.38% 16263M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 2.04% 13910M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] 1.80% 12317M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 1.49% 10191M org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#getNode():180 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#prepareSeekExact():412 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#seekExact():521 [Inlined code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#findCategory():363 [JIT compiled code] 1.43% 9773M java.util.Arrays#copyOf():3537 [Inlined code] at java.lang.AbstractStringBuilder#ensureCapacityNewCoder():282 [JIT compiled code] at java.lang.AbstractStringBuilder#append():897 [Inlined code] at java.lang.StringBuilder#append():246 [Inlined code] 1.37% 9315M java.util.Arrays#copyOfRange():3849 [Inlined code] at java.lang.String#():4863 [Inlined code] at java.lang.StringBuilder#toString():478 [Inlined code] at org.apache.lucene.facet.FacetsConfig#pathToString():592 [JIT compiled code] 1.31% 8973M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] 1.24% 8483M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.21% 8288M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] 1.18% 8079M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] 1.15% 7845M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] 1.13% 7679M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#():61 [Inlined code] at org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():450 [JIT compiled code] 1.10% 7531M org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#getFrame():169 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#pushFrame():192 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#prepareSeekExact():396 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#seekExact():521 [Inlined code] 1.04% 7105M jdk.internal.misc.Unsafe#allocateUninitializedArray():1396 [Inlined code] at java.lang.StringConcatHelper#newArray():578 [Inlined code] at java.lang.StringConcatHelper#newArrayWithSuffix():611 [Inlined code] at java.lang.String$$StringConcat.0x000000004904c400#concat() [Inlined code] 0.94% 6422M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] 0.90% 6119M java.util.ImmutableCollections$AbstractImmutableList#iterator():303 [JIT compiled code] at org.apache.lucene.index.BufferedUpdatesStream#waitApplyForMerge():181 [JIT compiled code] at org.apache.lucene.index.IndexWriter#mergeInit():4963 [JIT compiled code] at org.apache.lucene.index.IndexWriter#merge():4779 [JIT compiled code] 0.82% 5621M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#():61 [Inlined code] at org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():426 [JIT compiled code] 0.66% 4516M org.apache.lucene.codecs.lucene104.Lucene104PostingsReader#newTermState():203 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnumFrame#():106 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#getFrame():169 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#pushFrame():192 [JIT compiled code] 0.64% 4382M org.apache.lucene.util.ByteBlockPool$DirectTrackingAllocator#getByteBlock():97 [Inlined code] at org.apache.lucene.util.ByteBlockPool#nextBuffer():196 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocKnownSizeSlice():118 [JIT compiled code] at org.apache.lucene.index.ByteSlicePool#allocSlice():98 [Inlined code] 0.59% 4041M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] 0.53% 3618M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] 0.52% 3540M java.lang.AbstractStringBuilder#():101 [Inlined code] at java.lang.StringBuilder#():106 [Inlined code] at org.apache.lucene.facet.FacetsConfig#pathToString():573 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():450 [JIT compiled code] 0.50% 3426M perf.LineFileDocs#cloneDoc():533 [JIT compiled code] at perf.LineFileDocs#nextDoc():766 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] 0.48% 3248M org.apache.lucene.util.FixedBitSet#():148 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsReader$BlockPostingsEnum#():306 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsReader#postings():259 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#postings():1010 [JIT compiled code] 0.47% 3228M org.apache.lucene.codecs.lucene104.Lucene104PostingsReader$BlockPostingsEnum#():301 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsReader#postings():259 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#postings():1010 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#findCategory():365 [JIT compiled code] 0.47% 3201M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] 0.47% 3189M org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():448 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processSSDVFacetFields():501 [Inlined code] at org.apache.lucene.facet.FacetsConfig#build():345 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] 0.46% 3159M org.apache.lucene.index.ParallelPostingsArray#():31 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] 0.43% 2943M org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#getFrame():169 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#pushFrame():192 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#prepareSeekExact():452 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#seekExact():521 [Inlined code] 0.43% 2939M org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():466 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 0.40% 2744M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Inlined code] 0.39% 2661M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.facet.FacetsConfig#processSSDVFacetFields():497 [Inlined code] at org.apache.lucene.facet.FacetsConfig#build():345 [JIT compiled code] 0.39% 2642M org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():242 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] at org.apache.lucene.index.TermsHashPerField$PostingsBytesStartArray#grow():304 [JIT compiled code] 0.39% 2638M org.apache.lucene.codecs.lucene104.Lucene104PostingsReader$BlockPostingsEnum#():334 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsReader#postings():259 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#postings():1010 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#findCategory():365 [JIT compiled code] 0.37% 2540M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.facet.FacetsConfig#processSSDVFacetFields():480 [Inlined code] at org.apache.lucene.facet.FacetsConfig#build():345 [JIT compiled code] 0.35% 2394M org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():448 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():400 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] 0.34% 2338M org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():423 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():400 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] 0.33% 2263M org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnumFrame#loadBlock():195 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum$1#get():489 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#seekExact():522 [Inlined code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#findCategory():363 [JIT compiled code] 0.33% 2258M org.apache.lucene.facet.FacetsConfig#processSSDVFacetFields():497 [Inlined code] at org.apache.lucene.facet.FacetsConfig#build():345 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] 0.32% 2200M org.apache.lucene.index.ParallelPostingsArray#():32 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#():238 [Inlined code] at org.apache.lucene.index.FreqProxTermsWriterPerField$FreqProxPostingsArray#newInstance():264 [Inlined code] at org.apache.lucene.index.ParallelPostingsArray#grow():46 [Inlined code] 0.31% 2126M java.lang.AbstractStringBuilder#():101 [Inlined code] at java.lang.StringBuilder#():106 [Inlined code] at org.apache.lucene.facet.FacetsConfig#pathToString():573 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():426 [JIT compiled code] 0.31% 2117M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [JIT compiled code] 0.31% 2103M org.apache.lucene.codecs.lucene90.Lucene90NormsProducer#getNorms():393 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():122 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=8 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.jfr Profiler for heap at stackSize=8 [search index (fixed segments) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.jfr is 2043.70 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 36130 events (total: 682458M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=8 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 8.03% 54781M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 8.00% 54586M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 5.03% 34323M perf.LineFileDocs#readVector():212 [Inlined code] at perf.LineFileDocs#readDocs():183 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 4.95% 33779M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():335 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():783 [JIT compiled code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 4.60% 31409M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] at perf.LineFileDocs#readVector():213 [Inlined code] at perf.LineFileDocs#readDocs():183 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 4.21% 28733M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [JIT compiled code] 3.79% 25866M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [JIT compiled code] 2.81% 19152M org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#getNode():183 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#prepareSeekExact():412 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#seekExact():521 [Inlined code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#findCategory():363 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#addCategory():389 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():383 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] 2.04% 13910M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocuments():1524 [Inlined code] at perf.IndexThreads$IndexThread#run():275 [JIT compiled code] 1.49% 10191M org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#getNode():180 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#prepareSeekExact():412 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#seekExact():521 [Inlined code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#findCategory():363 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#addCategory():389 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():383 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] 1.43% 9778M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 1.41% 9595M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 1.36% 9308M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] 1.24% 8483M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.18% 8047M java.util.Arrays#copyOf():3478 [Inlined code] at java.util.ArrayList#grow():238 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] at org.apache.lucene.document.Document#add():62 [Inlined code] at org.apache.lucene.facet.FacetsConfig#build():353 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] 1.10% 7531M org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#getFrame():169 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#pushFrame():192 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#prepareSeekExact():396 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#seekExact():521 [Inlined code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#findCategory():363 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#addCategory():389 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():383 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] 1.05% 7151M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [JIT compiled code] 1.04% 7105M jdk.internal.misc.Unsafe#allocateUninitializedArray():1396 [Inlined code] at java.lang.StringConcatHelper#newArray():578 [Inlined code] at java.lang.StringConcatHelper#newArrayWithSuffix():611 [Inlined code] at java.lang.String$$StringConcat.0x000000004904c400#concat() [Inlined code] at java.lang.invoke.DirectMethodHandle$Holder#invokeSpecial() [Inlined code] at java.lang.invoke.LambdaForm$MH.0x000000004904c800#invoke() [Inlined code] at java.lang.invoke.Invokers$Holder#linkToTargetMethod() [Inlined code] at org.apache.lucene.store.IndexInput#getFullSliceDescription():150 [Inlined code] 0.95% 6485M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [JIT compiled code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.94% 6422M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.90% 6119M java.util.ImmutableCollections$AbstractImmutableList#iterator():303 [JIT compiled code] at org.apache.lucene.index.BufferedUpdatesStream#waitApplyForMerge():181 [JIT compiled code] at org.apache.lucene.index.IndexWriter#mergeInit():4963 [JIT compiled code] at org.apache.lucene.index.IndexWriter#merge():4779 [JIT compiled code] at org.apache.lucene.index.IndexWriter$IndexWriterMergeSource#merge():6590 [JIT compiled code] at org.apache.lucene.index.ConcurrentMergeScheduler#doMerge():661 [Inlined code] at org.apache.lucene.index.ConcurrentMergeScheduler$MergeThread#run():726 [JIT compiled code] 0.88% 6011M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] 0.76% 5165M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Inlined code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] 0.65% 4424M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] 0.64% 4351M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#():61 [Inlined code] at org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():450 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():400 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] 0.62% 4202M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] at org.apache.lucene.facet.FacetsConfig#build():280 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] 0.61% 4162M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] 0.56% 3829M org.apache.lucene.codecs.lucene104.Lucene104PostingsReader#newTermState():203 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnumFrame#():106 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#getFrame():169 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#pushFrame():192 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#prepareSeekExact():396 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#seekExact():521 [Inlined code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#findCategory():363 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#addCategory():389 [JIT compiled code] 0.53% 3618M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.51% 3460M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] at org.apache.lucene.facet.FacetsConfig#build():292 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] 0.50% 3426M perf.LineFileDocs#cloneDoc():533 [JIT compiled code] at perf.LineFileDocs#nextDoc():766 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocuments():1524 [Inlined code] 0.49% 3328M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#():61 [Inlined code] at org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():450 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processSSDVFacetFields():501 [Inlined code] at org.apache.lucene.facet.FacetsConfig#build():345 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] 0.48% 3248M org.apache.lucene.util.FixedBitSet#():148 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsReader$BlockPostingsEnum#():306 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsReader#postings():259 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#postings():1010 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#findCategory():365 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#addCategory():389 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():383 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] 0.47% 3228M org.apache.lucene.codecs.lucene104.Lucene104PostingsReader$BlockPostingsEnum#():301 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsReader#postings():259 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#postings():1010 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#findCategory():365 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#addCategory():389 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():383 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] 0.47% 3189M org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():448 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processSSDVFacetFields():501 [Inlined code] at org.apache.lucene.facet.FacetsConfig#build():345 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.45% 3103M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#():61 [Inlined code] at org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():426 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():400 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] 0.43% 2943M org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#getFrame():169 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#pushFrame():192 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#prepareSeekExact():452 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#seekExact():521 [Inlined code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#findCategory():363 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#addCategory():389 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():383 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] 0.42% 2897M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] 0.40% 2732M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Inlined code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#postUpdate():404 [Inlined code] 0.40% 2709M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [JIT compiled code] 0.39% 2664M java.util.Arrays#copyOf():3478 [Inlined code] at java.util.ArrayList#grow():238 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] at org.apache.lucene.document.Document#add():62 [Inlined code] at perf.LineFileDocs#cloneDoc():533 [JIT compiled code] at perf.LineFileDocs#nextDoc():766 [JIT compiled code] 0.39% 2661M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.facet.FacetsConfig#processSSDVFacetFields():497 [Inlined code] at org.apache.lucene.facet.FacetsConfig#build():345 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] 0.39% 2638M org.apache.lucene.codecs.lucene104.Lucene104PostingsReader$BlockPostingsEnum#():334 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsReader#postings():259 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#postings():1010 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#findCategory():365 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#addCategory():389 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():383 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] 0.38% 2603M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [JIT compiled code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000491df508#merge() [JIT compiled code] 0.37% 2540M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.facet.FacetsConfig#processSSDVFacetFields():480 [Inlined code] at org.apache.lucene.facet.FacetsConfig#build():345 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] 0.37% 2518M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#():61 [Inlined code] at org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():426 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processSSDVFacetFields():501 [Inlined code] at org.apache.lucene.facet.FacetsConfig#build():345 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] 0.36% 2445M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] 0.35% 2417M java.util.Arrays#copyOf():3537 [Inlined code] at java.lang.AbstractStringBuilder#ensureCapacityNewCoder():282 [JIT compiled code] at java.lang.AbstractStringBuilder#append():897 [Inlined code] at java.lang.StringBuilder#append():246 [Inlined code] at org.apache.lucene.facet.FacetsConfig#pathToString():585 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():450 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():400 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] 0.35% 2394M org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():448 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():400 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.34% 2338M org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():423 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():400 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] profile command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.count=50 -Dtests.profile.stacksize=12 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.jfr Profiler for heap at stackSize=12 [search index (fixed segments) /l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.jfr is 2043.70 MB]: WARNING: Using incubator modules: jdk.incubator.vector PROFILE SUMMARY from 36130 events (total: 682458M) tests.profile.mode=heap tests.profile.count=50 tests.profile.stacksize=12 tests.profile.linenumbers=true PERCENT HEAP SAMPLES STACK 8.03% 54781M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x0000000049209848#call() [JIT compiled code] 8.00% 54586M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x0000000049209848#call() [JIT compiled code] 5.03% 34323M perf.LineFileDocs#readVector():212 [Inlined code] at perf.LineFileDocs#readDocs():183 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 4.95% 33779M org.apache.lucene.util.ArrayUtil#copyOfSubArray():744 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():338 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter$2#copyValue():335 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99FlatVectorsWriter$FieldWriter#addValue():364 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():783 [JIT compiled code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocuments():1524 [Inlined code] 4.60% 31409M java.nio.HeapByteBuffer#():75 [Inlined code] at java.nio.ByteBuffer#allocate():398 [Inlined code] at perf.LineFileDocs#readVector():213 [Inlined code] at perf.LineFileDocs#readDocs():183 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 4.21% 28733M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [JIT compiled code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 3.79% 25866M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#popToScratch():499 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():331 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [JIT compiled code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] 2.81% 19152M org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#getNode():183 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#prepareSeekExact():412 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#seekExact():521 [Inlined code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#findCategory():363 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#addCategory():389 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():383 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 2.04% 13910M perf.LineFileDocs#nextDoc():647 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocuments():1524 [Inlined code] at perf.IndexThreads$IndexThread#run():275 [JIT compiled code] 1.49% 10191M org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#getNode():180 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#prepareSeekExact():412 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#seekExact():521 [Inlined code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#findCategory():363 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#addCategory():389 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():383 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 1.24% 8483M perf.LineFileDocs#readDocs():176 [JIT compiled code] at perf.LineFileDocs$1#run():140 [Interpreted code] 1.18% 8076M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x0000000049209848#call() [JIT compiled code] at java.util.concurrent.FutureTask#run():328 [JIT compiled code] at org.apache.lucene.search.TaskExecutor$Task#run():171 [JIT compiled code] at org.apache.lucene.search.TaskExecutor#lambda$invokeAll$0():96 [Inlined code] 1.18% 8047M java.util.Arrays#copyOf():3478 [Inlined code] at java.util.ArrayList#grow():238 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] at org.apache.lucene.document.Document#add():62 [Inlined code] at org.apache.lucene.facet.FacetsConfig#build():353 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 1.10% 7531M org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#getFrame():169 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#pushFrame():192 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#prepareSeekExact():396 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#seekExact():521 [Inlined code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#findCategory():363 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#addCategory():389 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():383 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] 1.05% 7151M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [JIT compiled code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000491df508#merge() [JIT compiled code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#merge():147 [JIT compiled code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [JIT compiled code] 0.98% 6683M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.95% 6485M org.apache.lucene.util.hnsw.NeighborQueue#nodes():134 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder$GraphBuilderKnnCollector#popUntilNearestKNodes():674 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():329 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [JIT compiled code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():291 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocuments():1524 [Inlined code] 0.94% 6422M java.lang.StringUTF16#compress():212 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocuments():1524 [Inlined code] at perf.IndexThreads$IndexThread#run():275 [JIT compiled code] 0.90% 6119M java.util.ImmutableCollections$AbstractImmutableList#iterator():303 [JIT compiled code] at org.apache.lucene.index.BufferedUpdatesStream#waitApplyForMerge():181 [JIT compiled code] at org.apache.lucene.index.IndexWriter#mergeInit():4963 [JIT compiled code] at org.apache.lucene.index.IndexWriter#merge():4779 [JIT compiled code] at org.apache.lucene.index.IndexWriter$IndexWriterMergeSource#merge():6590 [JIT compiled code] at org.apache.lucene.index.ConcurrentMergeScheduler#doMerge():661 [Inlined code] at org.apache.lucene.index.ConcurrentMergeScheduler$MergeThread#run():726 [JIT compiled code] 0.89% 6088M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] 0.88% 6011M org.apache.lucene.util.hnsw.NeighborArray#sort():158 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#findWorstNonDiverse():292 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():141 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder#lambda$build$0():97 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$$Lambda.0x0000000049209848#call() [JIT compiled code] 0.73% 4989M org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():219 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#newTermState():54 [Inlined code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():169 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Inlined code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#postUpdate():404 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] 0.65% 4424M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 0.64% 4351M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#():61 [Inlined code] at org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():450 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():400 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 0.62% 4202M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] at org.apache.lucene.facet.FacetsConfig#build():280 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocuments():1524 [Inlined code] 0.61% 4162M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():414 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#addGraphNode():226 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addVectors():233 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswConcurrentMergeBuilder$ConcurrentMergeWorker#run():206 [JIT compiled code] 0.56% 3829M org.apache.lucene.codecs.lucene104.Lucene104PostingsReader#newTermState():203 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnumFrame#():106 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#getFrame():169 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#pushFrame():192 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#prepareSeekExact():396 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#seekExact():521 [Inlined code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#findCategory():363 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#addCategory():389 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():383 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] 0.53% 3618M java.lang.StringUTF16#compress():216 [Inlined code] at java.lang.String#():4842 [Inlined code] at java.lang.String#():314 [Inlined code] at perf.LineFileDocs#nextDoc():649 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocuments():1524 [Inlined code] at perf.IndexThreads$IndexThread#run():275 [JIT compiled code] 0.53% 3595M jdk.internal.misc.Unsafe#allocateUninitializedArray():1396 [Inlined code] at java.lang.StringConcatHelper#newArray():578 [Inlined code] at java.lang.StringConcatHelper#newArrayWithSuffix():611 [Inlined code] at java.lang.String$$StringConcat.0x000000004904c400#concat() [Inlined code] at java.lang.invoke.DirectMethodHandle$Holder#invokeSpecial() [Inlined code] at java.lang.invoke.LambdaForm$MH.0x000000004904c800#invoke() [Inlined code] at java.lang.invoke.Invokers$Holder#linkToTargetMethod() [Inlined code] at org.apache.lucene.store.IndexInput#getFullSliceDescription():150 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#buildSlice():656 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#slice():604 [JIT compiled code] at org.apache.lucene.store.MemorySegmentIndexInput$SingleSegmentImpl#slice():712 [Inlined code] at org.apache.lucene.store.IndexInput#randomAccessSlice():161 [Inlined code] 0.51% 3509M jdk.internal.misc.Unsafe#allocateUninitializedArray():1396 [Inlined code] at java.lang.StringConcatHelper#newArray():578 [Inlined code] at java.lang.StringConcatHelper#newArrayWithSuffix():611 [Inlined code] at java.lang.String$$StringConcat.0x000000004904c400#concat() [Inlined code] at java.lang.invoke.DirectMethodHandle$Holder#invokeSpecial() [Inlined code] at java.lang.invoke.LambdaForm$MH.0x000000004904c800#invoke() [Inlined code] at java.lang.invoke.Invokers$Holder#linkToTargetMethod() [Inlined code] at org.apache.lucene.store.IndexInput#getFullSliceDescription():150 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#buildSlice():656 [Inlined code] at org.apache.lucene.store.MemorySegmentIndexInput#slice():604 [JIT compiled code] at org.apache.lucene.store.MemorySegmentIndexInput$SingleSegmentImpl#slice():712 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.FieldReader#newReader():87 [Inlined code] 0.51% 3460M java.util.ArrayList#grow():240 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] at org.apache.lucene.facet.FacetsConfig#build():292 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocuments():1524 [Inlined code] 0.50% 3426M perf.LineFileDocs#cloneDoc():533 [JIT compiled code] at perf.LineFileDocs#nextDoc():766 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocuments():1524 [Inlined code] at perf.IndexThreads$IndexThread#run():275 [JIT compiled code] 0.49% 3377M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [JIT compiled code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.49% 3328M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#():61 [Inlined code] at org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():450 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processSSDVFacetFields():501 [Inlined code] at org.apache.lucene.facet.FacetsConfig#build():345 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 0.48% 3248M org.apache.lucene.util.FixedBitSet#():148 [Inlined code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsReader$BlockPostingsEnum#():306 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsReader#postings():259 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#postings():1010 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#findCategory():365 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#addCategory():389 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():383 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] 0.47% 3228M org.apache.lucene.codecs.lucene104.Lucene104PostingsReader$BlockPostingsEnum#():301 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsReader#postings():259 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#postings():1010 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#findCategory():365 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#addCategory():389 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():383 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.47% 3189M org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():448 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processSSDVFacetFields():501 [Inlined code] at org.apache.lucene.facet.FacetsConfig#build():345 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocuments():1524 [Inlined code] at perf.IndexThreads$IndexThread#run():275 [JIT compiled code] 0.45% 3103M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#():61 [Inlined code] at org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():426 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():400 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 0.43% 2943M org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#getFrame():169 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#pushFrame():192 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#prepareSeekExact():452 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#seekExact():521 [Inlined code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#findCategory():363 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#addCategory():389 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():383 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] 0.42% 2897M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [JIT compiled code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] 0.40% 2732M org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#write():161 [JIT compiled code] at org.apache.lucene.index.FreqProxTermsWriter#flush():133 [Inlined code] at org.apache.lucene.index.IndexingChain#flush():361 [JIT compiled code] at org.apache.lucene.index.DocumentsWriterPerThread#flush():492 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#doFlush():541 [JIT compiled code] at org.apache.lucene.index.DocumentsWriter#postUpdate():404 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():450 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocuments():1524 [Inlined code] at perf.IndexThreads$IndexThread#run():275 [JIT compiled code] 0.40% 2709M org.apache.lucene.codecs.lucene104.PForUtil#encode():53 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsWriter#addPosition():342 [JIT compiled code] at org.apache.lucene.codecs.PushPostingsWriterBase#writeTerm():159 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():988 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [JIT compiled code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000491df508#merge() [JIT compiled code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#merge():147 [JIT compiled code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [JIT compiled code] 0.39% 2664M java.util.Arrays#copyOf():3478 [Inlined code] at java.util.ArrayList#grow():238 [Inlined code] at java.util.ArrayList#grow():245 [Inlined code] at java.util.ArrayList#add():484 [Inlined code] at java.util.ArrayList#add():497 [Inlined code] at org.apache.lucene.document.Document#add():62 [Inlined code] at perf.LineFileDocs#cloneDoc():533 [JIT compiled code] at perf.LineFileDocs#nextDoc():766 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.39% 2661M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.facet.FacetsConfig#processSSDVFacetFields():497 [Inlined code] at org.apache.lucene.facet.FacetsConfig#build():345 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocuments():1524 [Inlined code] at perf.IndexThreads$IndexThread#run():275 [JIT compiled code] 0.39% 2638M org.apache.lucene.codecs.lucene104.Lucene104PostingsReader$BlockPostingsEnum#():334 [JIT compiled code] at org.apache.lucene.codecs.lucene104.Lucene104PostingsReader#postings():259 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.SegmentTermsEnum#postings():1010 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#findCategory():365 [JIT compiled code] at org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter#addCategory():389 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processFacetFields():383 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#build():344 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] 0.38% 2625M org.apache.lucene.util.ArrayUtil#growExact():267 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():369 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():99 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addInOrder():84 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#selectAndLinkDiverse():485 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():399 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [JIT compiled code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processDocument():645 [JIT compiled code] 0.38% 2603M org.apache.lucene.util.ArrayUtil#copyOfSubArray():654 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$PendingTerm#():414 [Inlined code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter$TermsWriter#write():997 [JIT compiled code] at org.apache.lucene.codecs.lucene103.blocktree.Lucene103BlockTreeTermsWriter#write():390 [JIT compiled code] at org.apache.lucene.codecs.FieldsConsumer#merge():94 [JIT compiled code] at org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter#merge():190 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#mergeTerms():223 [JIT compiled code] at org.apache.lucene.index.SegmentMerger$$Lambda.0x00000000491df508#merge() [JIT compiled code] at org.apache.lucene.index.SegmentMerger#mergeWithLogging():315 [JIT compiled code] at org.apache.lucene.index.SegmentMerger#merge():147 [JIT compiled code] at org.apache.lucene.index.IndexWriter#mergeMiddle():5322 [JIT compiled code] at org.apache.lucene.index.IndexWriter#merge():4785 [JIT compiled code] 0.37% 2540M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.facet.FacetsConfig#processSSDVFacetFields():480 [Inlined code] at org.apache.lucene.facet.FacetsConfig#build():345 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] at org.apache.lucene.index.IndexWriter#addDocuments():1524 [Inlined code] at perf.IndexThreads$IndexThread#run():275 [JIT compiled code] 0.37% 2518M org.apache.lucene.util.BytesRef#():71 [Inlined code] at org.apache.lucene.util.BytesRef#():80 [Inlined code] at org.apache.lucene.document.StringField#():61 [Inlined code] at org.apache.lucene.facet.FacetsConfig#indexDrillDownTerms():426 [JIT compiled code] at org.apache.lucene.facet.FacetsConfig#processSSDVFacetFields():501 [Inlined code] at org.apache.lucene.facet.FacetsConfig#build():345 [JIT compiled code] at perf.LineFileDocs#nextDoc():860 [JIT compiled code] at perf.IndexThreads$IndexThread$1$1#next():294 [Inlined code] at perf.IndexThreads$IndexThread$1$1#next():279 [Inlined code] at org.apache.lucene.index.DocumentsWriterPerThread#updateDocuments():270 [Inlined code] at org.apache.lucene.index.DocumentsWriter#updateDocuments():428 [JIT compiled code] at org.apache.lucene.index.IndexWriter#updateDocuments():1600 [Inlined code] 0.36% 2445M org.apache.lucene.util.ArrayUtil#growExact():319 [Inlined code] at org.apache.lucene.util.ArrayUtil#growInRange():345 [JIT compiled code] at org.apache.lucene.util.hnsw.NeighborArray#growArrays():98 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addOutOfOrder():109 [Inlined code] at org.apache.lucene.util.hnsw.NeighborArray#addAndEnsureDiversity():135 [Inlined code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#updateNeighbor():451 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addDiverseNeighbors():425 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNodeInternal():336 [JIT compiled code] at org.apache.lucene.util.hnsw.HnswGraphBuilder#addGraphNode():370 [Inlined code] at org.apache.lucene.codecs.lucene99.Lucene99HnswVectorsWriter$FieldWriter#addValue():790 [JIT compiled code] at org.apache.lucene.index.IndexingChain#indexVectorValue():1562 [JIT compiled code] at org.apache.lucene.index.IndexingChain#processField():1255 [JIT compiled code] move log to /l/logs.nightly/2026.05.15.14.49.32/fixedIndex.log move vmstat log to /l/logs.nightly/2026.05.15.14.49.32/fixedIndex.vmstat.log move top log to /l/logs.nightly/2026.05.15.14.49.32/fixedIndex.top.log [2026-05-16 19:30:38.631601] took 40300.3 sec [2026-05-16 19:30:38.635033] run CheckIndex [2026-05-16 19:30:38.635271] RUN: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -classpath "/l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build" -ea org.apache.lucene.index.CheckIndex -threadCount 16 -level 2 "/l/indices/wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M/index" > /l/logs.nightly/2026.05.15.14.49.32/checkIndex.fixedIndex.log 2>&1 [2026-05-16 19:36:35.374478] took 356.7 sec [2026-05-16 19:36:35.376100] fixedIndexAtClose 15 segments: segments_2: _32(11.0.0):C4978031 _65(11.0.0):C4978032 _98(11.0.0):C4978032 _cb(11.0.0):C4978032 _fe(11.0.0):C4978032 _fp(11.0.0):C497803 _g0(11.0.0):C497803 _gb(11.0.0):C497803 _gm(11.0.0):C497803 _gx(11.0.0):C497804 _gy(11.0.0):C49780 _gz(11.0.0):C49780 _h0(11.0.0):C49781 _h1(11.0.0):C49780 _h2(11.0.0):C46742 [2026-05-16 19:36:35.376239] search run vmstat: /usr/sbin/vmstat --active --wide --timestamp --unit M 1 > /l/logs.nightly/2026.05.15.14.49.32/search-tasks.vmstat.log 2>/dev/null & run /usr/sbin/ps -eo pid,%cpu,%mem,bsdtime,etime,start,args --cols=120 --sort=-%cpu | head -10 >> /l/logs.nightly/2026.05.15.14.49.32/search-tasks.top.log 2>&1 to /l/logs.nightly/2026.05.15.14.49.32/search-tasks.top.log NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log: /l/logs.nightly/nightly.nightly.0 + stdout run: /usr/sbin/perf stat -dd -e task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-search-nightly-nightly-0.jfr -XX:+UnlockDiagnosticVMOptions -XX:+DebugNonSafepoints -classpath /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build perf.SearchPerfTest -dirImpl MMapDirectory -indexPath /l/indices/wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M -facets taxonomy:Date;Date -facets taxonomy:Month;Month -facets taxonomy:DayOfYear;DayOfYear -facets sortedset:Month;Month -facets sortedset:DayOfYear;DayOfYear -facets sortedset:Date;Date -facets taxonomy:RandomLabel;RandomLabel -facets sortedset:RandomLabel;RandomLabel -analyzer StandardAnalyzerNoStopWords -taskSource /l/util.nightly/tasks/wikinightly.tasks -numConcurrentQueries 1 -taskRepeatCount 50 -field body -tasksPerCat 5 -searchConcurrency 8 -staticSeed -8035476 -seed -8826252 -similarity BM25Similarity -commit multi -hiliteImpl FastVectorHighlighter -log /l/logs.nightly/nightly.nightly.0 -topN 100 -context -printHeap -pk -vectorFile /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -vectorDimension 1024 -pollute 421.7 s 53.8 actual sustained QPS; 2.7 CPU cores used NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log: /l/logs.nightly/nightly.nightly.1 + stdout run: /usr/sbin/perf stat -dd -e task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-search-nightly-nightly-1.jfr -XX:+UnlockDiagnosticVMOptions -XX:+DebugNonSafepoints -classpath /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build perf.SearchPerfTest -dirImpl MMapDirectory -indexPath /l/indices/wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M -facets taxonomy:Date;Date -facets taxonomy:Month;Month -facets taxonomy:DayOfYear;DayOfYear -facets sortedset:Month;Month -facets sortedset:DayOfYear;DayOfYear -facets sortedset:Date;Date -facets taxonomy:RandomLabel;RandomLabel -facets sortedset:RandomLabel;RandomLabel -analyzer StandardAnalyzerNoStopWords -taskSource /l/util.nightly/tasks/wikinightly.tasks -numConcurrentQueries 1 -taskRepeatCount 50 -field body -tasksPerCat 5 -searchConcurrency 8 -staticSeed -8035476 -seed -4624584 -similarity BM25Similarity -commit multi -hiliteImpl FastVectorHighlighter -log /l/logs.nightly/nightly.nightly.1 -topN 100 -context -printHeap -pk -vectorFile /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -vectorDimension 1024 -pollute 404.0 s 56.2 actual sustained QPS; 2.7 CPU cores used NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log: /l/logs.nightly/nightly.nightly.2 + stdout run: /usr/sbin/perf stat -dd -e task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-search-nightly-nightly-2.jfr -XX:+UnlockDiagnosticVMOptions -XX:+DebugNonSafepoints -classpath /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build perf.SearchPerfTest -dirImpl MMapDirectory -indexPath /l/indices/wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M -facets taxonomy:Date;Date -facets taxonomy:Month;Month -facets taxonomy:DayOfYear;DayOfYear -facets sortedset:Month;Month -facets sortedset:DayOfYear;DayOfYear -facets sortedset:Date;Date -facets taxonomy:RandomLabel;RandomLabel -facets sortedset:RandomLabel;RandomLabel -analyzer StandardAnalyzerNoStopWords -taskSource /l/util.nightly/tasks/wikinightly.tasks -numConcurrentQueries 1 -taskRepeatCount 50 -field body -tasksPerCat 5 -searchConcurrency 8 -staticSeed -8035476 -seed -7949437 -similarity BM25Similarity -commit multi -hiliteImpl FastVectorHighlighter -log /l/logs.nightly/nightly.nightly.2 -topN 100 -context -printHeap -pk -vectorFile /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -vectorDimension 1024 -pollute 411.1 s 55.2 actual sustained QPS; 2.7 CPU cores used NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log: /l/logs.nightly/nightly.nightly.3 + stdout run: /usr/sbin/perf stat -dd -e task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-search-nightly-nightly-3.jfr -XX:+UnlockDiagnosticVMOptions -XX:+DebugNonSafepoints -classpath /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build perf.SearchPerfTest -dirImpl MMapDirectory -indexPath /l/indices/wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M -facets taxonomy:Date;Date -facets taxonomy:Month;Month -facets taxonomy:DayOfYear;DayOfYear -facets sortedset:Month;Month -facets sortedset:DayOfYear;DayOfYear -facets sortedset:Date;Date -facets taxonomy:RandomLabel;RandomLabel -facets sortedset:RandomLabel;RandomLabel -analyzer StandardAnalyzerNoStopWords -taskSource /l/util.nightly/tasks/wikinightly.tasks -numConcurrentQueries 1 -taskRepeatCount 50 -field body -tasksPerCat 5 -searchConcurrency 8 -staticSeed -8035476 -seed -4890746 -similarity BM25Similarity -commit multi -hiliteImpl FastVectorHighlighter -log /l/logs.nightly/nightly.nightly.3 -topN 100 -context -printHeap -pk -vectorFile /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -vectorDimension 1024 -pollute 405.0 s 56.1 actual sustained QPS; 2.7 CPU cores used NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log: /l/logs.nightly/nightly.nightly.4 + stdout run: /usr/sbin/perf stat -dd -e task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-search-nightly-nightly-4.jfr -XX:+UnlockDiagnosticVMOptions -XX:+DebugNonSafepoints -classpath /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build perf.SearchPerfTest -dirImpl MMapDirectory -indexPath /l/indices/wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M -facets taxonomy:Date;Date -facets taxonomy:Month;Month -facets taxonomy:DayOfYear;DayOfYear -facets sortedset:Month;Month -facets sortedset:DayOfYear;DayOfYear -facets sortedset:Date;Date -facets taxonomy:RandomLabel;RandomLabel -facets sortedset:RandomLabel;RandomLabel -analyzer StandardAnalyzerNoStopWords -taskSource /l/util.nightly/tasks/wikinightly.tasks -numConcurrentQueries 1 -taskRepeatCount 50 -field body -tasksPerCat 5 -searchConcurrency 8 -staticSeed -8035476 -seed -2948802 -similarity BM25Similarity -commit multi -hiliteImpl FastVectorHighlighter -log /l/logs.nightly/nightly.nightly.4 -topN 100 -context -printHeap -pk -vectorFile /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -vectorDimension 1024 -pollute 411.0 s 55.3 actual sustained QPS; 2.7 CPU cores used NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log: /l/logs.nightly/nightly.nightly.5 + stdout run: /usr/sbin/perf stat -dd -e task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-search-nightly-nightly-5.jfr -XX:+UnlockDiagnosticVMOptions -XX:+DebugNonSafepoints -classpath /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build perf.SearchPerfTest -dirImpl MMapDirectory -indexPath /l/indices/wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M -facets taxonomy:Date;Date -facets taxonomy:Month;Month -facets taxonomy:DayOfYear;DayOfYear -facets sortedset:Month;Month -facets sortedset:DayOfYear;DayOfYear -facets sortedset:Date;Date -facets taxonomy:RandomLabel;RandomLabel -facets sortedset:RandomLabel;RandomLabel -analyzer StandardAnalyzerNoStopWords -taskSource /l/util.nightly/tasks/wikinightly.tasks -numConcurrentQueries 1 -taskRepeatCount 50 -field body -tasksPerCat 5 -searchConcurrency 8 -staticSeed -8035476 -seed -8701999 -similarity BM25Similarity -commit multi -hiliteImpl FastVectorHighlighter -log /l/logs.nightly/nightly.nightly.5 -topN 100 -context -printHeap -pk -vectorFile /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -vectorDimension 1024 -pollute 408.8 s 55.5 actual sustained QPS; 2.7 CPU cores used NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log: /l/logs.nightly/nightly.nightly.6 + stdout run: /usr/sbin/perf stat -dd -e task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-search-nightly-nightly-6.jfr -XX:+UnlockDiagnosticVMOptions -XX:+DebugNonSafepoints -classpath /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build perf.SearchPerfTest -dirImpl MMapDirectory -indexPath /l/indices/wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M -facets taxonomy:Date;Date -facets taxonomy:Month;Month -facets taxonomy:DayOfYear;DayOfYear -facets sortedset:Month;Month -facets sortedset:DayOfYear;DayOfYear -facets sortedset:Date;Date -facets taxonomy:RandomLabel;RandomLabel -facets sortedset:RandomLabel;RandomLabel -analyzer StandardAnalyzerNoStopWords -taskSource /l/util.nightly/tasks/wikinightly.tasks -numConcurrentQueries 1 -taskRepeatCount 50 -field body -tasksPerCat 5 -searchConcurrency 8 -staticSeed -8035476 -seed -669201 -similarity BM25Similarity -commit multi -hiliteImpl FastVectorHighlighter -log /l/logs.nightly/nightly.nightly.6 -topN 100 -context -printHeap -pk -vectorFile /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -vectorDimension 1024 -pollute 422.7 s 53.6 actual sustained QPS; 2.7 CPU cores used NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log: /l/logs.nightly/nightly.nightly.7 + stdout run: /usr/sbin/perf stat -dd -e task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-search-nightly-nightly-7.jfr -XX:+UnlockDiagnosticVMOptions -XX:+DebugNonSafepoints -classpath /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build perf.SearchPerfTest -dirImpl MMapDirectory -indexPath /l/indices/wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M -facets taxonomy:Date;Date -facets taxonomy:Month;Month -facets taxonomy:DayOfYear;DayOfYear -facets sortedset:Month;Month -facets sortedset:DayOfYear;DayOfYear -facets sortedset:Date;Date -facets taxonomy:RandomLabel;RandomLabel -facets sortedset:RandomLabel;RandomLabel -analyzer StandardAnalyzerNoStopWords -taskSource /l/util.nightly/tasks/wikinightly.tasks -numConcurrentQueries 1 -taskRepeatCount 50 -field body -tasksPerCat 5 -searchConcurrency 8 -staticSeed -8035476 -seed -9025962 -similarity BM25Similarity -commit multi -hiliteImpl FastVectorHighlighter -log /l/logs.nightly/nightly.nightly.7 -topN 100 -context -printHeap -pk -vectorFile /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -vectorDimension 1024 -pollute 411.3 s 55.1 actual sustained QPS; 2.7 CPU cores used NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log: /l/logs.nightly/nightly.nightly.8 + stdout run: /usr/sbin/perf stat -dd -e task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-search-nightly-nightly-8.jfr -XX:+UnlockDiagnosticVMOptions -XX:+DebugNonSafepoints -classpath /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build perf.SearchPerfTest -dirImpl MMapDirectory -indexPath /l/indices/wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M -facets taxonomy:Date;Date -facets taxonomy:Month;Month -facets taxonomy:DayOfYear;DayOfYear -facets sortedset:Month;Month -facets sortedset:DayOfYear;DayOfYear -facets sortedset:Date;Date -facets taxonomy:RandomLabel;RandomLabel -facets sortedset:RandomLabel;RandomLabel -analyzer StandardAnalyzerNoStopWords -taskSource /l/util.nightly/tasks/wikinightly.tasks -numConcurrentQueries 1 -taskRepeatCount 50 -field body -tasksPerCat 5 -searchConcurrency 8 -staticSeed -8035476 -seed -6290602 -similarity BM25Similarity -commit multi -hiliteImpl FastVectorHighlighter -log /l/logs.nightly/nightly.nightly.8 -topN 100 -context -printHeap -pk -vectorFile /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -vectorDimension 1024 -pollute 412.7 s 54.9 actual sustained QPS; 2.7 CPU cores used NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log: /l/logs.nightly/nightly.nightly.9 + stdout run: /usr/sbin/perf stat -dd -e task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-search-nightly-nightly-9.jfr -XX:+UnlockDiagnosticVMOptions -XX:+DebugNonSafepoints -classpath /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build perf.SearchPerfTest -dirImpl MMapDirectory -indexPath /l/indices/wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M -facets taxonomy:Date;Date -facets taxonomy:Month;Month -facets taxonomy:DayOfYear;DayOfYear -facets sortedset:Month;Month -facets sortedset:DayOfYear;DayOfYear -facets sortedset:Date;Date -facets taxonomy:RandomLabel;RandomLabel -facets sortedset:RandomLabel;RandomLabel -analyzer StandardAnalyzerNoStopWords -taskSource /l/util.nightly/tasks/wikinightly.tasks -numConcurrentQueries 1 -taskRepeatCount 50 -field body -tasksPerCat 5 -searchConcurrency 8 -staticSeed -8035476 -seed -7082989 -similarity BM25Similarity -commit multi -hiliteImpl FastVectorHighlighter -log /l/logs.nightly/nightly.nightly.9 -topN 100 -context -printHeap -pk -vectorFile /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -vectorDimension 1024 -pollute 409.0 s 55.5 actual sustained QPS; 2.7 CPU cores used NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log: /l/logs.nightly/nightly.nightly.10 + stdout run: /usr/sbin/perf stat -dd -e task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-search-nightly-nightly-10.jfr -XX:+UnlockDiagnosticVMOptions -XX:+DebugNonSafepoints -classpath /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build perf.SearchPerfTest -dirImpl MMapDirectory -indexPath /l/indices/wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M -facets taxonomy:Date;Date -facets taxonomy:Month;Month -facets taxonomy:DayOfYear;DayOfYear -facets sortedset:Month;Month -facets sortedset:DayOfYear;DayOfYear -facets sortedset:Date;Date -facets taxonomy:RandomLabel;RandomLabel -facets sortedset:RandomLabel;RandomLabel -analyzer StandardAnalyzerNoStopWords -taskSource /l/util.nightly/tasks/wikinightly.tasks -numConcurrentQueries 1 -taskRepeatCount 50 -field body -tasksPerCat 5 -searchConcurrency 8 -staticSeed -8035476 -seed 876413 -similarity BM25Similarity -commit multi -hiliteImpl FastVectorHighlighter -log /l/logs.nightly/nightly.nightly.10 -topN 100 -context -printHeap -pk -vectorFile /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -vectorDimension 1024 -pollute 409.0 s 55.5 actual sustained QPS; 2.7 CPU cores used NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log: /l/logs.nightly/nightly.nightly.11 + stdout run: /usr/sbin/perf stat -dd -e task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-search-nightly-nightly-11.jfr -XX:+UnlockDiagnosticVMOptions -XX:+DebugNonSafepoints -classpath /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build perf.SearchPerfTest -dirImpl MMapDirectory -indexPath /l/indices/wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M -facets taxonomy:Date;Date -facets taxonomy:Month;Month -facets taxonomy:DayOfYear;DayOfYear -facets sortedset:Month;Month -facets sortedset:DayOfYear;DayOfYear -facets sortedset:Date;Date -facets taxonomy:RandomLabel;RandomLabel -facets sortedset:RandomLabel;RandomLabel -analyzer StandardAnalyzerNoStopWords -taskSource /l/util.nightly/tasks/wikinightly.tasks -numConcurrentQueries 1 -taskRepeatCount 50 -field body -tasksPerCat 5 -searchConcurrency 8 -staticSeed -8035476 -seed -7628876 -similarity BM25Similarity -commit multi -hiliteImpl FastVectorHighlighter -log /l/logs.nightly/nightly.nightly.11 -topN 100 -context -printHeap -pk -vectorFile /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -vectorDimension 1024 -pollute 418.5 s 54.1 actual sustained QPS; 2.7 CPU cores used NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log: /l/logs.nightly/nightly.nightly.12 + stdout run: /usr/sbin/perf stat -dd -e task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-search-nightly-nightly-12.jfr -XX:+UnlockDiagnosticVMOptions -XX:+DebugNonSafepoints -classpath /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build perf.SearchPerfTest -dirImpl MMapDirectory -indexPath /l/indices/wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M -facets taxonomy:Date;Date -facets taxonomy:Month;Month -facets taxonomy:DayOfYear;DayOfYear -facets sortedset:Month;Month -facets sortedset:DayOfYear;DayOfYear -facets sortedset:Date;Date -facets taxonomy:RandomLabel;RandomLabel -facets sortedset:RandomLabel;RandomLabel -analyzer StandardAnalyzerNoStopWords -taskSource /l/util.nightly/tasks/wikinightly.tasks -numConcurrentQueries 1 -taskRepeatCount 50 -field body -tasksPerCat 5 -searchConcurrency 8 -staticSeed -8035476 -seed -563807 -similarity BM25Similarity -commit multi -hiliteImpl FastVectorHighlighter -log /l/logs.nightly/nightly.nightly.12 -topN 100 -context -printHeap -pk -vectorFile /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -vectorDimension 1024 -pollute 400.4 s 56.8 actual sustained QPS; 2.7 CPU cores used NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log: /l/logs.nightly/nightly.nightly.13 + stdout run: /usr/sbin/perf stat -dd -e task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-search-nightly-nightly-13.jfr -XX:+UnlockDiagnosticVMOptions -XX:+DebugNonSafepoints -classpath /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build perf.SearchPerfTest -dirImpl MMapDirectory -indexPath /l/indices/wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M -facets taxonomy:Date;Date -facets taxonomy:Month;Month -facets taxonomy:DayOfYear;DayOfYear -facets sortedset:Month;Month -facets sortedset:DayOfYear;DayOfYear -facets sortedset:Date;Date -facets taxonomy:RandomLabel;RandomLabel -facets sortedset:RandomLabel;RandomLabel -analyzer StandardAnalyzerNoStopWords -taskSource /l/util.nightly/tasks/wikinightly.tasks -numConcurrentQueries 1 -taskRepeatCount 50 -field body -tasksPerCat 5 -searchConcurrency 8 -staticSeed -8035476 -seed -3026482 -similarity BM25Similarity -commit multi -hiliteImpl FastVectorHighlighter -log /l/logs.nightly/nightly.nightly.13 -topN 100 -context -printHeap -pk -vectorFile /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -vectorDimension 1024 -pollute 412.8 s 54.9 actual sustained QPS; 2.7 CPU cores used NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log: /l/logs.nightly/nightly.nightly.14 + stdout run: /usr/sbin/perf stat -dd -e task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-search-nightly-nightly-14.jfr -XX:+UnlockDiagnosticVMOptions -XX:+DebugNonSafepoints -classpath /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build perf.SearchPerfTest -dirImpl MMapDirectory -indexPath /l/indices/wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M -facets taxonomy:Date;Date -facets taxonomy:Month;Month -facets taxonomy:DayOfYear;DayOfYear -facets sortedset:Month;Month -facets sortedset:DayOfYear;DayOfYear -facets sortedset:Date;Date -facets taxonomy:RandomLabel;RandomLabel -facets sortedset:RandomLabel;RandomLabel -analyzer StandardAnalyzerNoStopWords -taskSource /l/util.nightly/tasks/wikinightly.tasks -numConcurrentQueries 1 -taskRepeatCount 50 -field body -tasksPerCat 5 -searchConcurrency 8 -staticSeed -8035476 -seed -6401046 -similarity BM25Similarity -commit multi -hiliteImpl FastVectorHighlighter -log /l/logs.nightly/nightly.nightly.14 -topN 100 -context -printHeap -pk -vectorFile /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -vectorDimension 1024 -pollute 409.9 s 55.5 actual sustained QPS; 2.7 CPU cores used NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log: /l/logs.nightly/nightly.nightly.15 + stdout run: /usr/sbin/perf stat -dd -e task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-search-nightly-nightly-15.jfr -XX:+UnlockDiagnosticVMOptions -XX:+DebugNonSafepoints -classpath /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build perf.SearchPerfTest -dirImpl MMapDirectory -indexPath /l/indices/wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M -facets taxonomy:Date;Date -facets taxonomy:Month;Month -facets taxonomy:DayOfYear;DayOfYear -facets sortedset:Month;Month -facets sortedset:DayOfYear;DayOfYear -facets sortedset:Date;Date -facets taxonomy:RandomLabel;RandomLabel -facets sortedset:RandomLabel;RandomLabel -analyzer StandardAnalyzerNoStopWords -taskSource /l/util.nightly/tasks/wikinightly.tasks -numConcurrentQueries 1 -taskRepeatCount 50 -field body -tasksPerCat 5 -searchConcurrency 8 -staticSeed -8035476 -seed 24871 -similarity BM25Similarity -commit multi -hiliteImpl FastVectorHighlighter -log /l/logs.nightly/nightly.nightly.15 -topN 100 -context -printHeap -pk -vectorFile /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -vectorDimension 1024 -pollute 406.5 s 55.9 actual sustained QPS; 2.7 CPU cores used NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log: /l/logs.nightly/nightly.nightly.16 + stdout run: /usr/sbin/perf stat -dd -e task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-search-nightly-nightly-16.jfr -XX:+UnlockDiagnosticVMOptions -XX:+DebugNonSafepoints -classpath /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build perf.SearchPerfTest -dirImpl MMapDirectory -indexPath /l/indices/wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M -facets taxonomy:Date;Date -facets taxonomy:Month;Month -facets taxonomy:DayOfYear;DayOfYear -facets sortedset:Month;Month -facets sortedset:DayOfYear;DayOfYear -facets sortedset:Date;Date -facets taxonomy:RandomLabel;RandomLabel -facets sortedset:RandomLabel;RandomLabel -analyzer StandardAnalyzerNoStopWords -taskSource /l/util.nightly/tasks/wikinightly.tasks -numConcurrentQueries 1 -taskRepeatCount 50 -field body -tasksPerCat 5 -searchConcurrency 8 -staticSeed -8035476 -seed -7070456 -similarity BM25Similarity -commit multi -hiliteImpl FastVectorHighlighter -log /l/logs.nightly/nightly.nightly.16 -topN 100 -context -printHeap -pk -vectorFile /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -vectorDimension 1024 -pollute 415.5 s 54.6 actual sustained QPS; 2.7 CPU cores used NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log: /l/logs.nightly/nightly.nightly.17 + stdout run: /usr/sbin/perf stat -dd -e task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-search-nightly-nightly-17.jfr -XX:+UnlockDiagnosticVMOptions -XX:+DebugNonSafepoints -classpath /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build perf.SearchPerfTest -dirImpl MMapDirectory -indexPath /l/indices/wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M -facets taxonomy:Date;Date -facets taxonomy:Month;Month -facets taxonomy:DayOfYear;DayOfYear -facets sortedset:Month;Month -facets sortedset:DayOfYear;DayOfYear -facets sortedset:Date;Date -facets taxonomy:RandomLabel;RandomLabel -facets sortedset:RandomLabel;RandomLabel -analyzer StandardAnalyzerNoStopWords -taskSource /l/util.nightly/tasks/wikinightly.tasks -numConcurrentQueries 1 -taskRepeatCount 50 -field body -tasksPerCat 5 -searchConcurrency 8 -staticSeed -8035476 -seed -9408097 -similarity BM25Similarity -commit multi -hiliteImpl FastVectorHighlighter -log /l/logs.nightly/nightly.nightly.17 -topN 100 -context -printHeap -pk -vectorFile /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -vectorDimension 1024 -pollute 404.3 s 56.2 actual sustained QPS; 2.7 CPU cores used NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log: /l/logs.nightly/nightly.nightly.18 + stdout run: /usr/sbin/perf stat -dd -e task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-search-nightly-nightly-18.jfr -XX:+UnlockDiagnosticVMOptions -XX:+DebugNonSafepoints -classpath /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build perf.SearchPerfTest -dirImpl MMapDirectory -indexPath /l/indices/wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M -facets taxonomy:Date;Date -facets taxonomy:Month;Month -facets taxonomy:DayOfYear;DayOfYear -facets sortedset:Month;Month -facets sortedset:DayOfYear;DayOfYear -facets sortedset:Date;Date -facets taxonomy:RandomLabel;RandomLabel -facets sortedset:RandomLabel;RandomLabel -analyzer StandardAnalyzerNoStopWords -taskSource /l/util.nightly/tasks/wikinightly.tasks -numConcurrentQueries 1 -taskRepeatCount 50 -field body -tasksPerCat 5 -searchConcurrency 8 -staticSeed -8035476 -seed -8222059 -similarity BM25Similarity -commit multi -hiliteImpl FastVectorHighlighter -log /l/logs.nightly/nightly.nightly.18 -topN 100 -context -printHeap -pk -vectorFile /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -vectorDimension 1024 -pollute 407.7 s 55.7 actual sustained QPS; 2.7 CPU cores used NOTE: using experimental CPU time profiler (see https://mostlynerdless.de/blog/2025/06/11/java-25s-new-cpu-time-profiler-1) log: /l/logs.nightly/nightly.nightly.19 + stdout run: /usr/sbin/perf stat -dd -e task-clock,cycles,instructions,cache-references,cache-misses,L1-dcache-loads,L1-dcache-load-misses,L1-icache-loads,L1-icache-load-misses,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetches,LLC-prefetch-misses,faults,minor-faults,major-faults,branches,branch-misses,stalled-cycles-frontend,stalled-cycles-backend /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -XX:StartFlightRecording=jdk.CPUTimeSample#enabled=true,dumponexit=true,maxsize=2048M,settings=/l/util.nightly/src/python/profiling.jfc,filename=/l/logs.nightly/bench-search-nightly-nightly-19.jfr -XX:+UnlockDiagnosticVMOptions -XX:+DebugNonSafepoints -classpath /l/trunk.nightly/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/trunk.nightly/lucene/sandbox/build/classes/java/main:/l/trunk.nightly/lucene/misc/build/classes/java/main:/l/trunk.nightly/lucene/facet/build/classes/java/main:/l/trunk.nightly/lucene/analysis/common/build/classes/java/main:/l/trunk.nightly/lucene/analysis/icu/build/classes/java/main:/l/trunk.nightly/lucene/queryparser/build/classes/java/main:/l/trunk.nightly/lucene/grouping/build/classes/java/main:/l/trunk.nightly/lucene/suggest/build/classes/java/main:/l/trunk.nightly/lucene/highlighter/build/classes/java/main:/l/trunk.nightly/lucene/codecs/build/classes/java/main:/l/trunk.nightly/lucene/queries/build/classes/java/main:/l/trunk.nightly/lucene/join/build/classes/java/main:/l/trunk.nightly/lucene/spatial3d/build/classes/java/main:/l/util.nightly/lib/HdrHistogram.jar:/l/util.nightly/src/main/build/classes/java/main:/l/util.nightly/build perf.SearchPerfTest -dirImpl MMapDirectory -indexPath /l/indices/wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M -facets taxonomy:Date;Date -facets taxonomy:Month;Month -facets taxonomy:DayOfYear;DayOfYear -facets sortedset:Month;Month -facets sortedset:DayOfYear;DayOfYear -facets sortedset:Date;Date -facets taxonomy:RandomLabel;RandomLabel -facets sortedset:RandomLabel;RandomLabel -analyzer StandardAnalyzerNoStopWords -taskSource /l/util.nightly/tasks/wikinightly.tasks -numConcurrentQueries 1 -taskRepeatCount 50 -field body -tasksPerCat 5 -searchConcurrency 8 -staticSeed -8035476 -seed -9532070 -similarity BM25Similarity -commit multi -hiliteImpl FastVectorHighlighter -log /l/logs.nightly/nightly.nightly.19 -topN 100 -context -printHeap -pk -vectorFile /lucenedata/enwiki/cohere-v3/cohere-v3-wikipedia-en-scattered-1024d.queries.vec -vectorDimension 1024 -pollute 421.1 s 53.9 actual sustained QPS; 2.7 CPU cores used now kill vmstat: pid=3084031 [2026-05-16 21:54:20.296373] done search (2:17:44.920110) Chart saved to out.png... (wd: /l/trunk.nightly/lucene/benchmark) Task P50 B P50 C Diff P90 B P90 C Diff P99 B P99 C Diff P999 B P999 C Diff P100 B P100 C Diff ('And2Terms2StopWords', None) 1.576 1.647 4.5% 4.761 5.103 7.2% 5.017 5.567 11.0% 5.347 5.726 7.1% 5.428 5.809 7.0% ('And3Terms', None) 1.603 1.710 6.6% 3.161 3.292 4.1% 3.477 3.521 1.3% 3.548 3.674 3.6% 3.559 3.788 6.4% ('AndHighHigh', None) 4.890 5.140 5.1% 6.868 7.152 4.1% 7.096 7.365 3.8% 7.132 8.150 14.3% 32.421 34.332 5.9% ('AndHighHighDayTaxoFacets', None) 72.577 69.305 -4.5% 152.436 131.844 -13.5% 155.910 135.121 -13.3% 158.481 136.683 -13.8% 158.526 149.630 -5.6% ('AndHighMed', None) 2.159 2.299 6.5% 2.947 3.066 4.1% 3.156 3.259 3.3% 3.312 3.498 5.6% 3.375 3.648 8.1% ('AndHighMedDayTaxoFacets', None) 7.917 7.794 -1.6% 23.328 22.275 -4.5% 24.405 23.259 -4.7% 24.709 23.519 -4.8% 24.977 25.128 0.6% ('AndHighOrMedMed', None) 6.445 6.536 1.4% 11.768 11.798 0.3% 13.052 12.543 -3.9% 13.679 12.693 -7.2% 26.261 26.375 0.4% ('AndMedOrHighHigh', None) 4.320 4.412 2.1% 11.569 11.624 0.5% 11.914 12.052 1.2% 12.533 12.625 0.7% 57.502 55.859 -2.9% ('AndMissingHigh', 'Title') 0.154 0.161 4.6% 0.240 0.267 11.0% 0.414 0.431 4.3% 0.628 0.540 -14.0% 0.648 0.547 -15.6% ('AndStopWords', None) 6.195 5.933 -4.2% 18.724 19.299 3.1% 19.326 19.704 2.0% 19.326 19.704 2.0% 20.214 20.510 1.5% ('BrowseDateSSDVFacets', None) 651.752 654.082 0.4% 655.856 662.523 1.0% 661.140 671.868 1.6% 661.140 671.868 1.6% 753.549 745.327 -1.1% ('BrowseDateTaxoFacets', None) 139.002 139.163 0.1% 141.882 142.004 0.1% 153.454 154.176 0.5% 153.454 154.176 0.5% 160.325 154.610 -3.6% ('BrowseDayOfYearSSDVFacets', None) 173.612 173.615 0.0% 183.315 175.154 -4.5% 186.229 184.432 -1.0% 186.229 184.432 -1.0% 187.091 185.719 -0.7% ('BrowseDayOfYearTaxoFacets', None) 138.146 138.549 0.3% 140.971 141.173 0.1% 152.732 152.853 0.1% 152.732 152.853 0.1% 153.900 153.663 -0.2% ('BrowseMonthSSDVFacets', None) 161.898 161.861 -0.0% 163.652 164.725 0.7% 170.139 171.732 0.9% 170.139 171.732 0.9% 170.490 172.399 1.1% ('BrowseMonthTaxoFacets', None) 148.511 148.043 -0.3% 150.802 150.460 -0.2% 158.358 159.292 0.6% 158.358 159.292 0.6% 225.186 317.369 40.9% ('BrowseRandomLabelSSDVFacets', None) 212.319 213.798 0.7% 218.217 221.400 1.5% 219.778 231.716 5.4% 219.778 231.716 5.4% 240.318 235.023 -2.2% ('BrowseRandomLabelTaxoFacets', None) 157.366 157.022 -0.2% 162.397 162.786 0.2% 167.662 168.066 0.2% 167.662 168.066 0.2% 169.206 170.872 1.0% ('CombinedAndHighHigh', None) 19.021 19.330 1.6% 20.375 20.394 0.1% 21.345 22.429 5.1% 22.675 23.901 5.4% 59.924 46.397 -22.6% ('CombinedAndHighMed', None) 3.219 3.287 2.1% 9.517 9.561 0.5% 10.221 10.099 -1.2% 10.780 10.267 -4.8% 72.420 83.795 15.7% ('CombinedOrHighHigh', None) 19.310 19.489 0.9% 20.652 20.740 0.4% 21.596 21.451 -0.7% 22.476 23.388 4.1% 24.072 24.825 3.1% ('CombinedOrHighMed', None) 3.316 3.448 4.0% 9.689 9.723 0.3% 10.134 10.280 1.4% 10.497 11.437 9.0% 21.929 24.506 11.7% ('CombinedTerm', None) 6.998 7.205 3.0% 13.545 13.789 1.8% 13.955 14.059 0.7% 15.131 14.161 -6.4% 48.803 57.130 17.1% ('CountAndHighHigh', None) 1.766 1.835 3.9% 2.001 2.043 2.1% 2.268 2.221 -2.1% 2.728 2.470 -9.5% 2.860 2.541 -11.2% ('CountAndHighMed', None) 1.695 1.696 0.0% 1.980 1.944 -1.8% 2.466 2.895 17.4% 59.559 48.297 -18.9% 96.197 78.164 -18.7% ('CountFilteredIntNRQ', None) 6.670 6.718 0.7% 7.487 7.555 0.9% 8.434 8.137 -3.5% 37.122 33.080 -10.9% 54.711 50.836 -7.1% ('CountFilteredOrHighHigh', None) 4.823 4.874 1.1% 5.045 5.081 0.7% 5.272 5.386 2.2% 5.503 5.556 1.0% 20.062 22.898 14.1% ('CountFilteredOrHighMed', None) 4.334 4.398 1.5% 4.751 4.772 0.4% 6.234 4.889 -21.6% 7.909 4.949 -37.4% 7.974 6.413 -19.6% ('CountFilteredOrMany', None) 16.724 17.402 4.1% 19.762 20.600 4.2% 21.445 21.047 -1.9% 33.172 22.559 -32.0% 84.430 90.103 6.7% ('CountFilteredPhrase', None) 11.893 11.745 -1.2% 17.383 17.303 -0.5% 17.812 18.341 3.0% 25.602 25.548 -0.2% 70.178 110.692 57.7% ('CountOrHighHigh', None) 1.697 1.777 4.7% 1.896 2.014 6.2% 2.328 2.216 -4.8% 2.570 2.286 -11.1% 2.694 2.477 -8.1% ('CountOrHighMed', None) 1.657 1.680 1.3% 1.991 1.969 -1.1% 2.389 3.763 57.5% 3.699 4.028 8.9% 17.483 16.229 -7.2% ('CountOrMany', None) 14.845 15.383 3.6% 18.407 18.960 3.0% 19.504 19.447 -0.3% 21.576 20.616 -4.4% 23.690 23.701 0.0% ('CountPhrase', None) 42.908 39.821 -7.2% 87.507 81.905 -6.4% 98.347 91.350 -7.1% 98.664 92.641 -6.1% 99.203 94.030 -5.2% ('CountTerm', None) 0.098 0.104 6.3% 0.153 0.158 3.7% 0.278 0.278 -0.2% 0.355 0.291 -18.0% 0.357 0.492 37.8% ('DismaxOrHighHigh', None) 2.738 2.861 4.5% 7.012 7.448 6.2% 7.361 7.995 8.6% 12.782 16.080 25.8% 18.533 16.675 -10.0% ('DismaxOrHighMed', None) 2.456 2.670 8.7% 2.977 3.216 8.0% 3.245 3.492 7.6% 3.362 3.650 8.5% 11.507 7.522 -34.6% ('DismaxTerm', None) 0.702 0.727 3.6% 0.925 0.943 1.9% 2.465 2.482 0.7% 3.655 4.216 15.4% 4.365 12.554 187.6% ('FilteredAnd2Terms2StopWords', None) 0.980 1.036 5.7% 6.108 6.265 2.6% 6.396 6.521 2.0% 6.434 6.616 2.8% 6.485 6.678 3.0% ('FilteredAnd3Terms', None) 1.471 1.495 1.6% 2.482 2.535 2.2% 2.726 2.789 2.3% 2.776 2.989 7.7% 3.169 3.082 -2.7% ('FilteredAndHighHigh', None) 7.336 7.559 3.0% 7.604 7.869 3.5% 7.882 8.087 2.6% 8.179 8.173 -0.1% 8.322 9.828 18.1% ('FilteredAndHighMed', None) 2.205 2.233 1.3% 5.593 5.692 1.8% 5.922 5.923 0.0% 6.489 5.984 -7.8% 14.836 6.075 -59.1% ('FilteredAndStopWords', None) 7.968 8.163 2.5% 10.140 10.626 4.8% 18.493 10.812 -41.5% 18.493 10.812 -41.5% 106.131 103.813 -2.2% ('FilteredDismaxOrHighHigh', None) 10.469 9.946 -5.0% 11.105 10.645 -4.1% 11.838 10.919 -7.8% 16.670 17.999 8.0% 28.993 22.069 -23.9% ('FilteredDismaxOrHighMed', None) 3.159 3.115 -1.4% 7.450 7.213 -3.2% 7.779 7.579 -2.6% 7.886 7.866 -0.3% 133.165 140.034 5.2% ('FilteredDismaxTerm', None) 3.476 3.549 2.1% 4.718 4.789 1.5% 5.239 5.112 -2.4% 6.843 5.150 -24.7% 9.127 6.311 -30.9% ('FilteredIntNRQ', None) 3.237 3.353 3.6% 4.157 4.177 0.5% 4.636 4.500 -2.9% 6.224 4.554 -26.8% 55.981 61.682 10.2% ('FilteredOr2Terms2StopWords', None) 3.356 3.419 1.9% 7.129 7.365 3.3% 7.635 7.825 2.5% 8.124 10.295 26.7% 102.199 89.363 -12.6% ('FilteredOr3Terms', None) 4.618 4.599 -0.4% 6.132 6.112 -0.3% 7.110 6.299 -11.4% 7.806 6.360 -18.5% 7.934 6.550 -17.4% ('FilteredOrHighHigh', None) 7.635 7.823 2.5% 7.908 8.111 2.6% 8.203 9.682 18.0% 8.402 11.215 33.5% 58.798 135.432 130.3% ('FilteredOrHighMed', None) 2.219 2.262 1.9% 5.514 5.620 1.9% 6.060 5.957 -1.7% 25.004 17.757 -29.0% 26.026 33.659 29.3% ('FilteredOrMany', None) 31.130 31.567 1.4% 33.959 34.631 2.0% 35.576 36.389 2.3% 35.752 36.925 3.3% 36.069 36.975 2.5% ('FilteredOrStopWords', None) 11.258 11.971 6.3% 11.794 12.479 5.8% 13.383 13.705 2.4% 13.383 13.705 2.4% 178.772 139.973 -21.7% ('FilteredPhrase', None) 10.935 10.985 0.5% 17.065 17.323 1.5% 18.861 18.754 -0.6% 27.270 27.156 -0.4% 34.271 37.656 9.9% ('FilteredPrefix3', None) 1.804 1.812 0.4% 3.829 4.034 5.4% 4.276 4.415 3.3% 4.357 5.512 26.5% 5.003 13.984 179.5% ('FilteredTerm', None) 3.094 3.148 1.7% 4.462 4.461 -0.0% 4.875 4.787 -1.8% 5.789 5.105 -11.8% 31.091 30.926 -0.5% ('Fuzzy1', None) 8.933 9.031 1.1% 10.841 10.905 0.6% 11.640 11.868 2.0% 11.929 12.627 5.9% 37.521 38.334 2.2% ('Fuzzy2', None) 9.784 9.985 2.1% 11.999 12.017 0.2% 12.921 12.687 -1.8% 13.101 14.194 8.3% 13.997 23.630 68.8% ('IntNRQ', None) 3.118 3.204 2.7% 4.105 4.113 0.2% 4.456 4.436 -0.4% 7.101 4.939 -30.4% 15.300 7.599 -50.3% ('IntSet', None) 1.165 1.179 1.2% 1.367 1.415 3.5% 3.239 9.983 208.2% 20.614 17.457 -15.3% 26.460 25.231 -4.6% ('IntervalsOrdered', None) 35.120 35.904 2.2% 91.520 92.155 0.7% 92.588 93.039 0.5% 94.782 96.484 1.8% 106.143 103.989 -2.0% ('MedTermDayTaxoFacets', None) 22.151 24.485 10.5% 26.086 29.372 12.6% 26.834 30.130 12.3% 27.298 30.404 11.4% 28.059 30.458 8.5% ('Or2Terms2StopWords', None) 1.701 1.796 5.6% 4.733 5.218 10.3% 5.366 5.683 5.9% 6.047 22.336 269.4% 35.735 34.575 -3.2% ('Or3Terms', None) 2.130 2.212 3.8% 3.517 3.714 5.6% 3.897 4.101 5.2% 4.613 20.128 336.4% 260.708 270.007 3.6% ('OrHighHigh', None) 5.108 5.476 7.2% 5.758 6.074 5.5% 5.977 6.556 9.7% 6.094 13.884 127.8% 18.677 16.411 -12.1% ('OrHighMed', None) 1.643 1.804 9.8% 2.776 3.023 8.9% 3.051 3.355 10.0% 3.089 8.981 190.7% 9.137 9.158 0.2% ('OrHighMedDayTaxoFacets', None) 75.741 88.057 16.3% 245.237 293.291 19.6% 248.776 296.607 19.2% 250.590 298.349 19.1% 253.638 298.455 17.7% ('OrHighRare', None) 2.787 2.935 5.3% 3.080 3.224 4.7% 3.307 3.341 1.0% 3.458 3.469 0.3% 3.523 3.745 6.3% ('OrMany', None) 24.868 25.251 1.5% 27.284 28.144 3.2% 29.399 30.492 3.7% 31.880 41.868 31.3% 32.051 121.507 279.1% ('OrStopWords', None) 5.893 6.071 3.0% 15.415 16.255 5.4% 17.142 16.626 -3.0% 17.142 16.626 -3.0% 17.711 17.479 -1.3% ('PKLookup',) 2.721 2.707 -0.5% 2.870 2.858 -0.4% 4.086 3.565 -12.7% 5.566 5.712 2.6% 7.192 7.844 9.1% ('Phrase', None) 14.858 14.596 -1.8% 39.598 40.337 1.9% 42.157 42.251 0.2% 43.413 42.525 -2.0% 72.284 63.986 -11.5% ('PostFilteredVectorSearch', None) 1.874 1.866 -0.4% 2.095 2.068 -1.3% 4.865 5.351 10.0% 6.038 6.103 1.1% 6.144 6.502 5.8% ('PreFilteredVectorSearch', None) 5.683 5.752 1.2% 6.356 6.369 0.2% 27.392 32.490 18.6% 88.612 70.792 -20.1% 293.839 360.489 22.7% ('Prefix3', None) 1.085 1.106 1.9% 3.383 3.585 6.0% 3.904 4.036 3.4% 10.057 10.693 6.3% 90.596 80.522 -11.1% ('Respell',) 14.457 14.512 0.4% 16.868 16.858 -0.1% 18.139 19.403 7.0% 24.838 24.597 -1.0% 32.924 31.867 -3.2% ('SloppyPhrase', None) 79.351 80.075 0.9% 209.954 213.979 1.9% 213.573 215.976 1.1% 214.272 216.616 1.1% 288.021 287.223 -0.3% ('SpanNear', None) 33.870 34.362 1.5% 91.047 90.525 -0.6% 92.990 92.411 -0.6% 93.928 92.610 -1.4% 221.408 209.071 -5.6% ('Term', None) 0.831 0.854 2.8% 1.010 1.035 2.5% 1.208 1.269 5.1% 4.021 1.433 -64.4% 22.154 28.193 27.3% ('TermBGroup1M', None) 51.247 51.418 0.3% 83.806 83.658 -0.2% 85.014 85.220 0.2% 85.912 85.480 -0.5% 86.518 85.961 -0.6% ('TermBGroup1M1P', None) 25.482 25.219 -1.0% 45.667 45.122 -1.2% 46.097 45.718 -0.8% 46.312 46.582 0.6% 51.294 50.724 -1.1% ('TermDateFacets', None) 28.754 32.977 14.7% 49.533 57.345 15.8% 50.580 59.461 17.6% 135.153 81.647 -39.6% 163.780 140.560 -14.2% ('TermDateTimeSort', 'DateTime') 4.023 4.088 1.6% 5.738 5.718 -0.3% 6.132 6.495 5.9% 21.151 16.641 -21.3% 73.725 98.139 33.1% ('TermDateTimeSortSkipper', 'LastModified (skipper)') 6.370 6.555 2.9% 10.186 10.055 -1.3% 10.527 10.412 -1.1% 10.550 11.066 4.9% 44.643 35.195 -21.2% ('TermDayOfYearSort', 'DayOfYear') 2.298 2.437 6.1% 3.376 3.480 3.1% 3.786 3.873 2.3% 3.973 5.369 35.1% 28.477 19.991 -29.8% ('TermDayOfYearSortSkipper', 'DayOfYear (skipper)') 6.244 6.331 1.4% 10.917 10.908 -0.1% 11.209 11.218 0.1% 11.268 11.292 0.2% 12.412 11.352 -8.5% ('TermGroup100', None) 57.328 56.521 -1.4% 109.193 107.271 -1.8% 112.980 108.490 -4.0% 113.190 109.435 -3.3% 114.261 110.071 -3.7% ('TermGroup10K', None) 63.481 63.825 0.5% 109.527 110.023 0.5% 111.142 111.795 0.6% 112.197 113.155 0.9% 129.434 127.648 -1.4% ('TermGroup1M', None) 64.295 64.638 0.5% 113.941 114.187 0.2% 115.911 115.111 -0.7% 116.413 116.406 -0.0% 117.202 116.782 -0.4% ('TermMonthSort', 'Month') 0.882 0.903 2.4% 1.031 1.048 1.7% 1.223 1.241 1.4% 2.457 1.613 -34.3% 3.806 2.561 -32.7% ('TermMonthSortSkipper', 'Month (skipper)') 5.131 5.141 0.2% 8.938 9.023 1.0% 9.510 9.375 -1.4% 10.012 10.876 8.6% 61.150 70.294 15.0% ('TermTitleSort', 'Title') 7.396 7.904 6.9% 9.524 10.981 15.3% 17.380 14.170 -18.5% 65.316 71.229 9.1% 141.650 161.943 14.3% ('TermTitleSortSkipper', 'Title (skipper)') 6.569 6.476 -1.4% 10.206 10.140 -0.6% 10.556 10.493 -0.6% 10.830 12.027 11.1% 72.079 71.823 -0.4% ('VectorSearch', None) 2.241 2.045 -8.7% 3.241 2.209 -31.9% 6.073 6.186 1.8% 8.350 8.362 0.1% 10.908 13.649 25.1% ('Wildcard', None) 24.145 25.881 7.2% 38.082 39.415 3.5% 46.854 45.389 -3.1% 47.502 47.248 -0.5% 78.022 81.327 4.2% generate vmstat pretties /l/reports.nightly/2026.05.15.14.49.32/fastIndexMediumDocsWithVectorsQuantized /l/reports.nightly/2026.05.15.14.49.32/search-tasks /l/reports.nightly/2026.05.15.14.49.32/fastIndexBigDocs /l/reports.nightly/2026.05.15.14.49.32/fixedIndex /l/reports.nightly/2026.05.15.14.49.32/fastIndexMediumDocsWithVectors /l/reports.nightly/2026.05.15.14.49.32/nrtIndexMediumDocs /l/reports.nightly/2026.05.15.14.49.32/fastIndexMediumDocs JFR aggregation command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.stacksize=1 -Dtests.profile.count=50 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-search-nightly-nightly-14.jfr /l/logs.nightly/bench-search-nightly-nightly-13.jfr /l/logs.nightly/bench-search-nightly-nightly-5.jfr /l/logs.nightly/bench-search-nightly-nightly-0.jfr /l/logs.nightly/bench-search-nightly-nightly-17.jfr /l/logs.nightly/bench-search-nightly-nightly-19.jfr /l/logs.nightly/bench-search-nightly-nightly-16.jfr /l/logs.nightly/bench-search-nightly-nightly-11.jfr /l/logs.nightly/bench-search-nightly-nightly-8.jfr /l/logs.nightly/bench-search-nightly-nightly-18.jfr /l/logs.nightly/bench-search-nightly-nightly-1.jfr /l/logs.nightly/bench-search-nightly-nightly-7.jfr /l/logs.nightly/bench-search-nightly-nightly-9.jfr /l/logs.nightly/bench-search-nightly-nightly-2.jfr /l/logs.nightly/bench-search-nightly-nightly-3.jfr /l/logs.nightly/bench-search-nightly-nightly-6.jfr /l/logs.nightly/bench-search-nightly-nightly-12.jfr /l/logs.nightly/bench-search-nightly-nightly-4.jfr /l/logs.nightly/bench-search-nightly-nightly-10.jfr /l/logs.nightly/bench-search-nightly-nightly-15.jfr Took 45.49 seconds JFR aggregation command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.stacksize=2 -Dtests.profile.count=50 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-search-nightly-nightly-14.jfr /l/logs.nightly/bench-search-nightly-nightly-13.jfr /l/logs.nightly/bench-search-nightly-nightly-5.jfr /l/logs.nightly/bench-search-nightly-nightly-0.jfr /l/logs.nightly/bench-search-nightly-nightly-17.jfr /l/logs.nightly/bench-search-nightly-nightly-19.jfr /l/logs.nightly/bench-search-nightly-nightly-16.jfr /l/logs.nightly/bench-search-nightly-nightly-11.jfr /l/logs.nightly/bench-search-nightly-nightly-8.jfr /l/logs.nightly/bench-search-nightly-nightly-18.jfr /l/logs.nightly/bench-search-nightly-nightly-1.jfr /l/logs.nightly/bench-search-nightly-nightly-7.jfr /l/logs.nightly/bench-search-nightly-nightly-9.jfr /l/logs.nightly/bench-search-nightly-nightly-2.jfr /l/logs.nightly/bench-search-nightly-nightly-3.jfr /l/logs.nightly/bench-search-nightly-nightly-6.jfr /l/logs.nightly/bench-search-nightly-nightly-12.jfr /l/logs.nightly/bench-search-nightly-nightly-4.jfr /l/logs.nightly/bench-search-nightly-nightly-10.jfr /l/logs.nightly/bench-search-nightly-nightly-15.jfr Took 62.08 seconds JFR aggregation command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.stacksize=4 -Dtests.profile.count=50 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-search-nightly-nightly-14.jfr /l/logs.nightly/bench-search-nightly-nightly-13.jfr /l/logs.nightly/bench-search-nightly-nightly-5.jfr /l/logs.nightly/bench-search-nightly-nightly-0.jfr /l/logs.nightly/bench-search-nightly-nightly-17.jfr /l/logs.nightly/bench-search-nightly-nightly-19.jfr /l/logs.nightly/bench-search-nightly-nightly-16.jfr /l/logs.nightly/bench-search-nightly-nightly-11.jfr /l/logs.nightly/bench-search-nightly-nightly-8.jfr /l/logs.nightly/bench-search-nightly-nightly-18.jfr /l/logs.nightly/bench-search-nightly-nightly-1.jfr /l/logs.nightly/bench-search-nightly-nightly-7.jfr /l/logs.nightly/bench-search-nightly-nightly-9.jfr /l/logs.nightly/bench-search-nightly-nightly-2.jfr /l/logs.nightly/bench-search-nightly-nightly-3.jfr /l/logs.nightly/bench-search-nightly-nightly-6.jfr /l/logs.nightly/bench-search-nightly-nightly-12.jfr /l/logs.nightly/bench-search-nightly-nightly-4.jfr /l/logs.nightly/bench-search-nightly-nightly-10.jfr /l/logs.nightly/bench-search-nightly-nightly-15.jfr Took 95.88 seconds JFR aggregation command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.stacksize=8 -Dtests.profile.count=50 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-search-nightly-nightly-14.jfr /l/logs.nightly/bench-search-nightly-nightly-13.jfr /l/logs.nightly/bench-search-nightly-nightly-5.jfr /l/logs.nightly/bench-search-nightly-nightly-0.jfr /l/logs.nightly/bench-search-nightly-nightly-17.jfr /l/logs.nightly/bench-search-nightly-nightly-19.jfr /l/logs.nightly/bench-search-nightly-nightly-16.jfr /l/logs.nightly/bench-search-nightly-nightly-11.jfr /l/logs.nightly/bench-search-nightly-nightly-8.jfr /l/logs.nightly/bench-search-nightly-nightly-18.jfr /l/logs.nightly/bench-search-nightly-nightly-1.jfr /l/logs.nightly/bench-search-nightly-nightly-7.jfr /l/logs.nightly/bench-search-nightly-nightly-9.jfr /l/logs.nightly/bench-search-nightly-nightly-2.jfr /l/logs.nightly/bench-search-nightly-nightly-3.jfr /l/logs.nightly/bench-search-nightly-nightly-6.jfr /l/logs.nightly/bench-search-nightly-nightly-12.jfr /l/logs.nightly/bench-search-nightly-nightly-4.jfr /l/logs.nightly/bench-search-nightly-nightly-10.jfr /l/logs.nightly/bench-search-nightly-nightly-15.jfr Took 164.69 seconds JFR aggregation command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=cpu -Dtests.profile.stacksize=12 -Dtests.profile.count=50 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-search-nightly-nightly-14.jfr /l/logs.nightly/bench-search-nightly-nightly-13.jfr /l/logs.nightly/bench-search-nightly-nightly-5.jfr /l/logs.nightly/bench-search-nightly-nightly-0.jfr /l/logs.nightly/bench-search-nightly-nightly-17.jfr /l/logs.nightly/bench-search-nightly-nightly-19.jfr /l/logs.nightly/bench-search-nightly-nightly-16.jfr /l/logs.nightly/bench-search-nightly-nightly-11.jfr /l/logs.nightly/bench-search-nightly-nightly-8.jfr /l/logs.nightly/bench-search-nightly-nightly-18.jfr /l/logs.nightly/bench-search-nightly-nightly-1.jfr /l/logs.nightly/bench-search-nightly-nightly-7.jfr /l/logs.nightly/bench-search-nightly-nightly-9.jfr /l/logs.nightly/bench-search-nightly-nightly-2.jfr /l/logs.nightly/bench-search-nightly-nightly-3.jfr /l/logs.nightly/bench-search-nightly-nightly-6.jfr /l/logs.nightly/bench-search-nightly-nightly-12.jfr /l/logs.nightly/bench-search-nightly-nightly-4.jfr /l/logs.nightly/bench-search-nightly-nightly-10.jfr /l/logs.nightly/bench-search-nightly-nightly-15.jfr Took 224.60 seconds JFR aggregation command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.stacksize=1 -Dtests.profile.count=50 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-search-nightly-nightly-14.jfr /l/logs.nightly/bench-search-nightly-nightly-13.jfr /l/logs.nightly/bench-search-nightly-nightly-5.jfr /l/logs.nightly/bench-search-nightly-nightly-0.jfr /l/logs.nightly/bench-search-nightly-nightly-17.jfr /l/logs.nightly/bench-search-nightly-nightly-19.jfr /l/logs.nightly/bench-search-nightly-nightly-16.jfr /l/logs.nightly/bench-search-nightly-nightly-11.jfr /l/logs.nightly/bench-search-nightly-nightly-8.jfr /l/logs.nightly/bench-search-nightly-nightly-18.jfr /l/logs.nightly/bench-search-nightly-nightly-1.jfr /l/logs.nightly/bench-search-nightly-nightly-7.jfr /l/logs.nightly/bench-search-nightly-nightly-9.jfr /l/logs.nightly/bench-search-nightly-nightly-2.jfr /l/logs.nightly/bench-search-nightly-nightly-3.jfr /l/logs.nightly/bench-search-nightly-nightly-6.jfr /l/logs.nightly/bench-search-nightly-nightly-12.jfr /l/logs.nightly/bench-search-nightly-nightly-4.jfr /l/logs.nightly/bench-search-nightly-nightly-10.jfr /l/logs.nightly/bench-search-nightly-nightly-15.jfr Took 14.62 seconds JFR aggregation command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.stacksize=2 -Dtests.profile.count=50 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-search-nightly-nightly-14.jfr /l/logs.nightly/bench-search-nightly-nightly-13.jfr /l/logs.nightly/bench-search-nightly-nightly-5.jfr /l/logs.nightly/bench-search-nightly-nightly-0.jfr /l/logs.nightly/bench-search-nightly-nightly-17.jfr /l/logs.nightly/bench-search-nightly-nightly-19.jfr /l/logs.nightly/bench-search-nightly-nightly-16.jfr /l/logs.nightly/bench-search-nightly-nightly-11.jfr /l/logs.nightly/bench-search-nightly-nightly-8.jfr /l/logs.nightly/bench-search-nightly-nightly-18.jfr /l/logs.nightly/bench-search-nightly-nightly-1.jfr /l/logs.nightly/bench-search-nightly-nightly-7.jfr /l/logs.nightly/bench-search-nightly-nightly-9.jfr /l/logs.nightly/bench-search-nightly-nightly-2.jfr /l/logs.nightly/bench-search-nightly-nightly-3.jfr /l/logs.nightly/bench-search-nightly-nightly-6.jfr /l/logs.nightly/bench-search-nightly-nightly-12.jfr /l/logs.nightly/bench-search-nightly-nightly-4.jfr /l/logs.nightly/bench-search-nightly-nightly-10.jfr /l/logs.nightly/bench-search-nightly-nightly-15.jfr Took 14.13 seconds JFR aggregation command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.stacksize=4 -Dtests.profile.count=50 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-search-nightly-nightly-14.jfr /l/logs.nightly/bench-search-nightly-nightly-13.jfr /l/logs.nightly/bench-search-nightly-nightly-5.jfr /l/logs.nightly/bench-search-nightly-nightly-0.jfr /l/logs.nightly/bench-search-nightly-nightly-17.jfr /l/logs.nightly/bench-search-nightly-nightly-19.jfr /l/logs.nightly/bench-search-nightly-nightly-16.jfr /l/logs.nightly/bench-search-nightly-nightly-11.jfr /l/logs.nightly/bench-search-nightly-nightly-8.jfr /l/logs.nightly/bench-search-nightly-nightly-18.jfr /l/logs.nightly/bench-search-nightly-nightly-1.jfr /l/logs.nightly/bench-search-nightly-nightly-7.jfr /l/logs.nightly/bench-search-nightly-nightly-9.jfr /l/logs.nightly/bench-search-nightly-nightly-2.jfr /l/logs.nightly/bench-search-nightly-nightly-3.jfr /l/logs.nightly/bench-search-nightly-nightly-6.jfr /l/logs.nightly/bench-search-nightly-nightly-12.jfr /l/logs.nightly/bench-search-nightly-nightly-4.jfr /l/logs.nightly/bench-search-nightly-nightly-10.jfr /l/logs.nightly/bench-search-nightly-nightly-15.jfr Took 14.10 seconds JFR aggregation command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.stacksize=8 -Dtests.profile.count=50 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-search-nightly-nightly-14.jfr /l/logs.nightly/bench-search-nightly-nightly-13.jfr /l/logs.nightly/bench-search-nightly-nightly-5.jfr /l/logs.nightly/bench-search-nightly-nightly-0.jfr /l/logs.nightly/bench-search-nightly-nightly-17.jfr /l/logs.nightly/bench-search-nightly-nightly-19.jfr /l/logs.nightly/bench-search-nightly-nightly-16.jfr /l/logs.nightly/bench-search-nightly-nightly-11.jfr /l/logs.nightly/bench-search-nightly-nightly-8.jfr /l/logs.nightly/bench-search-nightly-nightly-18.jfr /l/logs.nightly/bench-search-nightly-nightly-1.jfr /l/logs.nightly/bench-search-nightly-nightly-7.jfr /l/logs.nightly/bench-search-nightly-nightly-9.jfr /l/logs.nightly/bench-search-nightly-nightly-2.jfr /l/logs.nightly/bench-search-nightly-nightly-3.jfr /l/logs.nightly/bench-search-nightly-nightly-6.jfr /l/logs.nightly/bench-search-nightly-nightly-12.jfr /l/logs.nightly/bench-search-nightly-nightly-4.jfr /l/logs.nightly/bench-search-nightly-nightly-10.jfr /l/logs.nightly/bench-search-nightly-nightly-15.jfr Took 13.82 seconds JFR aggregation command: /usr/lib/jvm/java-25-openjdk/bin/java --add-modules jdk.incubator.vector -Xmx32g -Xms32g -server -XX:+UseParallelGC -Djava.io.tmpdir=/l/tmp --enable-native-access=ALL-UNNAMED -cp /l/trunk.nightly/build-tools/build-infra/build/classes/java/main -Dtests.profile.mode=heap -Dtests.profile.stacksize=12 -Dtests.profile.count=50 -Dtests.profile.linenumbers=true org.apache.lucene.gradle.plugins.java.ProfileResults /l/logs.nightly/bench-search-nightly-nightly-14.jfr /l/logs.nightly/bench-search-nightly-nightly-13.jfr /l/logs.nightly/bench-search-nightly-nightly-5.jfr /l/logs.nightly/bench-search-nightly-nightly-0.jfr /l/logs.nightly/bench-search-nightly-nightly-17.jfr /l/logs.nightly/bench-search-nightly-nightly-19.jfr /l/logs.nightly/bench-search-nightly-nightly-16.jfr /l/logs.nightly/bench-search-nightly-nightly-11.jfr /l/logs.nightly/bench-search-nightly-nightly-8.jfr /l/logs.nightly/bench-search-nightly-nightly-18.jfr /l/logs.nightly/bench-search-nightly-nightly-1.jfr /l/logs.nightly/bench-search-nightly-nightly-7.jfr /l/logs.nightly/bench-search-nightly-nightly-9.jfr /l/logs.nightly/bench-search-nightly-nightly-2.jfr /l/logs.nightly/bench-search-nightly-nightly-3.jfr /l/logs.nightly/bench-search-nightly-nightly-6.jfr /l/logs.nightly/bench-search-nightly-nightly-12.jfr /l/logs.nightly/bench-search-nightly-nightly-4.jfr /l/logs.nightly/bench-search-nightly-nightly-10.jfr /l/logs.nightly/bench-search-nightly-nightly-15.jfr Took 14.16 seconds Blunders: now uploading files "/l/logs.nightly/bench-search-nightly-nightly-14.jfr" "/l/logs.nightly/bench-search-nightly-nightly-13.jfr" "/l/logs.nightly/bench-search-nightly-nightly-5.jfr" "/l/logs.nightly/bench-search-nightly-nightly-0.jfr" "/l/logs.nightly/bench-search-nightly-nightly-17.jfr" "/l/logs.nightly/bench-search-nightly-nightly-19.jfr" "/l/logs.nightly/bench-search-nightly-nightly-16.jfr" "/l/logs.nightly/bench-search-nightly-nightly-11.jfr" "/l/logs.nightly/bench-search-nightly-nightly-8.jfr" "/l/logs.nightly/bench-search-nightly-nightly-18.jfr" "/l/logs.nightly/bench-search-nightly-nightly-1.jfr" "/l/logs.nightly/bench-search-nightly-nightly-7.jfr" "/l/logs.nightly/bench-search-nightly-nightly-9.jfr" "/l/logs.nightly/bench-search-nightly-nightly-2.jfr" "/l/logs.nightly/bench-search-nightly-nightly-3.jfr" "/l/logs.nightly/bench-search-nightly-nightly-6.jfr" "/l/logs.nightly/bench-search-nightly-nightly-12.jfr" "/l/logs.nightly/bench-search-nightly-nightly-4.jfr" "/l/logs.nightly/bench-search-nightly-nightly-10.jfr" "/l/logs.nightly/bench-search-nightly-nightly-15.jfr" to blunders.io... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 0* Host s3.eu-west-1.amazonaws.com:443 was resolved. * IPv6: (none) * IPv4: 3.5.64.203, 52.92.32.192, 3.5.67.126, 3.5.71.75, 52.92.17.232, 52.92.16.72, 3.5.73.94, 52.92.16.216 * Trying 3.5.64.203:443... * ALPN: curl offers h2,http/1.1 } [5 bytes data] * TLSv1.3 (OUT), TLS handshake, Client hello (1): } [1570 bytes data] * SSL Trust Anchors: * CAfile: /etc/ssl/certs/ca-certificates.crt { [5 bytes data] * TLSv1.3 (IN), TLS handshake, Server hello (2): { [1210 bytes data] * TLSv1.3 (IN), TLS change cipher, Change cipher spec (1): { [1 bytes data] * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8): { [25 bytes data] * TLSv1.3 (IN), TLS handshake, Certificate (11): { [4422 bytes data] * TLSv1.3 (IN), TLS handshake, CERT verify (15): { [264 bytes data] * TLSv1.3 (IN), TLS handshake, Finished (20): { [36 bytes data] * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1): } [1 bytes data] * TLSv1.3 (OUT), TLS handshake, Finished (20): } [36 bytes data] * SSL connection using TLSv1.3 / TLS_AES_128_GCM_SHA256 / X25519MLKEM768 / RSASSA-PSS * ALPN: server accepted http/1.1 * Server certificate: * subject: CN=*.s3-eu-west-1.amazonaws.com * start date: Sep 5 00:00:00 2025 GMT * expire date: Aug 7 23:59:59 2026 GMT * issuer: C=US; O=Amazon; CN=Amazon RSA 2048 M04 * Certificate level 0: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption * Certificate level 1: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption * Certificate level 2: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption * subjectAltName: "s3.eu-west-1.amazonaws.com" matches cert's "s3.eu-west-1.amazonaws.com" * SSL certificate verified via OpenSSL. * Established connection to s3.eu-west-1.amazonaws.com (3.5.64.203 port 443) from 10.17.4.7 port 34536 * using HTTP/1.x } [5 bytes data] > PUT /jfr-uploads.blunders.io/demo/02eb6337-a4af-4fcd-844b-cc142e711dff.jfr.gz?X-Amz-Security-Token=IQoJb3JpZ2luX2VjEND%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMSJHMEUCIQDF2G%2FV8yXxN3RacyH8e4SyFn2tAAMRCUcDiq3ASVwYQQIgTAsbCl801Si%2FtTKqCy7s69L3oST9yIk1Da5WCckaP08qwwUImf%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAAGgw4MzU0OTQ3NTMxMjYiDEL%2BB3AoUth0Et5oqiqXBY2a84pIU64hKBnzRAm0CUvx7tmWfPduuNwd1R%2BfQovjj6N%2BASuZ%2BWF0aLO2neapiMbpakV3c39KwW4DGl1rX7e1utDXxrhxL9r%2F9QY2yqU3uj%2F%2F2%2BNSVhGoKKEkD1mMEUXj7KLfPi6bNGEcwB9zlIC2H0rzKMlPKmzW1BNYo7kkuOFH0ZyegQoMHE%2BZ41M19pGomSm2cj8rEM60ldfxZ4vzDG8I91L6Ot9YIGUPL16Dm0ZllAGxOqHQ4P2fx4N7zD2ty7vDbjpPNEyJkoTGUL97GoKqnQojRSZWZrn7vQ%2FQfjCmi4riF10hXYiYkv51pLve8XAqlEvgxviwjE0mdKPB%2FKT8k1No9Wf%2B6TzkeP3I6umsPGgu1ZPNeSdVM%2F7N044YgOb9yLbeocnaYKTjCD69MtIB9VaJPy414FQw5sKYBKZgQgoqgIp3mOhYXzpESAU%2FSkqwyxQlTPpJmwmIhzRigIcSzMBNAvgaADmufE2aBd1rm8mGCuveqMCNdcrzilYiREBooCq2D7WYtOYIC6dhml%2FyBVHznzolLw%2By9N3aYxKKarYLObyXGTuNTKdZZ2CkslFbkNv0%2BWoZgpr90O%2Blp68UA5pG84qwEW0Nn5oVCF6h2SkVUHw5izP%2BHncktxDVNW8jJw1Ham%2BINMvnkqEqXWbp0Tt4Oup2bHOVqFn%2BIsrWW2JNp3aeX8Otb7Zch5MsRg8IjXG0yoXP9%2FvjenGMd88%2Fu4Wy2uB2rYyxwkUohVaGQHfwGlsF8tWvhtR%2BeJSEGONMOseaoNfu%2Bs6pxALvNgIcF6vHmFnXgx831WcV1u7FrRanfo3GXEwsWj87eaG8%2Bj7yz9RvUrB3NT2g8ONMqpkZ%2BHM%2FSJlK%2Fo39yvR8OPSjMaWI7TDRjKTQBjqxAUvcRfdfUtKoRWWBgnsu5lujd3KXU7v6iZCUqe6Iq9%2F%2BF3iAxuYqGnztr1Zn4KkK827fhN1yivjQgIeddCxakT5xBBRVcTd5J8gvIJc7PUYrCoG9czhe7mx4g5JOqqB2YHFc9%2BwYlIfK%2BaTmY8WgkQJPLKdmib0cqe6IfKIvUxq6wCZMgImVUbppCohI4jTcUBNtv09cju1r5Obyjczt%2FyR7ozo1%2BObaNkoimyEHUbAtNg%3D%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20260517T020720Z&X-Amz-SignedHeaders=host&X-Amz-Credential=ASIA4FB26GNTFQNNCQZB%2F20260517%2Feu-west-1%2Fs3%2Faws4_request&X-Amz-Expires=86400&X-Amz-Signature=41bc7ef9b77596a626b33724fa6ea06b308416c1e292330fb949a0813ef98565 HTTP/1.1 > Host: s3.eu-west-1.amazonaws.com > User-Agent: curl/8.18.0 > Accept: */* > content-type: application/octet-stream > Content-Length: 428162841 > Expect: 100-continue > { [5 bytes data] < HTTP/1.1 100 Continue < } [5 bytes data] 0 408.3M 0 0 0 3.31M 0 3.30M 02:03 00:01 02:02 3.31M 2 408.3M 0 0 2 10.18M 0 5.07M 01:20 00:02 01:18 5.07M 4 408.3M 0 0 4 17.93M 0 5.96M 01:08 00:03 01:05 5.96M 6 408.3M 0 0 6 26.50M 0 6.60M 01:01 00:04 00:57 6.60M 8 408.3M 0 0 8 35.56M 0 7.08M 00:57 00:05 00:52 7.08M 10 408.3M 0 0 10 44.87M 0 7.44M 00:54 00:06 00:48 8.27M 13 408.3M 0 0 13 54.43M 0 7.75M 00:52 00:07 00:45 8.82M 15 408.3M 0 0 15 63.87M 0 7.96M 00:51 00:08 00:43 9.16M 18 408.3M 0 0 18 73.50M 0 8.14M 00:50 00:09 00:41 9.38M 20 408.3M 0 0 20 83.12M 0 8.29M 00:49 00:10 00:39 9.49M 22 408.3M 0 0 22 92.81M 0 8.41M 00:48 00:11 00:37 9.58M 25 408.3M 0 0 25 102.4M 0 8.51M 00:47 00:12 00:35 9.58M 27 408.3M 0 0 27 111.2M 0 8.53M 00:47 00:13 00:34 9.46M 29 408.3M 0 0 29 118.8M 0 8.47M 00:48 00:14 00:34 9.05M 31 408.3M 0 0 31 127.3M 0 8.47M 00:48 00:15 00:33 8.84M 33 408.3M 0 0 33 136.3M 0 8.50M 00:48 00:16 00:32 8.70M 35 408.3M 0 0 35 145.8M 0 8.55M 00:47 00:17 00:30 8.66M 38 408.3M 0 0 38 155.3M 0 8.60M 00:47 00:18 00:29 8.79M 40 408.3M 0 0 40 165.0M 0 8.66M 00:47 00:19 00:28 9.21M 42 408.3M 0 0 42 174.9M 0 8.72M 00:46 00:20 00:26 9.47M 45 408.3M 0 0 45 184.7M 0 8.77M 00:46 00:21 00:25 9.63M 47 408.3M 0 0 47 194.5M 0 8.82M 00:46 00:22 00:24 9.71M 50 408.3M 0 0 50 204.4M 0 8.86M 00:46 00:23 00:23 9.80M 52 408.3M 0 0 52 214.3M 0 8.91M 00:45 00:24 00:21 9.83M 54 408.3M 0 0 54 224.5M 0 8.95M 00:45 00:25 00:20 9.90M 57 408.3M 0 0 57 235.0M 0 9.01M 00:45 00:26 00:19 10.03M 60 408.3M 0 0 60 246.0M 0 9.08M 00:44 00:27 00:17 10.26M 63 408.3M 0 0 63 257.7M 0 9.18M 00:44 00:28 00:16 10.63M 65 408.3M 0 0 65 267.4M 0 9.20M 00:44 00:29 00:15 10.59M 67 408.3M 0 0 67 276.8M 0 9.20M 00:44 00:30 00:14 10.44M 69 408.3M 0 0 69 284.3M 0 9.15M 00:44 00:31 00:13 9.85M 71 408.3M 0 0 71 292.5M 0 9.11M 00:44 00:32 00:12 9.27M 73 408.3M 0 0 73 300.8M 0 9.09M 00:44 00:33 00:11 8.58M 75 408.3M 0 0 75 309.3M 0 9.07M 00:44 00:34 00:10 8.34M 77 408.3M 0 0 77 318.0M 0 9.06M 00:45 00:35 00:10 8.18M 80 408.3M 0 0 80 326.6M 0 9.04M 00:45 00:36 00:09 8.41M 82 408.3M 0 0 82 335.3M 0 9.03M 00:45 00:37 00:08 8.53M 84 408.3M 0 0 84 344.0M 0 9.02M 00:45 00:38 00:07 8.61M 86 408.3M 0 0 86 352.8M 0 9.02M 00:45 00:39 00:06 8.66M 88 408.3M 0 0 88 361.6M 0 9.01M 00:45 00:40 00:05 8.70M 90 408.3M 0 0 90 370.8M 0 9.01M 00:45 00:41 00:04 8.79M 93 408.3M 0 0 93 380.4M 0 9.03M 00:45 00:42 00:03 8.97M 95 408.3M 0 0 95 390.5M 0 9.05M 00:45 00:43 00:02 9.25M 98 408.3M 0 0 98 401.4M 0 9.09M 00:44 00:44 9.67M* upload completely sent off: 428162841 bytes { [5 bytes data] < HTTP/1.1 200 OK < x-amz-id-2: prh6L3WoqdNiIZTWt+1nBdFrbimp1G8J4SvZQy/qWzQmk4VWe9BXzUfRZsrG3mypzwVksmFPvPNOqGjGzeD3eYrdsfsUqHKQ < x-amz-request-id: FSS6WR4K0RKJRZAE < Date: Sun, 17 May 2026 02:07:53 GMT < x-amz-server-side-encryption: AES256 < ETag: "57f932dfebbb93fbcc23ee11ae4b91bc" < x-amz-checksum-crc64nvme: Tb7CDq/cs38= < x-amz-checksum-type: FULL_OBJECT < Content-Length: 0 < Server: AmazonS3 < 100 408.3M 0 0 100 408.3M 0 9.07M 00:44 00:44 9.67M 100 408.3M 0 0 100 408.3M 0 9.07M 00:44 00:44 9.67M 100 408.3M 0 0 100 408.3M 0 9.07M 00:44 00:44 9.67M * Connection #0 to host s3.eu-west-1.amazonaws.com:443 left intact took: 76.50 seconds Blunders: now uploading files "/l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.nd27.625M.jfr" to blunders.io... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 0* Host s3.eu-west-1.amazonaws.com:443 was resolved. * IPv6: (none) * IPv4: 52.92.17.184, 3.5.73.48, 3.5.75.82, 3.5.69.3, 3.5.66.53, 3.5.75.6, 52.92.18.96, 52.92.17.136 * Trying 52.92.17.184:443... * ALPN: curl offers h2,http/1.1 } [5 bytes data] * TLSv1.3 (OUT), TLS handshake, Client hello (1): } [1570 bytes data] * SSL Trust Anchors: * CAfile: /etc/ssl/certs/ca-certificates.crt { [5 bytes data] * TLSv1.3 (IN), TLS handshake, Server hello (2): { [1210 bytes data] * TLSv1.3 (IN), TLS change cipher, Change cipher spec (1): { [1 bytes data] * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8): { [25 bytes data] * TLSv1.3 (IN), TLS handshake, Certificate (11): { [4422 bytes data] * TLSv1.3 (IN), TLS handshake, CERT verify (15): { [264 bytes data] * TLSv1.3 (IN), TLS handshake, Finished (20): { [36 bytes data] * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1): } [1 bytes data] * TLSv1.3 (OUT), TLS handshake, Finished (20): } [36 bytes data] * SSL connection using TLSv1.3 / TLS_CHACHA20_POLY1305_SHA256 / X25519MLKEM768 / RSASSA-PSS * ALPN: server accepted http/1.1 * Server certificate: * subject: CN=*.s3-eu-west-1.amazonaws.com * start date: Sep 5 00:00:00 2025 GMT * expire date: Aug 7 23:59:59 2026 GMT * issuer: C=US; O=Amazon; CN=Amazon RSA 2048 M04 * Certificate level 0: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption * Certificate level 1: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption * Certificate level 2: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption * subjectAltName: "s3.eu-west-1.amazonaws.com" matches cert's "s3.eu-west-1.amazonaws.com" * SSL certificate verified via OpenSSL. * Established connection to s3.eu-west-1.amazonaws.com (52.92.17.184 port 443) from 10.17.4.7 port 54990 * using HTTP/1.x } [5 bytes data] > PUT /jfr-uploads.blunders.io/demo/ec54df57-9459-4666-b8ac-cc648ddde896.jfr.gz?X-Amz-Security-Token=IQoJb3JpZ2luX2VjEND%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMSJHMEUCIQDF2G%2FV8yXxN3RacyH8e4SyFn2tAAMRCUcDiq3ASVwYQQIgTAsbCl801Si%2FtTKqCy7s69L3oST9yIk1Da5WCckaP08qwwUImf%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAAGgw4MzU0OTQ3NTMxMjYiDEL%2BB3AoUth0Et5oqiqXBY2a84pIU64hKBnzRAm0CUvx7tmWfPduuNwd1R%2BfQovjj6N%2BASuZ%2BWF0aLO2neapiMbpakV3c39KwW4DGl1rX7e1utDXxrhxL9r%2F9QY2yqU3uj%2F%2F2%2BNSVhGoKKEkD1mMEUXj7KLfPi6bNGEcwB9zlIC2H0rzKMlPKmzW1BNYo7kkuOFH0ZyegQoMHE%2BZ41M19pGomSm2cj8rEM60ldfxZ4vzDG8I91L6Ot9YIGUPL16Dm0ZllAGxOqHQ4P2fx4N7zD2ty7vDbjpPNEyJkoTGUL97GoKqnQojRSZWZrn7vQ%2FQfjCmi4riF10hXYiYkv51pLve8XAqlEvgxviwjE0mdKPB%2FKT8k1No9Wf%2B6TzkeP3I6umsPGgu1ZPNeSdVM%2F7N044YgOb9yLbeocnaYKTjCD69MtIB9VaJPy414FQw5sKYBKZgQgoqgIp3mOhYXzpESAU%2FSkqwyxQlTPpJmwmIhzRigIcSzMBNAvgaADmufE2aBd1rm8mGCuveqMCNdcrzilYiREBooCq2D7WYtOYIC6dhml%2FyBVHznzolLw%2By9N3aYxKKarYLObyXGTuNTKdZZ2CkslFbkNv0%2BWoZgpr90O%2Blp68UA5pG84qwEW0Nn5oVCF6h2SkVUHw5izP%2BHncktxDVNW8jJw1Ham%2BINMvnkqEqXWbp0Tt4Oup2bHOVqFn%2BIsrWW2JNp3aeX8Otb7Zch5MsRg8IjXG0yoXP9%2FvjenGMd88%2Fu4Wy2uB2rYyxwkUohVaGQHfwGlsF8tWvhtR%2BeJSEGONMOseaoNfu%2Bs6pxALvNgIcF6vHmFnXgx831WcV1u7FrRanfo3GXEwsWj87eaG8%2Bj7yz9RvUrB3NT2g8ONMqpkZ%2BHM%2FSJlK%2Fo39yvR8OPSjMaWI7TDRjKTQBjqxAUvcRfdfUtKoRWWBgnsu5lujd3KXU7v6iZCUqe6Iq9%2F%2BF3iAxuYqGnztr1Zn4KkK827fhN1yivjQgIeddCxakT5xBBRVcTd5J8gvIJc7PUYrCoG9czhe7mx4g5JOqqB2YHFc9%2BwYlIfK%2BaTmY8WgkQJPLKdmib0cqe6IfKIvUxq6wCZMgImVUbppCohI4jTcUBNtv09cju1r5Obyjczt%2FyR7ozo1%2BObaNkoimyEHUbAtNg%3D%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20260517T020837Z&X-Amz-SignedHeaders=host&X-Amz-Credential=ASIA4FB26GNTFQNNCQZB%2F20260517%2Feu-west-1%2Fs3%2Faws4_request&X-Amz-Expires=86400&X-Amz-Signature=ef37b89819c07bb0d4c6e435a9e761bfa772e274690c2c81adfa3bc3445a3479 HTTP/1.1 > Host: s3.eu-west-1.amazonaws.com > User-Agent: curl/8.18.0 > Accept: */* > content-type: application/octet-stream > Content-Length: 72701214 > Expect: 100-continue > { [5 bytes data] < HTTP/1.1 100 Continue < } [5 bytes data] 0 69.33M 0 0 0 128.0k 0 99.50k 11:53 00:01 11:52 99.45k 0 69.33M 0 0 0 320.0k 0 129.8k 09:06 00:02 09:04 129.8k 0 69.33M 0 0 0 448.0k 0 118.5k 09:58 00:03 09:55 118.5k 0 69.33M 0 0 0 704.0k 0 141.3k 08:22 00:04 08:18 141.2k 1 69.33M 0 0 1 896.0k 0 148.0k 07:59 00:06 07:53 148.0k 1 69.33M 0 0 1 1.06M 0 151.4k 07:48 00:07 07:41 162.7k 1 69.33M 0 0 1 1.31M 0 159.8k 07:24 00:08 07:16 172.1k 2 69.33M 0 0 2 1.56M 0 165.6k 07:08 00:09 06:59 195.9k 2 69.33M 0 0 2 1.75M 0 162.5k 07:16 00:11 07:05 180.1k 2 69.33M 0 0 2 1.87M 0 154.7k 07:38 00:12 07:26 161.1k 2 69.33M 0 0 2 1.93M 0 140.1k 08:26 00:14 08:12 128.4k 2 69.33M 0 0 2 2.06M 0 138.5k 08:32 00:15 08:17 112.3k 3 69.33M 0 0 3 2.18M 0 136.2k 08:41 00:16 08:25 96603 3 69.33M 0 0 3 2.31M 0 132.6k 08:55 00:17 08:38 86282 3 69.33M 0 0 3 2.43M 0 131.7k 08:58 00:18 08:40 90228 3 69.33M 0 0 3 2.68M 0 137.0k 08:37 00:20 08:17 129.7k 4 69.33M 0 0 4 2.93M 0 141.1k 08:22 00:21 08:01 147.8k 4 69.33M 0 0 4 3.12M 0 143.2k 08:15 00:22 07:53 162.7k 4 69.33M 0 0 4 3.31M 0 142.8k 08:17 00:23 07:54 173.6k 5 69.33M 0 0 5 3.50M 0 142.9k 08:16 00:25 07:51 177.4k 5 69.33M 0 0 5 3.75M 0 145.1k 08:09 00:26 07:43 170.5k 5 69.33M 0 0 5 3.87M 0 144.3k 08:11 00:27 07:44 155.4k 5 69.33M 0 0 5 4.06M 0 143.8k 08:13 00:28 07:45 145.8k 6 69.33M 0 0 6 4.18M 0 142.6k 08:17 00:30 07:47 142.1k 6 69.33M 0 0 6 4.31M 0 141.1k 08:22 00:31 07:51 134.0k 6 69.33M 0 0 6 4.50M 0 141.6k 08:21 00:32 07:49 126.5k 6 69.33M 0 0 6 4.62M 0 140.7k 08:24 00:33 07:51 124.6k 6 69.33M 0 0 6 4.75M 0 140.1k 08:26 00:34 07:52 121.8k 7 69.33M 0 0 7 4.93M 0 141.0k 08:23 00:35 07:48 132.8k 7 69.33M 0 0 7 5.12M 0 141.3k 08:22 00:37 07:45 142.5k 7 69.33M 0 0 7 5.25M 0 141.0k 08:23 00:38 07:45 137.1k 7 69.33M 0 0 7 5.37M 0 139.2k 08:30 00:39 07:51 130.4k 7 69.33M 0 0 7 5.50M 0 138.8k 08:31 00:40 07:51 130.6k 8 69.33M 0 0 8 5.68M 0 139.7k 08:27 00:41 07:46 131.7k 8 69.33M 0 0 8 5.87M 0 139.6k 08:28 00:43 07:45 128.6k 8 69.33M 0 0 8 6.00M 0 138.9k 08:31 00:44 07:47 125.7k 8 69.33M 0 0 8 6.18M 0 139.9k 08:27 00:45 07:42 145.3k 9 69.33M 0 0 9 6.31M 0 138.8k 08:31 00:46 07:45 139.4k 9 69.33M 0 0 9 6.43M 0 138.2k 08:33 00:47 07:46 127.8k 9 69.33M 0 0 9 6.68M 0 139.8k 08:27 00:48 07:39 141.6k 9 69.33M 0 0 9 6.87M 0 140.3k 08:25 00:50 07:35 151.3k 10 69.33M 0 0 10 7.06M 0 140.7k 08:24 00:51 07:33 146.5k 10 69.33M 0 0 10 7.25M 0 141.1k 08:22 00:52 07:30 158.8k 10 69.33M 0 0 10 7.43M 0 140.5k 08:25 00:54 07:31 156.9k 10 69.33M 0 0 10 7.56M 0 140.0k 08:27 00:55 07:32 140.9k 11 69.33M 0 0 11 7.75M 0 140.1k 08:26 00:56 07:30 137.9k 11 69.33M 0 0 11 7.93M 0 139.9k 08:27 00:58 07:29 134.0k 11 69.33M 0 0 11 8.06M 0 139.4k 08:29 00:59 07:30 125.5k 11 69.33M 0 0 11 8.25M 0 140.1k 08:26 01:00 07:26 136.6k 12 69.33M 0 0 12 8.43M 0 140.8k 08:24 01:01 07:23 148.6k 12 69.33M 0 0 12 8.62M 0 141.0k 08:23 01:02 07:21 149.8k 12 69.33M 0 0 12 8.75M 0 140.2k 08:26 01:03 07:23 142.4k 12 69.33M 0 0 12 8.87M 0 139.8k 08:27 01:04 07:23 143.9k 13 69.33M 0 0 13 9.12M 0 141.1k 08:23 01:06 07:17 150.9k 13 69.33M 0 0 13 9.43M 0 143.6k 08:14 01:07 07:07 172.6k 13 69.33M 0 0 13 9.68M 0 145.1k 08:09 01:08 07:01 189.4k 14 69.33M 0 0 14 9.87M 0 144.3k 08:11 01:10 07:01 187.6k 14 69.33M 0 0 14 10.00M 0 143.7k 08:13 01:11 07:02 185.1k 14 69.33M 0 0 14 10.12M 0 143.1k 08:16 01:12 07:04 164.7k 14 69.33M 0 0 14 10.25M 0 142.8k 08:17 01:13 07:04 133.7k 15 69.33M 0 0 15 10.43M 0 143.1k 08:15 01:14 07:01 122.1k 15 69.33M 0 0 15 10.62M 0 143.7k 08:13 01:15 06:58 136.5k 15 69.33M 0 0 15 10.87M 0 144.9k 08:09 01:16 06:53 159.5k 15 69.33M 0 0 15 11.00M 0 144.3k 08:11 01:18 06:53 160.5k 16 69.33M 0 0 16 11.12M 0 143.0k 08:16 01:19 06:57 145.1k 16 69.33M 0 0 16 11.18M 0 142.0k 08:19 01:20 06:59 127.7k 16 69.33M 0 0 16 11.31M 0 141.2k 08:22 01:22 07:00 110.6k 16 69.33M 0 0 16 11.43M 0 140.9k 08:23 01:23 07:00 94371 16 69.33M 0 0 16 11.56M 0 140.5k 08:25 01:24 07:01 95148 16 69.33M 0 0 16 11.68M 0 140.3k 08:25 01:25 07:00 102.6k 17 69.33M 0 0 17 11.81M 0 139.6k 08:28 01:26 07:02 107.6k 17 69.33M 0 0 17 11.93M 0 138.8k 08:31 01:28 07:03 106.3k 17 69.33M 0 0 17 12.06M 0 138.6k 08:31 01:29 07:02 106.9k 17 69.33M 0 0 17 12.18M 0 138.4k 08:32 01:30 07:02 107.8k 17 69.33M 0 0 17 12.31M 0 138.1k 08:33 01:31 07:02 107.2k 18 69.33M 0 0 18 12.50M 0 138.3k 08:33 01:32 07:01 119.5k 18 69.33M 0 0 18 12.75M 0 138.9k 08:30 01:33 06:57 140.6k 18 69.33M 0 0 18 12.93M 0 139.4k 08:29 01:34 06:55 150.9k 19 69.33M 0 0 19 13.25M 0 141.1k 08:22 01:36 06:46 183.0k 19 69.33M 0 0 19 13.62M 0 143.4k 08:14 01:37 06:37 224.0k 20 69.33M 0 0 20 13.87M 0 144.2k 08:12 01:38 06:34 233.8k 20 69.33M 0 0 20 14.06M 0 144.1k 08:12 01:39 06:33 226.0k 20 69.33M 0 0 20 14.25M 0 144.2k 08:12 01:41 06:31 218.0k 20 69.33M 0 0 20 14.43M 0 144.6k 08:10 01:42 06:28 198.8k 21 69.33M 0 0 21 14.56M 0 144.4k 08:11 01:43 06:28 159.2k 21 69.33M 0 0 21 14.75M 0 144.4k 08:11 01:44 06:27 148.7k 21 69.33M 0 0 21 14.87M 0 144.2k 08:12 01:45 06:27 146.5k 21 69.33M 0 0 21 15.00M 0 143.5k 08:14 01:46 06:28 131.5k 21 69.33M 0 0 21 15.12M 0 143.1k 08:15 01:48 06:27 118.2k 21 69.33M 0 0 21 15.25M 0 142.8k 08:17 01:49 06:28 115.6k 22 69.33M 0 0 22 15.37M 0 142.3k 08:18 01:50 06:28 104.9k 22 69.33M 0 0 22 15.50M 0 141.6k 08:21 01:52 06:29 99.42k 22 69.33M 0 0 22 15.62M 0 141.5k 08:21 01:53 06:28 106.2k 22 69.33M 0 0 22 15.81M 0 141.5k 08:21 01:54 06:27 113.2k 22 69.33M 0 0 22 15.93M 0 141.3k 08:22 01:55 06:27 116.1k 23 69.33M 0 0 23 16.12M 0 141.3k 08:22 01:56 06:26 123.8k 23 69.33M 0 0 23 16.31M 0 141.2k 08:22 01:58 06:24 134.1k 23 69.33M 0 0 23 16.56M 0 141.8k 08:20 01:59 06:21 147.1k 24 69.33M 0 0 24 16.75M 0 142.0k 08:19 02:00 06:19 149.8k 24 69.33M 0 0 24 16.93M 0 142.3k 08:18 02:01 06:17 158.8k 24 69.33M 0 0 24 17.12M 0 142.6k 08:17 02:02 06:15 168.7k 24 69.33M 0 0 24 17.25M 0 142.5k 08:18 02:03 06:15 167.9k 25 69.33M 0 0 25 17.37M 0 142.0k 08:19 02:05 06:14 146.3k 25 69.33M 0 0 25 17.56M 0 142.0k 08:19 02:06 06:13 143.5k 25 69.33M 0 0 25 17.75M 0 141.9k 08:20 02:08 06:12 135.2k 25 69.33M 0 0 25 17.93M 0 141.9k 08:20 02:09 06:11 127.8k 26 69.33M 0 0 26 18.12M 0 142.0k 08:19 02:10 06:09 133.5k 26 69.33M 0 0 26 18.31M 0 142.0k 08:19 02:11 06:08 142.5k 26 69.33M 0 0 26 18.43M 0 141.7k 08:20 02:13 06:07 135.2k 26 69.33M 0 0 26 18.56M 0 141.3k 08:22 02:14 06:08 129.8k 26 69.33M 0 0 26 18.68M 0 141.2k 08:22 02:15 06:07 127.4k 27 69.33M 0 0 27 18.87M 0 141.0k 08:23 02:16 06:07 120.9k 27 69.33M 0 0 27 19.06M 0 141.1k 08:22 02:18 06:04 122.0k 27 69.33M 0 0 27 19.31M 0 141.6k 08:21 02:19 06:02 140.4k 28 69.33M 0 0 28 19.50M 0 141.7k 08:21 02:20 06:01 148.0k 28 69.33M 0 0 28 19.62M 0 141.5k 08:21 02:21 06:00 147.3k 28 69.33M 0 0 28 19.75M 0 141.4k 08:22 02:22 06:00 149.2k 28 69.33M 0 0 28 19.93M 0 141.3k 08:22 02:24 05:58 145.5k 28 69.33M 0 0 28 20.06M 0 141.2k 08:22 02:25 05:57 131.3k 29 69.33M 0 0 29 20.18M 0 140.4k 08:25 02:27 05:58 112.4k 29 69.33M 0 0 29 20.31M 0 139.7k 08:27 02:28 05:59 103.0k 29 69.33M 0 0 29 20.50M 0 139.7k 08:28 02:30 05:58 106.4k 29 69.33M 0 0 29 20.62M 0 139.4k 08:29 02:31 05:58 100.0k 29 69.33M 0 0 29 20.75M 0 139.3k 08:29 02:32 05:57 99.91k 30 69.33M 0 0 30 20.93M 0 139.3k 08:29 02:33 05:56 115.5k 30 69.33M 0 0 30 21.12M 0 139.5k 08:28 02:34 05:54 134.6k 30 69.33M 0 0 30 21.31M 0 139.8k 08:27 02:36 05:51 142.1k 31 69.33M 0 0 31 21.50M 0 139.7k 08:28 02:37 05:51 147.4k 31 69.33M 0 0 31 21.62M 0 139.4k 08:29 02:38 05:51 140.8k 31 69.33M 0 0 31 21.75M 0 139.1k 08:30 02:40 05:50 133.6k 31 69.33M 0 0 31 21.93M 0 139.2k 08:29 02:41 05:48 131.3k 31 69.33M 0 0 31 22.12M 0 139.5k 08:28 02:42 05:46 132.4k 32 69.33M 0 0 32 22.37M 0 140.2k 08:26 02:43 05:43 152.6k 32 69.33M 0 0 32 22.56M 0 140.1k 08:26 02:44 05:42 160.0k 32 69.33M 0 0 32 22.68M 0 139.7k 08:27 02:46 05:41 155.3k 32 69.33M 0 0 32 22.87M 0 139.9k 08:27 02:47 05:40 158.5k 33 69.33M 0 0 33 23.06M 0 140.0k 08:26 02:48 05:38 153.1k 33 69.33M 0 0 33 23.31M 0 140.4k 08:25 02:49 05:36 145.9k 33 69.33M 0 0 33 23.50M 0 140.6k 08:24 02:51 05:33 153.4k 34 69.33M 0 0 34 23.62M 0 140.3k 08:25 02:52 05:33 157.1k 34 69.33M 0 0 34 23.75M 0 140.1k 08:26 02:53 05:33 146.6k 34 69.33M 0 0 34 23.87M 0 140.0k 08:26 02:54 05:32 140.9k 34 69.33M 0 0 34 24.00M 0 139.9k 08:27 02:55 05:32 126.2k 34 69.33M 0 0 34 24.12M 0 139.8k 08:27 02:56 05:31 116.0k 34 69.33M 0 0 34 24.25M 0 139.7k 08:28 02:57 05:31 118.2k 35 69.33M 0 0 35 24.37M 0 139.5k 08:28 02:58 05:30 117.5k 35 69.33M 0 0 35 24.50M 0 139.4k 08:29 02:59 05:30 118.1k 35 69.33M 0 0 35 24.68M 0 139.6k 08:28 03:01 05:27 127.3k 35 69.33M 0 0 35 24.87M 0 139.4k 08:29 03:02 05:27 126.0k 36 69.33M 0 0 36 25.00M 0 139.0k 08:30 03:04 05:26 120.3k 36 69.33M 0 0 36 25.06M 0 138.6k 08:32 03:05 05:27 113.2k 36 69.33M 0 0 36 25.18M 0 138.4k 08:32 03:06 05:26 109.6k 36 69.33M 0 0 36 25.31M 0 138.0k 08:34 03:07 05:27 97378 36 69.33M 0 0 36 25.43M 0 137.7k 08:35 03:09 05:26 93135 36 69.33M 0 0 36 25.62M 0 137.8k 08:34 03:10 05:24 103.0k 37 69.33M 0 0 37 25.75M 0 137.7k 08:35 03:11 05:24 112.5k 37 69.33M 0 0 37 25.87M 0 137.6k 08:35 03:12 05:23 114.6k 37 69.33M 0 0 37 26.00M 0 137.2k 08:37 03:14 05:23 113.0k 37 69.33M 0 0 37 26.12M 0 136.9k 08:38 03:15 05:23 111.5k 37 69.33M 0 0 37 26.25M 0 136.8k 08:38 03:16 05:22 105.0k 38 69.33M 0 0 38 26.37M 0 136.6k 08:39 03:17 05:22 101.7k 38 69.33M 0 0 38 26.56M 0 136.6k 08:39 03:19 05:20 108.1k 38 69.33M 0 0 38 26.75M 0 136.6k 08:39 03:20 05:19 119.5k 38 69.33M 0 0 38 26.87M 0 136.4k 08:40 03:21 05:19 121.5k 38 69.33M 0 0 38 27.00M 0 136.2k 08:41 03:22 05:19 117.3k 39 69.33M 0 0 39 27.12M 0 136.1k 08:41 03:24 05:17 120.7k 39 69.33M 0 0 39 27.31M 0 136.2k 08:41 03:25 05:16 122.6k 39 69.33M 0 0 39 27.56M 0 136.5k 08:39 03:26 05:13 134.3k 40 69.33M 0 0 40 27.75M 0 136.5k 08:39 03:28 05:11 139.0k 40 69.33M 0 0 40 27.93M 0 136.3k 08:40 03:29 05:11 139.3k 40 69.33M 0 0 40 28.06M 0 136.1k 08:41 03:31 05:10 135.8k 40 69.33M 0 0 40 28.18M 0 135.9k 08:42 03:32 05:10 127.5k 40 69.33M 0 0 40 28.37M 0 136.0k 08:41 03:33 05:08 121.3k 41 69.33M 0 0 41 28.50M 0 135.7k 08:43 03:35 05:08 111.4k 41 69.33M 0 0 41 28.62M 0 135.6k 08:43 03:36 05:07 113.5k 41 69.33M 0 0 41 28.81M 0 135.8k 08:42 03:37 05:05 126.2k 41 69.33M 0 0 41 29.00M 0 136.0k 08:41 03:38 05:03 138.1k 42 69.33M 0 0 42 29.18M 0 135.9k 08:42 03:39 05:03 130.6k 42 69.33M 0 0 42 29.37M 0 136.0k 08:41 03:41 05:00 147.4k 42 69.33M 0 0 42 29.62M 0 136.4k 08:40 03:42 04:58 164.1k 42 69.33M 0 0 42 29.75M 0 136.4k 08:40 03:43 04:57 155.7k 43 69.33M 0 0 43 29.93M 0 136.4k 08:40 03:44 04:56 149.6k 43 69.33M 0 0 43 30.06M 0 136.3k 08:40 03:45 04:55 150.0k 43 69.33M 0 0 43 30.25M 0 136.3k 08:40 03:47 04:53 147.2k 43 69.33M 0 0 43 30.43M 0 136.5k 08:39 03:48 04:51 140.9k 44 69.33M 0 0 44 30.56M 0 136.5k 08:40 03:49 04:51 140.6k 44 69.33M 0 0 44 30.68M 0 136.4k 08:40 03:50 04:50 137.9k 44 69.33M 0 0 44 30.81M 0 136.3k 08:40 03:51 04:49 139.5k 44 69.33M 0 0 44 31.00M 0 136.3k 08:40 03:52 04:48 136.7k 44 69.33M 0 0 44 31.12M 0 136.2k 08:40 03:53 04:47 124.2k 45 69.33M 0 0 45 31.25M 0 136.2k 08:41 03:54 04:47 124.1k 45 69.33M 0 0 45 31.37M 0 135.9k 08:42 03:56 04:46 115.5k 45 69.33M 0 0 45 31.50M 0 135.8k 08:42 03:57 04:45 115.8k 45 69.33M 0 0 45 31.62M 0 135.8k 08:42 03:58 04:44 112.7k 45 69.33M 0 0 45 31.81M 0 135.9k 08:42 03:59 04:43 123.1k 46 69.33M 0 0 46 32.06M 0 136.3k 08:40 04:00 04:40 143.5k 46 69.33M 0 0 46 32.31M 0 136.7k 08:39 04:01 04:38 171.3k 46 69.33M 0 0 46 32.50M 0 136.8k 08:38 04:03 04:35 177.4k 47 69.33M 0 0 47 32.68M 0 136.8k 08:38 04:04 04:34 176.0k 47 69.33M 0 0 47 32.81M 0 136.6k 08:39 04:05 04:34 164.4k 47 69.33M 0 0 47 32.93M 0 136.3k 08:40 04:07 04:33 135.4k 47 69.33M 0 0 47 33.12M 0 136.4k 08:40 04:08 04:32 126.6k 48 69.33M 0 0 48 33.31M 0 136.6k 08:39 04:09 04:30 130.0k 48 69.33M 0 0 48 33.50M 0 136.6k 08:39 04:11 04:28 130.3k 48 69.33M 0 0 48 33.62M 0 136.6k 08:39 04:12 04:27 133.7k 48 69.33M 0 0 48 33.81M 0 136.7k 08:39 04:13 04:26 152.2k 49 69.33M 0 0 49 34.00M 0 136.8k 08:38 04:14 04:24 151.4k 49 69.33M 0 0 49 34.12M 0 136.6k 08:39 04:15 04:24 137.3k 49 69.33M 0 0 49 34.25M 0 136.6k 08:39 04:16 04:23 136.0k 49 69.33M 0 0 49 34.43M 0 136.5k 08:39 04:18 04:21 133.7k 49 69.33M 0 0 49 34.56M 0 136.3k 08:40 04:19 04:21 120.6k 50 69.33M 0 0 50 34.68M 0 135.8k 08:42 04:21 04:21 101.1k 50 69.33M 0 0 50 34.81M 0 135.6k 08:43 04:22 04:21 99999 50 69.33M 0 0 50 34.93M 0 135.3k 08:44 04:24 04:20 95331 50 69.33M 0 0 50 35.06M 0 135.3k 08:44 04:25 04:19 93729 50 69.33M 0 0 50 35.25M 0 135.5k 08:43 04:26 04:17 104.8k 51 69.33M 0 0 51 35.43M 0 135.6k 08:43 04:27 04:16 128.2k 51 69.33M 0 0 51 35.62M 0 135.7k 08:43 04:28 04:15 141.4k 51 69.33M 0 0 51 35.81M 0 135.8k 08:42 04:29 04:13 159.1k 51 69.33M 0 0 51 36.00M 0 136.0k 08:41 04:30 04:11 167.9k 52 69.33M 0 0 52 36.18M 0 136.2k 08:41 04:32 04:09 168.1k 52 69.33M 0 0 52 36.31M 0 136.1k 08:41 04:33 04:08 158.5k 52 69.33M 0 0 52 36.43M 0 136.0k 08:41 04:34 04:07 150.0k 52 69.33M 0 0 52 36.56M 0 135.9k 08:42 04:35 04:07 137.9k 53 69.33M 0 0 53 36.75M 0 135.9k 08:42 04:36 04:06 132.7k 53 69.33M 0 0 53 37.00M 0 136.2k 08:41 04:38 04:03 136.2k 53 69.33M 0 0 53 37.18M 0 136.3k 08:40 04:39 04:01 142.8k 53 69.33M 0 0 53 37.37M 0 136.3k 08:40 04:40 04:00 150.7k 54 69.33M 0 0 54 37.50M 0 136.1k 08:41 04:42 03:59 145.7k 54 69.33M 0 0 54 37.62M 0 136.0k 08:41 04:43 03:58 140.0k 54 69.33M 0 0 54 37.75M 0 136.0k 08:41 04:44 03:57 126.2k 54 69.33M 0 0 54 37.93M 0 136.0k 08:41 04:45 03:56 124.2k 54 69.33M 0 0 54 38.06M 0 135.8k 08:42 04:46 03:56 114.4k 55 69.33M 0 0 55 38.18M 0 135.7k 08:43 04:48 03:55 115.3k 55 69.33M 0 0 55 38.31M 0 135.5k 08:43 04:49 03:54 112.9k 55 69.33M 0 0 55 38.43M 0 135.4k 08:44 04:50 03:54 108.8k 55 69.33M 0 0 55 38.62M 0 135.5k 08:43 04:51 03:52 114.0k 55 69.33M 0 0 55 38.81M 0 135.6k 08:43 04:52 03:51 125.6k 56 69.33M 0 0 56 38.93M 0 135.4k 08:44 04:54 03:50 124.1k 56 69.33M 0 0 56 39.06M 0 135.3k 08:44 04:55 03:49 126.6k 56 69.33M 0 0 56 39.25M 0 135.5k 08:43 04:56 03:47 140.6k 56 69.33M 0 0 56 39.43M 0 135.6k 08:43 04:57 03:46 137.7k 57 69.33M 0 0 57 39.62M 0 135.6k 08:43 04:59 03:44 132.2k 57 69.33M 0 0 57 39.81M 0 135.6k 08:43 05:00 03:43 143.5k 57 69.33M 0 0 57 39.93M 0 135.6k 08:43 05:01 03:42 146.6k 57 69.33M 0 0 57 40.06M 0 135.5k 08:43 05:02 03:41 135.3k 57 69.33M 0 0 57 40.18M 0 135.3k 08:44 05:03 03:41 123.1k 58 69.33M 0 0 58 40.37M 0 135.4k 08:44 05:05 03:39 128.4k 58 69.33M 0 0 58 40.56M 0 135.5k 08:43 05:06 03:37 132.1k 58 69.33M 0 0 58 40.75M 0 135.7k 08:43 05:07 03:36 142.2k 59 69.33M 0 0 59 41.00M 0 135.8k 08:42 05:09 03:33 152.7k 59 69.33M 0 0 59 41.12M 0 135.6k 08:43 05:10 03:33 146.4k 59 69.33M 0 0 59 41.25M 0 135.4k 08:44 05:11 03:33 132.8k 59 69.33M 0 0 59 41.37M 0 135.3k 08:44 05:12 03:32 125.4k 59 69.33M 0 0 59 41.56M 0 135.3k 08:44 05:14 03:30 115.7k 59 69.33M 0 0 59 41.56M 0 135.3k 08:44 05:14 03:30 135.3k 60 69.33M 0 0 60 41.68M 0 135.2k 08:44 05:15 03:29 115.5k 60 69.33M 0 0 60 41.75M 0 135.0k 08:45 05:16 03:29 93223 60 69.33M 0 0 60 41.87M 0 134.8k 08:46 05:17 03:29 91224 60 69.33M 0 0 60 42.06M 0 134.7k 08:46 05:19 03:27 98.08k 60 69.33M 0 0 60 42.18M 0 134.6k 08:47 05:20 03:27 100.2k 61 69.33M 0 0 61 42.37M 0 134.8k 08:46 05:21 03:25 111.3k 61 69.33M 0 0 61 42.62M 0 135.1k 08:45 05:22 03:23 138.9k 61 69.33M 0 0 61 42.87M 0 135.4k 08:44 05:24 03:20 163.9k 62 69.33M 0 0 62 43.00M 0 135.3k 08:44 05:25 03:19 167.3k 62 69.33M 0 0 62 43.12M 0 135.1k 08:45 05:26 03:19 160.3k 62 69.33M 0 0 62 43.25M 0 135.0k 08:45 05:27 03:18 148.0k 62 69.33M 0 0 62 43.37M 0 134.9k 08:46 05:29 03:17 123.7k 62 69.33M 0 0 62 43.56M 0 134.9k 08:46 05:30 03:16 111.1k 63 69.33M 0 0 63 43.68M 0 134.8k 08:46 05:31 03:15 109.1k 63 69.33M 0 0 63 43.81M 0 134.7k 08:46 05:32 03:14 115.0k 63 69.33M 0 0 63 43.93M 0 134.5k 08:47 05:34 03:13 109.0k 63 69.33M 0 0 63 44.12M 0 134.6k 08:47 05:35 03:12 119.9k 63 69.33M 0 0 63 44.31M 0 134.7k 08:46 05:36 03:10 126.6k 64 69.33M 0 0 64 44.56M 0 135.0k 08:45 05:38 03:07 144.5k 64 69.33M 0 0 64 44.81M 0 135.2k 08:44 05:39 03:05 159.9k 64 69.33M 0 0 64 45.00M 0 135.3k 08:44 05:40 03:04 181.4k 65 69.33M 0 0 65 45.18M 0 135.5k 08:43 05:41 03:02 187.5k 65 69.33M 0 0 65 45.43M 0 135.8k 08:42 05:42 03:00 200.8k 65 69.33M 0 0 65 45.62M 0 135.8k 08:42 05:43 02:59 186.1k 65 69.33M 0 0 65 45.75M 0 135.8k 08:42 05:44 02:58 171.1k 66 69.33M 0 0 66 45.87M 0 135.6k 08:43 05:46 02:57 152.0k 66 69.33M 0 0 66 46.00M 0 135.6k 08:43 05:47 02:56 140.9k 66 69.33M 0 0 66 46.18M 0 135.7k 08:43 05:48 02:55 125.4k 66 69.33M 0 0 66 46.31M 0 135.6k 08:43 05:49 02:54 120.8k 66 69.33M 0 0 66 46.43M 0 135.5k 08:43 05:50 02:53 120.1k 67 69.33M 0 0 67 46.56M 0 135.5k 08:43 05:51 02:52 126.9k 67 69.33M 0 0 67 46.68M 0 135.4k 08:44 05:52 02:52 125.0k 67 69.33M 0 0 67 46.87M 0 135.6k 08:43 05:53 02:50 129.1k 67 69.33M 0 0 67 47.00M 0 135.4k 08:44 05:55 02:49 125.5k 68 69.33M 0 0 68 47.18M 0 135.4k 08:44 05:56 02:48 128.7k 68 69.33M 0 0 68 47.31M 0 135.4k 08:44 05:57 02:47 128.2k 68 69.33M 0 0 68 47.43M 0 135.3k 08:44 05:58 02:46 129.6k 68 69.33M 0 0 68 47.62M 0 135.3k 08:44 06:00 02:44 122.2k 68 69.33M 0 0 68 47.75M 0 135.3k 08:44 06:01 02:43 126.5k 69 69.33M 0 0 69 47.87M 0 135.0k 08:45 06:02 02:43 113.8k 69 69.33M 0 0 69 48.00M 0 134.8k 08:46 06:04 02:42 102.5k 69 69.33M 0 0 69 48.12M 0 134.4k 08:47 06:06 02:41 95130 69 69.33M 0 0 69 48.25M 0 134.3k 08:48 06:07 02:41 86596 69 69.33M 0 0 69 48.37M 0 134.1k 08:49 06:09 02:40 82331 69 69.33M 0 0 69 48.50M 0 133.9k 08:50 06:10 02:40 82747 70 69.33M 0 0 70 48.62M 0 133.8k 08:50 06:11 02:39 90269 70 69.33M 0 0 70 48.81M 0 133.9k 08:49 06:13 02:36 105.2k 70 69.33M 0 0 70 49.00M 0 134.0k 08:49 06:14 02:35 120.3k 70 69.33M 0 0 70 49.18M 0 134.2k 08:49 06:15 02:34 138.6k 71 69.33M 0 0 71 49.37M 0 134.1k 08:49 06:16 02:33 149.6k 71 69.33M 0 0 71 49.50M 0 134.0k 08:49 06:18 02:31 145.3k 71 69.33M 0 0 71 49.68M 0 134.1k 08:49 06:19 02:30 144.8k 71 69.33M 0 0 71 49.81M 0 134.0k 08:49 06:20 02:29 133.4k 72 69.33M 0 0 72 50.00M 0 134.1k 08:49 06:21 02:28 131.3k 72 69.33M 0 0 72 50.12M 0 134.0k 08:49 06:22 02:27 127.0k 72 69.33M 0 0 72 50.25M 0 133.9k 08:49 06:24 02:25 126.9k 72 69.33M 0 0 72 50.43M 0 133.9k 08:49 06:25 02:24 122.4k 73 69.33M 0 0 73 50.62M 0 133.9k 08:49 06:26 02:23 127.2k 73 69.33M 0 0 73 50.81M 0 134.0k 08:49 06:28 02:21 126.1k 73 69.33M 0 0 73 51.06M 0 134.2k 08:48 06:29 02:19 146.0k 73 69.33M 0 0 73 51.25M 0 134.3k 08:48 06:30 02:18 158.3k 74 69.33M 0 0 74 51.43M 0 134.4k 08:47 06:31 02:16 167.5k 74 69.33M 0 0 74 51.62M 0 134.5k 08:47 06:32 02:15 169.5k 74 69.33M 0 0 74 51.75M 0 134.4k 08:47 06:34 02:13 163.9k 74 69.33M 0 0 74 51.87M 0 134.2k 08:48 06:35 02:13 133.9k 75 69.33M 0 0 75 52.00M 0 134.2k 08:48 06:36 02:12 124.8k 75 69.33M 0 0 75 52.18M 0 134.2k 08:48 06:37 02:11 122.2k 75 69.33M 0 0 75 52.37M 0 134.3k 08:48 06:39 02:09 122.1k 75 69.33M 0 0 75 52.56M 0 134.4k 08:48 06:40 02:08 133.6k 76 69.33M 0 0 76 52.75M 0 134.5k 08:47 06:41 02:06 151.1k 76 69.33M 0 0 76 52.93M 0 134.6k 08:47 06:42 02:05 162.1k 76 69.33M 0 0 76 53.12M 0 134.7k 08:46 06:43 02:03 168.9k 76 69.33M 0 0 76 53.37M 0 135.0k 08:45 06:44 02:01 189.6k 77 69.33M 0 0 77 53.56M 0 135.1k 08:45 06:45 02:00 181.9k 77 69.33M 0 0 77 53.68M 0 134.9k 08:45 06:47 01:58 167.8k 77 69.33M 0 0 77 53.81M 0 134.8k 08:46 06:48 01:58 148.0k 77 69.33M 0 0 77 53.93M 0 134.7k 08:46 06:49 01:57 132.6k 77 69.33M 0 0 77 54.06M 0 134.6k 08:47 06:51 01:56 108.7k 78 69.33M 0 0 78 54.25M 0 134.6k 08:47 06:52 01:55 104.2k 78 69.33M 0 0 78 54.37M 0 134.5k 08:47 06:53 01:54 109.4k 78 69.33M 0 0 78 54.56M 0 134.6k 08:47 06:54 01:53 122.4k 78 69.33M 0 0 78 54.75M 0 134.6k 08:47 06:56 01:51 127.8k 79 69.33M 0 0 79 54.87M 0 134.5k 08:47 06:57 01:50 129.9k 79 69.33M 0 0 79 55.06M 0 134.6k 08:47 06:58 01:49 135.7k 79 69.33M 0 0 79 55.25M 0 134.7k 08:46 06:59 01:47 145.8k 79 69.33M 0 0 79 55.37M 0 134.7k 08:47 07:00 01:47 139.7k 80 69.33M 0 0 80 55.56M 0 134.7k 08:46 07:02 01:44 144.2k 80 69.33M 0 0 80 55.75M 0 134.8k 08:46 07:03 01:43 150.9k 80 69.33M 0 0 80 55.87M 0 134.6k 08:47 07:04 01:43 138.8k 80 69.33M 0 0 80 56.00M 0 134.5k 08:47 07:06 01:41 118.7k 81 69.33M 0 0 81 56.18M 0 134.5k 08:47 07:07 01:40 127.0k 81 69.33M 0 0 81 56.43M 0 134.7k 08:46 07:08 01:38 133.9k 81 69.33M 0 0 81 56.62M 0 134.7k 08:46 07:10 01:36 131.5k 81 69.33M 0 0 81 56.75M 0 134.6k 08:47 07:11 01:36 130.8k 82 69.33M 0 0 82 56.87M 0 134.5k 08:47 07:12 01:35 134.8k 82 69.33M 0 0 82 57.00M 0 134.3k 08:48 07:14 01:34 120.2k 82 69.33M 0 0 82 57.18M 0 134.3k 08:48 07:15 01:33 110.5k 82 69.33M 0 0 82 57.31M 0 134.1k 08:49 07:17 01:32 98.73k 82 69.33M 0 0 82 57.43M 0 134.0k 08:49 07:18 01:31 99.23k 83 69.33M 0 0 83 57.62M 0 134.1k 08:49 07:19 01:30 109.7k 83 69.33M 0 0 83 57.81M 0 134.1k 08:49 07:21 01:28 120.1k 83 69.33M 0 0 83 57.93M 0 134.0k 08:49 07:22 01:27 112.8k 83 69.33M 0 0 83 58.06M 0 133.9k 08:50 07:23 01:27 117.6k 83 69.33M 0 0 83 58.18M 0 133.8k 08:50 07:25 01:25 119.4k 84 69.33M 0 0 84 58.31M 0 133.7k 08:50 07:26 01:24 106.9k 84 69.33M 0 0 84 58.43M 0 133.5k 08:51 07:28 01:23 96989 84 69.33M 0 0 84 58.56M 0 133.4k 08:51 07:29 01:22 97669 84 69.33M 0 0 84 58.75M 0 133.4k 08:51 07:30 01:21 103.6k 85 69.33M 0 0 85 58.93M 0 133.5k 08:51 07:31 01:20 116.3k 85 69.33M 0 0 85 59.12M 0 133.6k 08:51 07:32 01:19 130.7k 85 69.33M 0 0 85 59.31M 0 133.7k 08:50 07:34 01:16 149.7k 85 69.33M 0 0 85 59.43M 0 133.7k 08:50 07:35 01:15 152.9k 85 69.33M 0 0 85 59.56M 0 133.5k 08:51 07:36 01:15 141.5k 86 69.33M 0 0 86 59.68M 0 133.3k 08:52 07:38 01:14 119.2k 86 69.33M 0 0 86 59.81M 0 133.2k 08:52 07:39 01:13 103.3k 86 69.33M 0 0 86 59.93M 0 133.1k 08:53 07:41 01:12 93542 86 69.33M 0 0 86 60.06M 0 133.1k 08:53 07:42 01:11 95408 86 69.33M 0 0 86 60.25M 0 133.0k 08:53 07:43 01:10 101.1k 87 69.33M 0 0 87 60.37M 0 133.0k 08:53 07:44 01:09 109.8k 87 69.33M 0 0 87 60.50M 0 133.0k 08:53 07:45 01:08 116.6k 87 69.33M 0 0 87 60.62M 0 132.9k 08:53 07:46 01:07 122.6k 87 69.33M 0 0 87 60.81M 0 132.9k 08:54 07:48 01:06 121.5k 87 69.33M 0 0 87 60.93M 0 132.8k 08:54 07:49 01:05 114.9k 88 69.33M 0 0 88 61.06M 0 132.8k 08:54 07:50 01:04 115.0k 88 69.33M 0 0 88 61.18M 0 132.7k 08:54 07:51 01:03 115.1k 88 69.33M 0 0 88 61.31M 0 132.6k 08:55 07:53 01:02 109.3k 88 69.33M 0 0 88 61.43M 0 132.5k 08:55 07:54 01:01 103.5k 88 69.33M 0 0 88 61.56M 0 132.4k 08:56 07:56 01:00 100.5k 89 69.33M 0 0 89 61.75M 0 132.4k 08:56 07:57 00:59 104.2k 89 69.33M 0 0 89 61.93M 0 132.5k 08:55 07:58 00:57 115.1k 89 69.33M 0 0 89 62.18M 0 132.7k 08:54 07:59 00:55 136.4k 90 69.33M 0 0 90 62.43M 0 132.9k 08:54 08:01 00:53 157.5k 90 69.33M 0 0 90 62.68M 0 133.1k 08:53 08:02 00:51 191.0k 90 69.33M 0 0 90 62.87M 0 133.1k 08:53 08:03 00:50 195.6k 90 69.33M 0 0 90 63.06M 0 133.2k 08:52 08:04 00:48 194.7k 91 69.33M 0 0 91 63.25M 0 133.3k 08:52 08:05 00:47 184.3k 91 69.33M 0 0 91 63.43M 0 133.4k 08:52 08:06 00:46 175.7k 91 69.33M 0 0 91 63.56M 0 133.3k 08:52 08:08 00:44 150.8k 91 69.33M 0 0 91 63.68M 0 133.2k 08:52 08:09 00:43 140.8k 92 69.33M 0 0 92 63.81M 0 133.2k 08:53 08:10 00:43 125.9k 92 69.33M 0 0 92 63.93M 0 133.1k 08:53 08:11 00:42 119.7k 92 69.33M 0 0 92 64.06M 0 133.1k 08:53 08:12 00:41 111.0k 92 69.33M 0 0 92 64.18M 0 133.1k 08:53 08:13 00:40 111.5k 92 69.33M 0 0 92 64.37M 0 133.1k 08:53 08:15 00:38 123.2k 93 69.33M 0 0 93 64.56M 0 133.1k 08:53 08:16 00:37 131.0k 93 69.33M 0 0 93 64.68M 0 133.1k 08:53 08:17 00:36 130.3k 93 69.33M 0 0 93 64.81M 0 133.0k 08:53 08:18 00:35 126.7k 93 69.33M 0 0 93 64.93M 0 132.9k 08:53 08:20 00:33 121.7k 93 69.33M 0 0 93 65.06M 0 132.8k 08:54 08:21 00:33 110.0k 94 69.33M 0 0 94 65.25M 0 132.9k 08:54 08:22 00:32 112.1k 94 69.33M 0 0 94 65.43M 0 132.9k 08:54 08:24 00:30 117.1k 94 69.33M 0 0 94 65.62M 0 132.9k 08:54 08:25 00:29 123.3k 94 69.33M 0 0 94 65.75M 0 132.8k 08:54 08:26 00:28 126.2k 95 69.33M 0 0 95 65.87M 0 132.7k 08:54 08:28 00:26 122.5k 95 69.33M 0 0 95 66.00M 0 132.6k 08:55 08:29 00:26 112.7k 95 69.33M 0 0 95 66.12M 0 132.5k 08:55 08:30 00:25 106.1k 95 69.33M 0 0 95 66.25M 0 132.5k 08:55 08:31 00:24 102.9k 95 69.33M 0 0 95 66.43M 0 132.6k 08:55 08:33 00:22 111.2k 96 69.33M 0 0 96 66.68M 0 132.8k 08:54 08:34 00:20 138.8k 96 69.33M 0 0 96 66.93M 0 133.0k 08:53 08:35 00:18 166.3k 96 69.33M 0 0 96 67.18M 0 133.2k 08:52 08:36 00:16 189.4k 97 69.33M 0 0 97 67.37M 0 133.2k 08:52 08:37 00:15 192.1k 97 69.33M 0 0 97 67.50M 0 133.1k 08:53 08:39 00:14 179.0k 97 69.33M 0 0 97 67.62M 0 133.1k 08:53 08:40 00:13 158.8k 97 69.33M 0 0 97 67.75M 0 133.0k 08:53 08:41 00:12 139.0k 97 69.33M 0 0 97 67.93M 0 133.1k 08:53 08:42 00:11 124.0k 98 69.33M 0 0 98 68.06M 0 133.0k 08:53 08:43 00:10 116.2k 98 69.33M 0 0 98 68.18M 0 132.9k 08:53 08:45 00:08 116.8k 98 69.33M 0 0 98 68.37M 0 133.0k 08:53 08:46 00:07 125.2k 98 69.33M 0 0 98 68.50M 0 133.0k 08:53 08:47 00:06 125.6k 99 69.33M 0 0 99 68.68M 0 133.0k 08:53 08:48 00:05 128.1k 99 69.33M 0 0 99 68.87M 0 133.1k 08:53 08:49 00:04 138.7k 99 69.33M 0 0 99 69.06M 0 133.2k 08:52 08:50 00:02 158.5k 99 69.33M 0 0 99 69.25M 0 133.3k 08:52 08:51 00:01 162.5k* upload completely sent off: 72701214 bytes 100 69.33M 0 0 100 69.33M 0 133.2k 08:53 08:53 151.5k{ [5 bytes data] < HTTP/1.1 200 OK < x-amz-id-2: fl2mHDcYnKMjoR5oiMJ31K9xIk+dImUvwwn65zyKlYOXqaC6N9UVay4bqts9Ex2LFV/CRbNRB3c= < x-amz-request-id: 4W37BK50MA5QX8ZX < Date: Sun, 17 May 2026 02:08:45 GMT < x-amz-server-side-encryption: AES256 < ETag: "c10079c32c38fda894a247ca9df27814" < x-amz-checksum-crc64nvme: aHwCTnANtcE= < x-amz-checksum-type: FULL_OBJECT < Content-Length: 0 < Server: AmazonS3 < Connection: close < 100 69.33M 0 0 100 69.33M 0 132.9k 08:53 08:53 151.5k 100 69.33M 0 0 100 69.33M 0 132.9k 08:53 08:53 151.5k 100 69.33M 0 0 100 69.33M 0 132.9k 08:53 08:53 151.5k * shutting down connection #0 took: 539.76 seconds Blunders: now uploading files "/l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.Lucene104.vectors=1024.nd27.625M.jfr" to blunders.io... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 0* Host s3.eu-west-1.amazonaws.com:443 was resolved. * IPv6: (none) * IPv4: 3.5.72.71, 52.92.18.152, 3.5.73.90, 3.5.71.89, 3.5.71.78, 3.5.73.117, 3.5.72.85, 3.5.64.249 * Trying 3.5.72.71:443... * ALPN: curl offers h2,http/1.1 } [5 bytes data] * TLSv1.3 (OUT), TLS handshake, Client hello (1): } [1570 bytes data] * SSL Trust Anchors: * CAfile: /etc/ssl/certs/ca-certificates.crt { [5 bytes data] * TLSv1.3 (IN), TLS handshake, Server hello (2): { [1210 bytes data] * TLSv1.3 (IN), TLS change cipher, Change cipher spec (1): { [1 bytes data] * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8): { [25 bytes data] * TLSv1.3 (IN), TLS handshake, Certificate (11): { [4422 bytes data] * TLSv1.3 (IN), TLS handshake, CERT verify (15): { [264 bytes data] * TLSv1.3 (IN), TLS handshake, Finished (20): { [36 bytes data] * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1): } [1 bytes data] * TLSv1.3 (OUT), TLS handshake, Finished (20): } [36 bytes data] * SSL connection using TLSv1.3 / TLS_AES_128_GCM_SHA256 / X25519MLKEM768 / RSASSA-PSS * ALPN: server accepted http/1.1 * Server certificate: * subject: CN=*.s3-eu-west-1.amazonaws.com * start date: Sep 5 00:00:00 2025 GMT * expire date: Aug 7 23:59:59 2026 GMT * issuer: C=US; O=Amazon; CN=Amazon RSA 2048 M04 * Certificate level 0: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption * Certificate level 1: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption * Certificate level 2: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption * subjectAltName: "s3.eu-west-1.amazonaws.com" matches cert's "s3.eu-west-1.amazonaws.com" * SSL certificate verified via OpenSSL. * Established connection to s3.eu-west-1.amazonaws.com (3.5.72.71 port 443) from 10.17.4.7 port 42390 * using HTTP/1.x } [5 bytes data] > PUT /jfr-uploads.blunders.io/demo/0c32289a-583f-46c5-906a-cd048447be78.jfr.gz?X-Amz-Security-Token=IQoJb3JpZ2luX2VjEND%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMSJHMEUCIQDF2G%2FV8yXxN3RacyH8e4SyFn2tAAMRCUcDiq3ASVwYQQIgTAsbCl801Si%2FtTKqCy7s69L3oST9yIk1Da5WCckaP08qwwUImf%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAAGgw4MzU0OTQ3NTMxMjYiDEL%2BB3AoUth0Et5oqiqXBY2a84pIU64hKBnzRAm0CUvx7tmWfPduuNwd1R%2BfQovjj6N%2BASuZ%2BWF0aLO2neapiMbpakV3c39KwW4DGl1rX7e1utDXxrhxL9r%2F9QY2yqU3uj%2F%2F2%2BNSVhGoKKEkD1mMEUXj7KLfPi6bNGEcwB9zlIC2H0rzKMlPKmzW1BNYo7kkuOFH0ZyegQoMHE%2BZ41M19pGomSm2cj8rEM60ldfxZ4vzDG8I91L6Ot9YIGUPL16Dm0ZllAGxOqHQ4P2fx4N7zD2ty7vDbjpPNEyJkoTGUL97GoKqnQojRSZWZrn7vQ%2FQfjCmi4riF10hXYiYkv51pLve8XAqlEvgxviwjE0mdKPB%2FKT8k1No9Wf%2B6TzkeP3I6umsPGgu1ZPNeSdVM%2F7N044YgOb9yLbeocnaYKTjCD69MtIB9VaJPy414FQw5sKYBKZgQgoqgIp3mOhYXzpESAU%2FSkqwyxQlTPpJmwmIhzRigIcSzMBNAvgaADmufE2aBd1rm8mGCuveqMCNdcrzilYiREBooCq2D7WYtOYIC6dhml%2FyBVHznzolLw%2By9N3aYxKKarYLObyXGTuNTKdZZ2CkslFbkNv0%2BWoZgpr90O%2Blp68UA5pG84qwEW0Nn5oVCF6h2SkVUHw5izP%2BHncktxDVNW8jJw1Ham%2BINMvnkqEqXWbp0Tt4Oup2bHOVqFn%2BIsrWW2JNp3aeX8Otb7Zch5MsRg8IjXG0yoXP9%2FvjenGMd88%2Fu4Wy2uB2rYyxwkUohVaGQHfwGlsF8tWvhtR%2BeJSEGONMOseaoNfu%2Bs6pxALvNgIcF6vHmFnXgx831WcV1u7FrRanfo3GXEwsWj87eaG8%2Bj7yz9RvUrB3NT2g8ONMqpkZ%2BHM%2FSJlK%2Fo39yvR8OPSjMaWI7TDRjKTQBjqxAUvcRfdfUtKoRWWBgnsu5lujd3KXU7v6iZCUqe6Iq9%2F%2BF3iAxuYqGnztr1Zn4KkK827fhN1yivjQgIeddCxakT5xBBRVcTd5J8gvIJc7PUYrCoG9czhe7mx4g5JOqqB2YHFc9%2BwYlIfK%2BaTmY8WgkQJPLKdmib0cqe6IfKIvUxq6wCZMgImVUbppCohI4jTcUBNtv09cju1r5Obyjczt%2FyR7ozo1%2BObaNkoimyEHUbAtNg%3D%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20260517T021738Z&X-Amz-SignedHeaders=host&X-Amz-Credential=ASIA4FB26GNTFQNNCQZB%2F20260517%2Feu-west-1%2Fs3%2Faws4_request&X-Amz-Expires=86400&X-Amz-Signature=39a1dfe580e6384bf3e17ae911121837d4398718b19152b351604f2ed0a939d7 HTTP/1.1 > Host: s3.eu-west-1.amazonaws.com > User-Agent: curl/8.18.0 > Accept: */* > content-type: application/octet-stream > Content-Length: 623329770 > Expect: 100-continue > { [5 bytes data] < HTTP/1.1 100 Continue < } [5 bytes data] 0 594.4M 0 0 0 3.31M 0 3.30M 02:59 00:01 02:58 3.30M 1 594.4M 0 0 1 10.37M 0 5.17M 01:54 00:02 01:52 5.17M 3 594.4M 0 0 3 18.37M 0 6.11M 01:37 00:03 01:34 6.11M 4 594.4M 0 0 4 27.06M 0 6.75M 01:27 00:04 01:23 6.75M 5 594.4M 0 0 5 34.31M 0 6.85M 01:26 00:05 01:21 6.85M 6 594.4M 0 0 6 41.37M 0 6.87M 01:26 00:06 01:20 7.59M 8 594.4M 0 0 8 48.75M 0 6.94M 01:25 00:07 01:18 7.65M 9 594.4M 0 0 9 56.37M 0 7.03M 01:24 00:08 01:16 7.58M 10 594.4M 0 0 10 64.06M 0 7.10M 01:23 00:09 01:14 7.37M 12 594.4M 0 0 12 71.37M 0 7.11M 01:23 00:10 01:13 7.37M 13 594.4M 0 0 13 77.43M 0 7.01M 01:24 00:11 01:13 7.17M 14 594.4M 0 0 14 84.12M 0 6.98M 01:25 00:12 01:13 7.03M 15 594.4M 0 0 15 89.81M 0 6.88M 01:26 00:13 01:13 6.64M 16 594.4M 0 0 16 95.31M 0 6.78M 01:27 00:14 01:13 6.21M 17 594.4M 0 0 17 101.0M 0 6.71M 01:28 00:15 01:13 5.90M 17 594.4M 0 0 17 106.5M 0 6.63M 01:29 00:16 01:13 5.79M 18 594.4M 0 0 18 111.0M 0 6.50M 01:31 00:17 01:14 5.35M 19 594.4M 0 0 19 115.8M 0 6.40M 01:32 00:18 01:14 5.17M 20 594.4M 0 0 20 120.8M 0 6.33M 01:33 00:19 01:14 5.07M 21 594.4M 0 0 21 125.8M 0 6.26M 01:34 00:20 01:14 4.92M 22 594.4M 0 0 22 130.8M 0 6.20M 01:35 00:21 01:14 4.84M 22 594.4M 0 0 22 135.2M 0 6.12M 01:37 00:22 01:15 4.82M 23 594.4M 0 0 23 139.3M 0 6.03M 01:38 00:23 01:15 4.69M 24 594.4M 0 0 24 143.8M 0 5.96M 01:39 00:24 01:15 4.59M 25 594.4M 0 0 25 148.6M 0 5.92M 01:40 00:25 01:15 4.54M 25 594.4M 0 0 25 153.6M 0 5.88M 01:41 00:26 01:15 4.53M 26 594.4M 0 0 26 158.6M 0 5.84M 01:41 00:27 01:14 4.65M 27 594.4M 0 0 27 163.7M 0 5.81M 01:42 00:28 01:14 4.83M 28 594.4M 0 0 28 168.8M 0 5.79M 01:42 00:29 01:13 4.94M 29 594.4M 0 0 29 173.8M 0 5.76M 01:43 00:30 01:13 5.00M 30 594.4M 0 0 30 179.0M 0 5.74M 01:43 00:31 01:12 5.04M 31 594.4M 0 0 31 184.4M 0 5.73M 01:43 00:32 01:11 5.11M 31 594.4M 0 0 31 190.0M 0 5.73M 01:43 00:33 01:10 5.23M 32 594.4M 0 0 32 196.0M 0 5.73M 01:43 00:34 01:09 5.42M 34 594.4M 0 0 34 202.8M 0 5.76M 01:43 00:35 01:08 5.76M 35 594.4M 0 0 35 210.4M 0 5.81M 01:42 00:36 01:06 6.25M 36 594.4M 0 0 36 219.2M 0 5.89M 01:40 00:37 01:03 6.94M 38 594.4M 0 0 38 229.5M 0 6.01M 01:38 00:38 01:00 7.87M 40 594.4M 0 0 40 238.2M 0 6.08M 01:37 00:39 00:58 8.41M 41 594.4M 0 0 41 247.3M 0 6.15M 01:36 00:40 00:56 8.88M 42 594.4M 0 0 42 255.0M 0 6.19M 01:36 00:41 00:55 8.88M 44 594.4M 0 0 44 262.5M 0 6.22M 01:35 00:42 00:53 8.62M 45 594.4M 0 0 45 270.4M 0 6.25M 01:34 00:43 00:51 8.15M 46 594.4M 0 0 46 278.5M 0 6.30M 01:34 00:44 00:50 8.03M 48 594.4M 0 0 48 286.8M 0 6.34M 01:33 00:45 00:48 7.85M 49 594.4M 0 0 49 295.0M 0 6.38M 01:33 00:46 00:47 7.98M 51 594.4M 0 0 51 303.3M 0 6.42M 01:32 00:47 00:45 8.13M 52 594.4M 0 0 52 311.5M 0 6.46M 01:31 00:48 00:43 8.21M 53 594.4M 0 0 53 319.8M 0 6.50M 01:31 00:49 00:42 8.24M 55 594.4M 0 0 55 328.3M 0 6.53M 01:30 00:50 00:40 8.28M 56 594.4M 0 0 56 337.0M 0 6.57M 01:30 00:51 00:39 8.36M 57 594.4M 0 0 57 344.6M 0 6.59M 01:30 00:52 00:38 8.22M 59 594.4M 0 0 59 351.8M 0 6.60M 01:29 00:53 00:36 7.99M 60 594.4M 0 0 60 359.6M 0 6.62M 01:29 00:54 00:35 7.90M 61 594.4M 0 0 61 366.6M 0 6.63M 01:29 00:55 00:34 7.60M 62 594.4M 0 0 62 372.9M 0 6.62M 01:29 00:56 00:33 7.13M 63 594.4M 0 0 63 379.7M 0 6.63M 01:29 00:57 00:32 6.96M 65 594.4M 0 0 65 386.6M 0 6.63M 01:29 00:58 00:31 6.92M 66 594.4M 0 0 66 393.6M 0 6.64M 01:29 00:59 00:30 6.76M 67 594.4M 0 0 67 400.7M 0 6.64M 01:29 01:00 00:29 6.79M 68 594.4M 0 0 68 407.8M 0 6.65M 01:29 01:01 00:28 6.94M 69 594.4M 0 0 69 414.9M 0 6.66M 01:29 01:02 00:27 7.02M 70 594.4M 0 0 70 422.0M 0 6.66M 01:29 01:03 00:26 7.05M 72 594.4M 0 0 72 429.1M 0 6.67M 01:29 01:04 00:25 7.08M 73 594.4M 0 0 73 436.6M 0 6.68M 01:28 01:05 00:23 7.16M 74 594.4M 0 0 74 442.8M 0 6.67M 01:28 01:06 00:22 6.98M 75 594.4M 0 0 75 449.1M 0 6.67M 01:29 01:07 00:22 6.82M 76 594.4M 0 0 76 456.0M 0 6.67M 01:29 01:08 00:21 6.79M 77 594.4M 0 0 77 463.3M 0 6.68M 01:28 01:09 00:19 6.81M 79 594.4M 0 0 79 470.8M 0 6.69M 01:28 01:10 00:18 6.81M 80 594.4M 0 0 80 478.4M 0 6.70M 01:28 01:11 00:17 7.09M 81 594.4M 0 0 81 486.1M 0 6.72M 01:28 01:12 00:16 7.37M 83 594.4M 0 0 83 493.9M 0 6.73M 01:28 01:13 00:15 7.54M 84 594.4M 0 0 84 501.6M 0 6.74M 01:28 01:14 00:14 7.60M 85 594.4M 0 0 85 509.3M 0 6.76M 01:27 01:15 00:12 7.66M 87 594.4M 0 0 87 517.2M 0 6.77M 01:27 01:16 00:11 7.71M 88 594.4M 0 0 88 525.2M 0 6.79M 01:27 01:17 00:10 7.77M 89 594.4M 0 0 89 533.6M 0 6.81M 01:27 01:18 00:09 7.90M 91 594.4M 0 0 91 542.3M 0 6.83M 01:26 01:19 00:07 8.12M 92 594.4M 0 0 92 551.8M 0 6.86M 01:26 01:20 00:06 8.47M 94 594.4M 0 0 94 562.4M 0 6.91M 01:25 01:21 00:04 9.02M 96 594.4M 0 0 96 574.1M 0 6.97M 01:25 01:22 00:03 9.77M 98 594.4M 0 0 98 587.4M 0 7.04M 01:24 01:23 00:01 10.74M* upload completely sent off: 623329770 bytes { [5 bytes data] < HTTP/1.1 200 OK < x-amz-id-2: C67vhh6w3wve30e53uMcEdDzI+NQcbGWZCmNN1XvzCXgri2snOJ9Ya8PlbqXnLh+PMTlqwBttROYm+wZiWkUfkaoxdish3TW < x-amz-request-id: M6EZ0K81RVVN04F4 < Date: Sun, 17 May 2026 02:18:31 GMT < x-amz-server-side-encryption: AES256 < ETag: "185d2d5dfca55c4bb7e18a29ae210533" < x-amz-checksum-crc64nvme: 2TzdLjTTmeA= < x-amz-checksum-type: FULL_OBJECT < Content-Length: 0 < Server: AmazonS3 < 100 594.4M 0 0 100 594.4M 0 7.07M 01:24 01:24 10.74M 100 594.4M 0 0 100 594.4M 0 7.07M 01:24 01:24 10.74M 100 594.4M 0 0 100 594.4M 0 7.07M 01:24 01:24 10.74M * Connection #0 to host s3.eu-west-1.amazonaws.com:443 left intact took: 136.01 seconds Blunders: now uploading files "/l/logs.nightly/bench-index-nightly-wikibig.trunk.nightly.Lucene104.nd5.98205M.jfr" to blunders.io... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 0* Host s3.eu-west-1.amazonaws.com:443 was resolved. * IPv6: (none) * IPv4: 3.5.64.194, 52.92.1.144, 3.5.64.244, 3.5.72.87, 3.5.66.34, 3.5.72.75, 52.92.0.120, 3.5.74.60 * Trying 3.5.64.194:443... * ALPN: curl offers h2,http/1.1 } [5 bytes data] * TLSv1.3 (OUT), TLS handshake, Client hello (1): } [1570 bytes data] * SSL Trust Anchors: * CAfile: /etc/ssl/certs/ca-certificates.crt { [5 bytes data] * TLSv1.3 (IN), TLS handshake, Server hello (2): { [1210 bytes data] * TLSv1.3 (IN), TLS change cipher, Change cipher spec (1): { [1 bytes data] * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8): { [25 bytes data] * TLSv1.3 (IN), TLS handshake, Certificate (11): { [4422 bytes data] * TLSv1.3 (IN), TLS handshake, CERT verify (15): { [264 bytes data] * TLSv1.3 (IN), TLS handshake, Finished (20): { [36 bytes data] * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1): } [1 bytes data] * TLSv1.3 (OUT), TLS handshake, Finished (20): } [36 bytes data] * SSL connection using TLSv1.3 / TLS_AES_128_GCM_SHA256 / X25519MLKEM768 / RSASSA-PSS * ALPN: server accepted http/1.1 * Server certificate: * subject: CN=*.s3-eu-west-1.amazonaws.com * start date: Sep 5 00:00:00 2025 GMT * expire date: Aug 7 23:59:59 2026 GMT * issuer: C=US; O=Amazon; CN=Amazon RSA 2048 M04 * Certificate level 0: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption * Certificate level 1: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption * Certificate level 2: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption * subjectAltName: "s3.eu-west-1.amazonaws.com" matches cert's "s3.eu-west-1.amazonaws.com" * SSL certificate verified via OpenSSL. * Established connection to s3.eu-west-1.amazonaws.com (3.5.64.194 port 443) from 10.17.4.7 port 40426 * using HTTP/1.x } [5 bytes data] > PUT /jfr-uploads.blunders.io/demo/95d08862-d1f4-4047-8336-9ffa6c825113.jfr.gz?X-Amz-Security-Token=IQoJb3JpZ2luX2VjEND%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMSJHMEUCIQDF2G%2FV8yXxN3RacyH8e4SyFn2tAAMRCUcDiq3ASVwYQQIgTAsbCl801Si%2FtTKqCy7s69L3oST9yIk1Da5WCckaP08qwwUImf%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAAGgw4MzU0OTQ3NTMxMjYiDEL%2BB3AoUth0Et5oqiqXBY2a84pIU64hKBnzRAm0CUvx7tmWfPduuNwd1R%2BfQovjj6N%2BASuZ%2BWF0aLO2neapiMbpakV3c39KwW4DGl1rX7e1utDXxrhxL9r%2F9QY2yqU3uj%2F%2F2%2BNSVhGoKKEkD1mMEUXj7KLfPi6bNGEcwB9zlIC2H0rzKMlPKmzW1BNYo7kkuOFH0ZyegQoMHE%2BZ41M19pGomSm2cj8rEM60ldfxZ4vzDG8I91L6Ot9YIGUPL16Dm0ZllAGxOqHQ4P2fx4N7zD2ty7vDbjpPNEyJkoTGUL97GoKqnQojRSZWZrn7vQ%2FQfjCmi4riF10hXYiYkv51pLve8XAqlEvgxviwjE0mdKPB%2FKT8k1No9Wf%2B6TzkeP3I6umsPGgu1ZPNeSdVM%2F7N044YgOb9yLbeocnaYKTjCD69MtIB9VaJPy414FQw5sKYBKZgQgoqgIp3mOhYXzpESAU%2FSkqwyxQlTPpJmwmIhzRigIcSzMBNAvgaADmufE2aBd1rm8mGCuveqMCNdcrzilYiREBooCq2D7WYtOYIC6dhml%2FyBVHznzolLw%2By9N3aYxKKarYLObyXGTuNTKdZZ2CkslFbkNv0%2BWoZgpr90O%2Blp68UA5pG84qwEW0Nn5oVCF6h2SkVUHw5izP%2BHncktxDVNW8jJw1Ham%2BINMvnkqEqXWbp0Tt4Oup2bHOVqFn%2BIsrWW2JNp3aeX8Otb7Zch5MsRg8IjXG0yoXP9%2FvjenGMd88%2Fu4Wy2uB2rYyxwkUohVaGQHfwGlsF8tWvhtR%2BeJSEGONMOseaoNfu%2Bs6pxALvNgIcF6vHmFnXgx831WcV1u7FrRanfo3GXEwsWj87eaG8%2Bj7yz9RvUrB3NT2g8ONMqpkZ%2BHM%2FSJlK%2Fo39yvR8OPSjMaWI7TDRjKTQBjqxAUvcRfdfUtKoRWWBgnsu5lujd3KXU7v6iZCUqe6Iq9%2F%2BF3iAxuYqGnztr1Zn4KkK827fhN1yivjQgIeddCxakT5xBBRVcTd5J8gvIJc7PUYrCoG9czhe7mx4g5JOqqB2YHFc9%2BwYlIfK%2BaTmY8WgkQJPLKdmib0cqe6IfKIvUxq6wCZMgImVUbppCohI4jTcUBNtv09cju1r5Obyjczt%2FyR7ozo1%2BObaNkoimyEHUbAtNg%3D%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20260517T021954Z&X-Amz-SignedHeaders=host&X-Amz-Credential=ASIA4FB26GNTFQNNCQZB%2F20260517%2Feu-west-1%2Fs3%2Faws4_request&X-Amz-Expires=86400&X-Amz-Signature=8b1fdbebb7f57bc006d6876c010e1dd883c29c3ddee5b4f6252ffea7195c788c HTTP/1.1 > Host: s3.eu-west-1.amazonaws.com > User-Agent: curl/8.18.0 > Accept: */* > content-type: application/octet-stream > Content-Length: 68116684 > Expect: 100-continue > { [5 bytes data] < HTTP/1.1 100 Continue < } [5 bytes data] 2 64.96M 0 0 2 1.68M 0 1.68M 00:38 00:01 00:37 1.68M 14 64.96M 0 0 14 9.43M 0 4.70M 00:13 00:02 00:11 4.70M 24 64.96M 0 0 24 16.12M 0 5.35M 00:12 00:03 00:09 5.35M 33 64.96M 0 0 33 22.06M 0 5.49M 00:11 00:04 00:07 5.49M 43 64.96M 0 0 43 28.12M 0 5.54M 00:11 00:05 00:06 5.54M 51 64.96M 0 0 51 33.31M 0 5.48M 00:11 00:06 00:05 6.23M 59 64.96M 0 0 59 38.43M 0 5.42M 00:11 00:07 00:04 5.70M 67 64.96M 0 0 67 43.68M 0 5.40M 00:12 00:08 00:04 5.42M 74 64.96M 0 0 74 48.31M 0 5.31M 00:12 00:09 00:03 5.17M 80 64.96M 0 0 80 52.50M 0 5.19M 00:12 00:10 00:02 4.84M 87 64.96M 0 0 87 56.87M 0 5.12M 00:12 00:11 00:01 4.68M 94 64.96M 0 0 94 61.43M 0 5.07M 00:12 00:12 4.57M* upload completely sent off: 68116684 bytes { [5 bytes data] < HTTP/1.1 200 OK < x-amz-id-2: kUjHvMkM1nxGdkGNuEHC3DyfXEZNPc91Kg+CVPlRkl2MEClS7TSp4dU2bu4MYPSTsbZTj+cPJFyF64ulyBP3OAIClvvcPZQG < x-amz-request-id: YKRFN6D57Y2W7N1Q < Date: Sun, 17 May 2026 02:20:01 GMT < x-amz-server-side-encryption: AES256 < ETag: "935e1cbfe38d23111c6c88ccd83101b4" < x-amz-checksum-crc64nvme: /e8L+JpixWo= < x-amz-checksum-type: FULL_OBJECT < Content-Length: 0 < Server: AmazonS3 < 100 64.96M 0 0 100 64.96M 0 4.81M 00:13 00:13 3.93M 100 64.96M 0 0 100 64.96M 0 4.81M 00:13 00:13 3.93M 100 64.96M 0 0 100 64.96M 0 4.81M 00:13 00:13 3.93M 100 64.96M 0 0 100 64.96M 0 4.81M 00:13 00:13 3.93M * Connection #0 to host s3.eu-west-1.amazonaws.com:443 left intact took: 18.97 seconds Blunders: now uploading files "/l/logs.nightly/bench-index-nightly-wikimedium.trunk.nightly.facets.taxonomy:Date.taxonomy:Month.taxonomy:DayOfYear.sortedset:Month.sortedset:DayOfYear.sortedset:Date.taxonomy:RandomLabel.sortedset:RandomLabel.Lucene90.Lucene104.dvfields.vectors=1024.nd27.625M.jfr" to blunders.io... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 0* Host s3.eu-west-1.amazonaws.com:443 was resolved. * IPv6: (none) * IPv4: 52.92.2.216, 3.5.69.1, 3.5.74.26, 3.5.72.125, 3.5.73.120, 3.5.67.219, 3.5.74.122 * Trying 52.92.2.216:443... * ALPN: curl offers h2,http/1.1 } [5 bytes data] * TLSv1.3 (OUT), TLS handshake, Client hello (1): } [1570 bytes data] * SSL Trust Anchors: * CAfile: /etc/ssl/certs/ca-certificates.crt { [5 bytes data] * TLSv1.3 (IN), TLS handshake, Server hello (2): { [1210 bytes data] * TLSv1.3 (IN), TLS change cipher, Change cipher spec (1): { [1 bytes data] * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8): { [25 bytes data] * TLSv1.3 (IN), TLS handshake, Certificate (11): { [4422 bytes data] * TLSv1.3 (IN), TLS handshake, CERT verify (15): { [264 bytes data] * TLSv1.3 (IN), TLS handshake, Finished (20): { [36 bytes data] * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1): } [1 bytes data] * TLSv1.3 (OUT), TLS handshake, Finished (20): } [36 bytes data] * SSL connection using TLSv1.3 / TLS_AES_128_GCM_SHA256 / X25519MLKEM768 / RSASSA-PSS * ALPN: server accepted http/1.1 * Server certificate: * subject: CN=*.s3-eu-west-1.amazonaws.com * start date: Sep 5 00:00:00 2025 GMT * expire date: Aug 7 23:59:59 2026 GMT * issuer: C=US; O=Amazon; CN=Amazon RSA 2048 M04 * Certificate level 0: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption * Certificate level 1: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption * Certificate level 2: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption * subjectAltName: "s3.eu-west-1.amazonaws.com" matches cert's "s3.eu-west-1.amazonaws.com" * SSL certificate verified via OpenSSL. * Established connection to s3.eu-west-1.amazonaws.com (52.92.2.216 port 443) from 10.17.4.7 port 39434 * using HTTP/1.x } [5 bytes data] > PUT /jfr-uploads.blunders.io/demo/ee7950cf-7e26-4735-90d3-cfa25352e2f3.jfr.gz?X-Amz-Security-Token=IQoJb3JpZ2luX2VjEND%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMSJHMEUCIQDF2G%2FV8yXxN3RacyH8e4SyFn2tAAMRCUcDiq3ASVwYQQIgTAsbCl801Si%2FtTKqCy7s69L3oST9yIk1Da5WCckaP08qwwUImf%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAAGgw4MzU0OTQ3NTMxMjYiDEL%2BB3AoUth0Et5oqiqXBY2a84pIU64hKBnzRAm0CUvx7tmWfPduuNwd1R%2BfQovjj6N%2BASuZ%2BWF0aLO2neapiMbpakV3c39KwW4DGl1rX7e1utDXxrhxL9r%2F9QY2yqU3uj%2F%2F2%2BNSVhGoKKEkD1mMEUXj7KLfPi6bNGEcwB9zlIC2H0rzKMlPKmzW1BNYo7kkuOFH0ZyegQoMHE%2BZ41M19pGomSm2cj8rEM60ldfxZ4vzDG8I91L6Ot9YIGUPL16Dm0ZllAGxOqHQ4P2fx4N7zD2ty7vDbjpPNEyJkoTGUL97GoKqnQojRSZWZrn7vQ%2FQfjCmi4riF10hXYiYkv51pLve8XAqlEvgxviwjE0mdKPB%2FKT8k1No9Wf%2B6TzkeP3I6umsPGgu1ZPNeSdVM%2F7N044YgOb9yLbeocnaYKTjCD69MtIB9VaJPy414FQw5sKYBKZgQgoqgIp3mOhYXzpESAU%2FSkqwyxQlTPpJmwmIhzRigIcSzMBNAvgaADmufE2aBd1rm8mGCuveqMCNdcrzilYiREBooCq2D7WYtOYIC6dhml%2FyBVHznzolLw%2By9N3aYxKKarYLObyXGTuNTKdZZ2CkslFbkNv0%2BWoZgpr90O%2Blp68UA5pG84qwEW0Nn5oVCF6h2SkVUHw5izP%2BHncktxDVNW8jJw1Ham%2BINMvnkqEqXWbp0Tt4Oup2bHOVqFn%2BIsrWW2JNp3aeX8Otb7Zch5MsRg8IjXG0yoXP9%2FvjenGMd88%2Fu4Wy2uB2rYyxwkUohVaGQHfwGlsF8tWvhtR%2BeJSEGONMOseaoNfu%2Bs6pxALvNgIcF6vHmFnXgx831WcV1u7FrRanfo3GXEwsWj87eaG8%2Bj7yz9RvUrB3NT2g8ONMqpkZ%2BHM%2FSJlK%2Fo39yvR8OPSjMaWI7TDRjKTQBjqxAUvcRfdfUtKoRWWBgnsu5lujd3KXU7v6iZCUqe6Iq9%2F%2BF3iAxuYqGnztr1Zn4KkK827fhN1yivjQgIeddCxakT5xBBRVcTd5J8gvIJc7PUYrCoG9czhe7mx4g5JOqqB2YHFc9%2BwYlIfK%2BaTmY8WgkQJPLKdmib0cqe6IfKIvUxq6wCZMgImVUbppCohI4jTcUBNtv09cju1r5Obyjczt%2FyR7ozo1%2BObaNkoimyEHUbAtNg%3D%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20260517T022013Z&X-Amz-SignedHeaders=host&X-Amz-Credential=ASIA4FB26GNTFQNNCQZB%2F20260517%2Feu-west-1%2Fs3%2Faws4_request&X-Amz-Expires=86400&X-Amz-Signature=2dd75a66371ab37d35860f48724e9d9d11aadde90e77c6d0acb126227ab16e4c HTTP/1.1 > Host: s3.eu-west-1.amazonaws.com > User-Agent: curl/8.18.0 > Accept: */* > content-type: application/octet-stream > Content-Length: 587198893 > Expect: 100-continue > { [5 bytes data] < HTTP/1.1 100 Continue < } [5 bytes data] 0 559.9M 0 0 0 1.06M 0 0.98M 09:30 00:01 09:29 0.98M 0 559.9M 0 0 0 1.50M 0 666.5k 14:20 00:02 14:18 666.3k 0 559.9M 0 0 0 1.75M 0 498.8k 19:09 00:03 19:06 498.7k 0 559.9M 0 0 0 1.93M 0 425.7k 22:26 00:04 22:22 425.6k 0 559.9M 0 0 0 2.12M 0 362.4k 26:22 00:06 26:16 362.4k 0 559.9M 0 0 0 2.25M 0 322.9k 29:35 00:07 29:28 200.9k 0 559.9M 0 0 0 2.37M 0 294.4k 32:27 00:08 32:19 150.4k 0 559.9M 0 0 0 2.56M 0 276.2k 34:35 00:09 34:26 140.8k 0 559.9M 0 0 0 2.81M 0 269.1k 35:30 00:10 35:20 148.3k 0 559.9M 0 0 0 3.06M 0 261.3k 36:34 00:11 36:23 160.1k 0 559.9M 0 0 0 3.25M 0 255.4k 37:24 00:13 37:11 173.7k 0 559.9M 0 0 0 3.43M 0 246.8k 38:43 00:14 38:29 181.3k 0 559.9M 0 0 0 3.62M 0 242.9k 39:19 00:15 39:04 188.2k 0 559.9M 0 0 0 3.81M 0 233.3k 40:57 00:16 40:41 169.8k 0 559.9M 0 0 0 4.00M 0 226.1k 42:16 00:18 41:58 156.9k 0 559.9M 0 0 0 4.12M 0 216.7k 44:05 00:19 43:46 138.6k 0 559.9M 0 0 0 4.25M 0 209.2k 45:40 00:20 45:20 127.2k 0 559.9M 0 0 0 4.43M 0 205.6k 46:28 00:22 46:06 122.0k 0 559.9M 0 0 0 4.68M 0 205.1k 46:35 00:23 46:12 134.3k 0 559.9M 0 0 0 4.87M 0 202.0k 47:18 00:24 46:54 135.9k 0 559.9M 0 0 0 5.06M 0 198.6k 48:07 00:26 47:41 145.1k 0 559.9M 0 0 0 5.25M 0 197.7k 48:20 00:27 47:53 160.2k 0 559.9M 0 0 0 5.43M 0 195.2k 48:57 00:28 48:29 159.4k 0 559.9M 0 0 0 5.56M 0 192.1k 49:44 00:29 49:15 143.4k 1 559.9M 0 0 1 5.75M 0 190.8k 50:05 00:30 49:35 145.6k 1 559.9M 0 0 1 5.87M 0 186.6k 51:11 00:32 50:39 135.9k 1 559.9M 0 0 1 6.06M 0 184.3k 51:49 00:33 51:16 128.3k 1 559.9M 0 0 1 6.25M 0 180.4k 52:58 00:35 52:23 119.5k 1 559.9M 0 0 1 6.37M 0 174.9k 54:37 00:37 54:00 108.5k 1 559.9M 0 0 1 6.43M 0 172.0k 55:32 00:38 54:54 96751 1 559.9M 0 0 1 6.56M 0 168.6k 56:40 00:39 56:01 94457 1 559.9M 0 0 1 6.75M 0 167.7k 56:58 00:41 56:17 95672 1 559.9M 0 0 1 7.00M 0 168.8k 56:37 00:42 55:55 109.9k 1 559.9M 0 0 1 7.18M 0 168.4k 56:43 00:43 56:00 130.5k 1 559.9M 0 0 1 7.37M 0 168.8k 56:35 00:44 55:51 149.7k 1 559.9M 0 0 1 7.56M 0 169.0k 56:32 00:45 55:47 171.9k 1 559.9M 0 0 1 7.75M 0 168.0k 56:53 00:47 56:06 169.7k 1 559.9M 0 0 1 7.93M 0 167.5k 57:01 00:48 56:13 158.9k 1 559.9M 0 0 1 8.12M 0 166.7k 57:18 00:49 56:29 154.5k 1 559.9M 0 0 1 8.31M 0 167.1k 57:10 00:50 56:20 154.8k 1 559.9M 0 0 1 8.43M 0 165.6k 57:41 00:52 56:49 141.3k 1 559.9M 0 0 1 8.56M 0 162.5k 58:47 00:53 57:54 124.2k 1 559.9M 0 0 1 8.68M 0 161.1k 59:17 00:55 58:22 114.7k 1 559.9M 0 0 1 8.87M 0 160.4k 59:33 00:56 58:37 114.1k 1 559.9M 0 0 1 9.06M 0 160.5k 59:32 00:57 58:35 111.4k 1 559.9M 0 0 1 9.25M 0 160.5k 59:30 00:58 58:32 121.7k 1 559.9M 0 0 1 9.43M 0 160.0k 59:42 01:00 58:42 139.1k 1 559.9M 0 0 1 9.62M 0 160.4k 59:33 01:01 58:32 154.3k 1 559.9M 0 0 1 9.87M 0 161.1k 59:18 01:02 58:16 167.1k 1 559.9M 0 0 1 10.12M 0 162.0k 58:59 01:03 57:56 175.8k 1 559.9M 0 0 1 10.31M 0 162.1k 58:57 01:05 57:52 176.7k 1 559.9M 0 0 1 10.50M 0 161.4k 59:11 01:06 58:05 174.8k 1 559.9M 0 0 1 10.68M 0 160.9k 59:23 01:08 58:15 165.1k 1 559.9M 0 0 1 10.87M 0 160.4k 59:33 01:09 58:24 154.3k 1 559.9M 0 0 1 11.06M 0 160.4k 59:34 01:10 58:24 145.2k 2 559.9M 0 0 2 11.31M 0 160.8k 59:23 01:11 58:12 149.4k 2 559.9M 0 0 2 11.43M 0 160.1k 59:40 01:13 58:27 147.1k 2 559.9M 0 0 2 11.56M 0 159.6k 59:51 01:14 58:37 145.5k 2 559.9M 0 0 2 11.75M 0 159.0k 1:00:05 01:15 58:50 142.9k 2 559.9M 0 0 2 11.93M 0 159.1k 1:00:03 01:16 58:47 144.0k 2 559.9M 0 0 2 12.18M 0 159.8k 59:46 01:18 58:28 148.0k 2 559.9M 0 0 2 12.43M 0 160.6k 59:29 01:19 58:10 165.9k 2 559.9M 0 0 2 12.62M 0 160.5k 59:30 01:20 58:10 171.5k 2 559.9M 0 0 2 12.81M 0 160.2k 59:37 01:21 58:16 175.7k 2 559.9M 0 0 2 13.06M 0 160.9k 59:22 01:23 57:59 183.6k 2 559.9M 0 0 2 13.31M 0 161.4k 59:11 01:24 57:47 180.7k 2 559.9M 0 0 2 13.43M 0 160.8k 59:24 01:25 57:59 164.2k 2 559.9M 0 0 2 13.62M 0 160.7k 59:26 01:26 58:00 163.0k 2 559.9M 0 0 2 13.81M 0 160.6k 59:28 01:28 58:00 165.6k 2 559.9M 0 0 2 14.06M 0 161.6k 59:06 01:29 57:37 171.6k 2 559.9M 0 0 2 14.31M 0 162.5k 58:48 01:30 57:18 177.5k 2 559.9M 0 0 2 14.56M 0 162.9k 58:39 01:31 57:08 192.1k 2 559.9M 0 0 2 14.75M 0 162.8k 58:40 01:32 57:08 193.8k 2 559.9M 0 0 2 14.93M 0 162.9k 58:39 01:33 57:06 196.8k 2 559.9M 0 0 2 15.06M 0 162.2k 58:53 01:35 57:18 171.2k 2 559.9M 0 0 2 15.25M 0 162.1k 58:55 01:36 57:19 157.4k 2 559.9M 0 0 2 15.43M 0 161.9k 59:00 01:37 57:23 147.3k 2 559.9M 0 0 2 15.68M 0 162.6k 58:44 01:38 57:06 159.6k 2 559.9M 0 0 2 15.93M 0 163.5k 58:26 01:39 56:47 173.0k 2 559.9M 0 0 2 16.18M 0 163.4k 58:28 01:41 56:47 180.3k 2 559.9M 0 0 2 16.31M 0 162.8k 58:40 01:42 56:58 173.5k 2 559.9M 0 0 2 16.50M 0 162.4k 58:50 01:44 57:06 169.2k 2 559.9M 0 0 2 16.68M 0 162.3k 58:52 01:45 57:07 157.1k 3 559.9M 0 0 3 16.87M 0 162.2k 58:53 01:46 57:07 143.8k 3 559.9M 0 0 3 17.06M 0 161.9k 58:59 01:47 57:12 139.4k 3 559.9M 0 0 3 17.25M 0 161.5k 59:09 01:49 57:20 141.4k 3 559.9M 0 0 3 17.37M 0 161.2k 59:17 01:50 57:27 141.3k 3 559.9M 0 0 3 17.56M 0 161.4k 59:12 01:51 57:21 145.7k 3 559.9M 0 0 3 17.81M 0 162.1k 58:55 01:52 57:03 160.4k 3 559.9M 0 0 3 18.06M 0 162.7k 58:43 01:53 56:50 176.6k 3 559.9M 0 0 3 18.25M 0 162.8k 58:41 01:54 56:47 189.0k 3 559.9M 0 0 3 18.43M 0 162.7k 58:42 01:55 56:47 193.6k 3 559.9M 0 0 3 18.68M 0 163.3k 58:29 01:57 56:32 201.7k 3 559.9M 0 0 3 18.93M 0 163.6k 58:24 01:58 56:26 190.4k 3 559.9M 0 0 3 19.12M 0 163.6k 58:24 01:59 56:25 180.7k 3 559.9M 0 0 3 19.25M 0 163.1k 58:33 02:00 56:33 169.6k 3 559.9M 0 0 3 19.37M 0 162.8k 58:40 02:01 56:39 165.3k 3 559.9M 0 0 3 19.50M 0 161.7k 59:05 02:03 57:02 131.1k 3 559.9M 0 0 3 19.62M 0 161.3k 59:13 02:04 57:09 116.5k 3 559.9M 0 0 3 19.75M 0 160.8k 59:24 02:05 57:19 106.0k 3 559.9M 0 0 3 19.87M 0 160.5k 59:31 02:06 57:25 107.4k 3 559.9M 0 0 3 20.06M 0 160.4k 59:32 02:08 57:24 113.4k 3 559.9M 0 0 3 20.25M 0 160.5k 59:30 02:09 57:21 135.4k 3 559.9M 0 0 3 20.43M 0 160.6k 59:29 02:10 57:19 145.6k 3 559.9M 0 0 3 20.62M 0 160.8k 59:25 02:11 57:14 159.7k 3 559.9M 0 0 3 20.87M 0 161.2k 59:16 02:12 57:04 175.9k 3 559.9M 0 0 3 21.25M 0 162.6k 58:44 02:13 56:31 211.3k 3 559.9M 0 0 3 21.56M 0 163.8k 58:20 02:14 56:06 237.7k 3 559.9M 0 0 3 21.81M 0 164.4k 58:06 02:15 55:51 253.4k 3 559.9M 0 0 3 22.06M 0 164.8k 57:57 02:17 55:40 257.9k 3 559.9M 0 0 3 22.18M 0 164.4k 58:06 02:18 55:48 240.5k 3 559.9M 0 0 3 22.37M 0 164.3k 58:09 02:19 55:50 202.9k 4 559.9M 0 0 4 22.50M 0 163.8k 58:19 02:20 55:59 164.9k 4 559.9M 0 0 4 22.62M 0 163.5k 58:25 02:21 56:04 143.1k 4 559.9M 0 0 4 22.81M 0 163.3k 58:30 02:22 56:08 128.5k 4 559.9M 0 0 4 23.06M 0 163.7k 58:21 02:24 55:57 148.1k 4 559.9M 0 0 4 23.31M 0 164.2k 58:12 02:25 55:47 161.4k 4 559.9M 0 0 4 23.50M 0 164.1k 58:12 02:26 55:46 171.5k 4 559.9M 0 0 4 23.62M 0 163.7k 58:22 02:27 55:55 167.0k 4 559.9M 0 0 4 23.75M 0 163.2k 58:33 02:29 56:04 159.6k 4 559.9M 0 0 4 23.93M 0 163.0k 58:36 02:30 56:06 146.6k 4 559.9M 0 0 4 24.18M 0 163.4k 58:28 02:31 55:57 145.8k 4 559.9M 0 0 4 24.50M 0 164.3k 58:09 02:32 55:37 168.2k 4 559.9M 0 0 4 24.68M 0 164.2k 58:12 02:33 55:39 175.7k 4 559.9M 0 0 4 24.81M 0 163.9k 58:17 02:34 55:43 182.0k 4 559.9M 0 0 4 25.00M 0 163.8k 58:20 02:36 55:44 182.0k 4 559.9M 0 0 4 25.18M 0 163.7k 58:21 02:37 55:44 171.2k 4 559.9M 0 0 4 25.37M 0 163.9k 58:18 02:38 55:40 152.9k 4 559.9M 0 0 4 25.56M 0 163.9k 58:17 02:39 55:38 157.5k 4 559.9M 0 0 4 25.81M 0 164.5k 58:05 02:40 55:25 180.0k 4 559.9M 0 0 4 26.06M 0 164.9k 57:56 02:41 55:15 197.2k 4 559.9M 0 0 4 26.25M 0 165.0k 57:53 02:42 55:11 204.8k 4 559.9M 0 0 4 26.43M 0 165.0k 57:54 02:44 55:10 196.2k 4 559.9M 0 0 4 26.56M 0 164.7k 57:59 02:45 55:14 188.5k 4 559.9M 0 0 4 26.68M 0 164.0k 58:15 02:46 55:29 151.0k 4 559.9M 0 0 4 26.81M 0 163.7k 58:21 02:47 55:34 131.6k 4 559.9M 0 0 4 27.00M 0 163.8k 58:19 02:48 55:31 129.5k 4 559.9M 0 0 4 27.18M 0 163.8k 58:19 02:49 55:30 131.0k 4 559.9M 0 0 4 27.31M 0 163.3k 58:30 02:51 55:39 124.4k 4 559.9M 0 0 4 27.43M 0 162.9k 58:39 02:52 55:47 131.4k 4 559.9M 0 0 4 27.56M 0 162.7k 58:44 02:53 55:51 132.0k 4 559.9M 0 0 4 27.75M 0 162.1k 58:57 02:55 56:02 117.2k 4 559.9M 0 0 4 27.87M 0 161.4k 59:11 02:56 56:15 102.0k 5 559.9M 0 0 5 28.00M 0 161.0k 59:20 02:58 56:22 103.6k 5 559.9M 0 0 5 28.06M 0 160.5k 59:32 02:59 56:33 99538 5 559.9M 0 0 5 28.18M 0 160.0k 59:42 03:00 56:42 95645 5 559.9M 0 0 5 28.37M 0 159.8k 59:47 03:01 56:46 98.46k 5 559.9M 0 0 5 28.56M 0 159.8k 59:48 03:03 56:45 113.4k 5 559.9M 0 0 5 28.75M 0 159.5k 59:53 03:04 56:49 119.2k 5 559.9M 0 0 5 28.93M 0 159.4k 59:56 03:05 56:51 131.2k 5 559.9M 0 0 5 29.06M 0 159.1k 1:00:02 03:06 56:56 135.0k 5 559.9M 0 0 5 29.18M 0 158.9k 1:00:07 03:08 56:59 133.6k 5 559.9M 0 0 5 29.37M 0 158.6k 1:00:13 03:09 57:04 126.8k 5 559.9M 0 0 5 29.56M 0 158.4k 1:00:19 03:11 57:08 125.6k 5 559.9M 0 0 5 29.75M 0 158.2k 1:00:23 03:12 57:11 125.6k 5 559.9M 0 0 5 29.93M 0 157.9k 1:00:29 03:14 57:15 125.9k 5 559.9M 0 0 5 30.06M 0 157.5k 1:00:40 03:15 57:25 120.9k 5 559.9M 0 0 5 30.18M 0 157.2k 1:00:46 03:16 57:30 119.1k 5 559.9M 0 0 5 30.31M 0 157.0k 1:00:51 03:17 57:34 117.4k 5 559.9M 0 0 5 30.43M 0 156.8k 1:00:56 03:18 57:38 111.9k 5 559.9M 0 0 5 30.56M 0 156.4k 1:01:04 03:19 57:45 108.0k 5 559.9M 0 0 5 30.68M 0 155.9k 1:01:16 03:21 57:55 106.0k 5 559.9M 0 0 5 30.81M 0 155.5k 1:01:26 03:22 58:04 101.7k 5 559.9M 0 0 5 30.93M 0 155.2k 1:01:34 03:24 58:10 98.61k 5 559.9M 0 0 5 31.12M 0 155.1k 1:01:35 03:25 58:10 105.9k 5 559.9M 0 0 5 31.31M 0 155.2k 1:01:32 03:26 58:06 117.8k 5 559.9M 0 0 5 31.50M 0 155.3k 1:01:30 03:27 58:03 135.0k 5 559.9M 0 0 5 31.68M 0 155.3k 1:01:30 03:28 58:02 149.1k 5 559.9M 0 0 5 31.87M 0 155.0k 1:01:39 03:30 58:09 148.7k 5 559.9M 0 0 5 32.00M 0 154.7k 1:01:44 03:31 58:13 142.2k 5 559.9M 0 0 5 32.18M 0 154.7k 1:01:45 03:33 58:12 137.5k 5 559.9M 0 0 5 32.43M 0 155.0k 1:01:37 03:34 58:03 145.9k 5 559.9M 0 0 5 32.62M 0 154.8k 1:01:43 03:35 58:08 138.9k 5 559.9M 0 0 5 32.75M 0 154.4k 1:01:53 03:37 58:16 136.2k 5 559.9M 0 0 5 32.87M 0 154.2k 1:01:57 03:38 58:19 136.9k 5 559.9M 0 0 5 33.12M 0 154.5k 1:01:50 03:39 58:11 147.8k 5 559.9M 0 0 5 33.37M 0 154.9k 1:01:41 03:40 58:01 149.4k 6 559.9M 0 0 6 33.62M 0 155.2k 1:01:34 03:41 57:53 168.8k 6 559.9M 0 0 6 33.87M 0 155.5k 1:01:27 03:43 57:44 195.7k 6 559.9M 0 0 6 34.12M 0 155.8k 1:01:18 03:44 57:34 216.2k 6 559.9M 0 0 6 34.25M 0 155.7k 1:01:21 03:45 57:36 202.7k 6 559.9M 0 0 6 34.37M 0 155.6k 1:01:25 03:46 57:39 183.1k 6 559.9M 0 0 6 34.56M 0 155.6k 1:01:24 03:47 57:37 171.7k 6 559.9M 0 0 6 34.75M 0 155.6k 1:01:23 03:48 57:35 161.4k 6 559.9M 0 0 6 34.93M 0 155.7k 1:01:22 03:49 57:33 149.0k 6 559.9M 0 0 6 35.06M 0 155.3k 1:01:31 03:51 57:40 139.6k 6 559.9M 0 0 6 35.25M 0 155.3k 1:01:31 03:52 57:39 145.9k 6 559.9M 0 0 6 35.37M 0 155.1k 1:01:36 03:53 57:43 137.2k 6 559.9M 0 0 6 35.50M 0 154.6k 1:01:47 03:55 57:52 119.2k 6 559.9M 0 0 6 35.62M 0 154.5k 1:01:50 03:56 57:54 111.4k 6 559.9M 0 0 6 35.75M 0 154.3k 1:01:55 03:57 57:58 116.2k 6 559.9M 0 0 6 35.93M 0 154.3k 1:01:54 03:58 57:56 116.2k 6 559.9M 0 0 6 36.12M 0 154.4k 1:01:53 03:59 57:54 126.8k 6 559.9M 0 0 6 36.31M 0 154.4k 1:01:52 04:00 57:52 145.3k 6 559.9M 0 0 6 36.50M 0 154.5k 1:01:50 04:01 57:49 155.4k 6 559.9M 0 0 6 36.62M 0 154.3k 1:01:54 04:02 57:52 156.0k 6 559.9M 0 0 6 36.81M 0 154.2k 1:01:57 04:04 57:53 149.4k 6 559.9M 0 0 6 36.93M 0 154.0k 1:02:01 04:05 57:56 140.5k 6 559.9M 0 0 6 37.12M 0 154.1k 1:02:00 04:06 57:54 140.5k 6 559.9M 0 0 6 37.37M 0 154.3k 1:01:55 04:07 57:48 146.0k 6 559.9M 0 0 6 37.56M 0 154.4k 1:01:53 04:09 57:44 155.6k 6 559.9M 0 0 6 37.68M 0 154.2k 1:01:58 04:10 57:48 153.7k 6 559.9M 0 0 6 37.87M 0 154.0k 1:02:03 04:11 57:52 150.5k 6 559.9M 0 0 6 38.00M 0 153.9k 1:02:06 04:12 57:54 145.2k 6 559.9M 0 0 6 38.18M 0 153.9k 1:02:04 04:13 57:51 137.9k 6 559.9M 0 0 6 38.43M 0 154.1k 1:02:00 04:15 57:45 143.7k 6 559.9M 0 0 6 38.56M 0 153.8k 1:02:07 04:16 57:51 138.1k 6 559.9M 0 0 6 38.75M 0 153.7k 1:02:09 04:18 57:51 143.7k 6 559.9M 0 0 6 38.93M 0 153.7k 1:02:09 04:19 57:50 148.0k 6 559.9M 0 0 6 39.12M 0 153.7k 1:02:10 04:20 57:50 145.1k 7 559.9M 0 0 7 39.25M 0 153.3k 1:02:19 04:22 57:57 123.0k 7 559.9M 0 0 7 39.37M 0 153.2k 1:02:22 04:23 57:59 129.4k 7 559.9M 0 0 7 39.56M 0 153.1k 1:02:24 04:24 58:00 128.6k 7 559.9M 0 0 7 39.75M 0 153.1k 1:02:23 04:25 57:58 129.5k 7 559.9M 0 0 7 39.87M 0 153.0k 1:02:26 04:26 58:00 125.1k 7 559.9M 0 0 7 40.06M 0 153.0k 1:02:27 04:28 57:59 139.2k 7 559.9M 0 0 7 40.18M 0 152.8k 1:02:30 04:29 58:01 138.2k 7 559.9M 0 0 7 40.31M 0 152.6k 1:02:37 04:30 58:07 129.5k 7 559.9M 0 0 7 40.50M 0 152.5k 1:02:39 04:31 58:08 124.9k 7 559.9M 0 0 7 40.68M 0 152.4k 1:02:41 04:33 58:08 127.2k 7 559.9M 0 0 7 40.87M 0 152.2k 1:02:45 04:34 58:11 122.8k 7 559.9M 0 0 7 41.06M 0 152.2k 1:02:46 04:36 58:10 128.2k 7 559.9M 0 0 7 41.25M 0 152.3k 1:02:44 04:37 58:07 140.5k 7 559.9M 0 0 7 41.37M 0 152.1k 1:02:49 04:38 58:11 135.8k 7 559.9M 0 0 7 41.50M 0 152.0k 1:02:51 04:39 58:12 133.3k 7 559.9M 0 0 7 41.68M 0 151.9k 1:02:52 04:40 58:12 138.5k 7 559.9M 0 0 7 41.93M 0 152.1k 1:02:48 04:42 58:06 147.4k 7 559.9M 0 0 7 42.12M 0 152.0k 1:02:50 04:43 58:07 141.4k 7 559.9M 0 0 7 42.31M 0 152.0k 1:02:51 04:44 58:07 148.8k 7 559.9M 0 0 7 42.50M 0 152.1k 1:02:49 04:46 58:03 156.7k 7 559.9M 0 0 7 42.68M 0 152.2k 1:02:46 04:47 57:59 163.6k 7 559.9M 0 0 7 42.87M 0 152.3k 1:02:43 04:48 57:55 162.1k 7 559.9M 0 0 7 43.06M 0 152.1k 1:02:48 04:49 57:59 156.5k 7 559.9M 0 0 7 43.18M 0 151.9k 1:02:54 04:51 58:03 144.6k 7 559.9M 0 0 7 43.31M 0 151.7k 1:02:59 04:52 58:07 132.7k 7 559.9M 0 0 7 43.50M 0 151.6k 1:03:01 04:53 58:08 125.9k 7 559.9M 0 0 7 43.68M 0 151.5k 1:03:04 04:55 58:09 117.0k 7 559.9M 0 0 7 43.87M 0 151.5k 1:03:03 04:56 58:07 125.1k 7 559.9M 0 0 7 44.06M 0 151.5k 1:03:03 04:57 58:06 137.0k 7 559.9M 0 0 7 44.25M 0 151.4k 1:03:06 04:59 58:07 140.3k 7 559.9M 0 0 7 44.37M 0 151.1k 1:03:13 05:00 58:13 129.4k 7 559.9M 0 0 7 44.56M 0 151.1k 1:03:14 05:01 58:13 134.5k 7 559.9M 0 0 7 44.75M 0 151.1k 1:03:14 05:03 58:11 131.7k 8 559.9M 0 0 8 44.93M 0 151.1k 1:03:14 05:04 58:10 130.9k 8 559.9M 0 0 8 45.12M 0 151.2k 1:03:12 05:05 58:07 139.8k 8 559.9M 0 0 8 45.37M 0 151.4k 1:03:06 05:06 58:00 166.7k 8 559.9M 0 0 8 45.56M 0 151.4k 1:03:05 05:07 57:58 168.6k 8 559.9M 0 0 8 45.81M 0 151.6k 1:03:00 05:09 57:51 178.2k 8 559.9M 0 0 8 46.00M 0 151.6k 1:03:01 05:10 57:51 178.4k 8 559.9M 0 0 8 46.12M 0 151.5k 1:03:03 05:11 57:52 168.8k 8 559.9M 0 0 8 46.31M 0 151.5k 1:03:03 05:12 57:51 156.9k 8 559.9M 0 0 8 46.62M 0 151.9k 1:02:53 05:14 57:39 175.3k 8 559.9M 0 0 8 46.87M 0 152.1k 1:02:48 05:15 57:33 176.1k 8 559.9M 0 0 8 47.12M 0 152.3k 1:02:44 05:16 57:28 186.4k 8 559.9M 0 0 8 47.31M 0 152.3k 1:02:42 05:17 57:25 189.1k 8 559.9M 0 0 8 47.31M 0 152.3k 1:02:42 05:17 57:25 152.3k 8 559.9M 0 0 8 47.50M 0 152.4k 1:02:41 05:19 57:22 169.1k 8 559.9M 0 0 8 47.62M 0 152.3k 1:02:43 05:20 57:23 147.1k 8 559.9M 0 0 8 47.75M 0 152.2k 1:02:46 05:21 57:25 135.9k 8 559.9M 0 0 8 47.93M 0 152.1k 1:02:49 05:22 57:27 133.5k 8 559.9M 0 0 8 48.12M 0 152.0k 1:02:50 05:24 57:26 135.7k 8 559.9M 0 0 8 48.31M 0 152.0k 1:02:51 05:25 57:26 131.4k 8 559.9M 0 0 8 48.50M 0 152.0k 1:02:51 05:26 57:25 135.9k 8 559.9M 0 0 8 48.68M 0 151.9k 1:02:53 05:28 57:25 139.3k 8 559.9M 0 0 8 48.87M 0 152.0k 1:02:51 05:29 57:22 149.2k 8 559.9M 0 0 8 49.12M 0 152.2k 1:02:46 05:30 57:16 159.6k 8 559.9M 0 0 8 49.31M 0 152.2k 1:02:46 05:31 57:15 162.1k 8 559.9M 0 0 8 49.43M 0 152.1k 1:02:49 05:32 57:17 156.4k 8 559.9M 0 0 8 49.56M 0 151.9k 1:02:53 05:34 57:19 151.4k 8 559.9M 0 0 8 49.68M 0 151.6k 1:03:01 05:35 57:26 130.9k 8 559.9M 0 0 8 49.87M 0 151.5k 1:03:03 05:36 57:27 117.9k 8 559.9M 0 0 8 50.06M 0 151.6k 1:03:02 05:38 57:24 119.1k 8 559.9M 0 0 8 50.25M 0 151.6k 1:03:01 05:39 57:22 127.7k 9 559.9M 0 0 9 50.43M 0 151.6k 1:03:01 05:40 57:21 136.9k 9 559.9M 0 0 9 50.62M 0 151.6k 1:03:01 05:41 57:20 150.1k 9 559.9M 0 0 9 50.75M 0 151.4k 1:03:06 05:43 57:23 145.6k 9 559.9M 0 0 9 50.87M 0 151.2k 1:03:11 05:44 57:27 131.0k 9 559.9M 0 0 9 51.06M 0 151.2k 1:03:10 05:45 57:25 131.3k 9 559.9M 0 0 9 51.25M 0 151.3k 1:03:08 05:46 57:22 135.1k 9 559.9M 0 0 9 51.37M 0 151.2k 1:03:11 05:47 57:24 128.9k 9 559.9M 0 0 9 51.50M 0 151.1k 1:03:14 05:48 57:26 131.6k 9 559.9M 0 0 9 51.68M 0 151.0k 1:03:16 05:50 57:26 140.2k 9 559.9M 0 0 9 51.81M 0 150.8k 1:03:21 05:51 57:30 127.2k 9 559.9M 0 0 9 52.00M 0 150.9k 1:03:18 05:52 57:26 127.6k 9 559.9M 0 0 9 52.25M 0 151.2k 1:03:12 05:53 57:19 148.7k 9 559.9M 0 0 9 52.43M 0 151.2k 1:03:10 05:54 57:16 159.2k 9 559.9M 0 0 9 52.56M 0 151.1k 1:03:13 05:56 57:17 159.6k 9 559.9M 0 0 9 52.68M 0 151.0k 1:03:17 05:57 57:20 161.2k 9 559.9M 0 0 9 52.81M 0 150.9k 1:03:19 05:58 57:21 148.0k 9 559.9M 0 0 9 53.00M 0 151.0k 1:03:17 05:59 57:18 138.9k 9 559.9M 0 0 9 53.12M 0 150.8k 1:03:20 06:00 57:20 126.5k 9 559.9M 0 0 9 53.31M 0 150.9k 1:03:18 06:01 57:17 138.1k 9 559.9M 0 0 9 53.50M 0 151.0k 1:03:15 06:02 57:13 153.9k 9 559.9M 0 0 9 53.68M 0 151.1k 1:03:13 06:03 57:10 166.2k 9 559.9M 0 0 9 53.87M 0 151.0k 1:03:15 06:05 57:10 155.5k 9 559.9M 0 0 9 54.06M 0 151.1k 1:03:13 06:06 57:07 168.8k 9 559.9M 0 0 9 54.25M 0 150.9k 1:03:20 06:08 57:12 146.6k 9 559.9M 0 0 9 54.37M 0 150.6k 1:03:25 06:09 57:16 130.1k 9 559.9M 0 0 9 54.50M 0 150.5k 1:03:27 06:10 57:17 121.5k 9 559.9M 0 0 9 54.62M 0 150.5k 1:03:29 06:11 57:18 119.0k 9 559.9M 0 0 9 54.81M 0 150.6k 1:03:27 06:12 57:15 119.4k 9 559.9M 0 0 9 55.00M 0 150.6k 1:03:27 06:13 57:14 131.9k 9 559.9M 0 0 9 55.18M 0 150.6k 1:03:26 06:15 57:11 150.0k 9 559.9M 0 0 9 55.43M 0 150.8k 1:03:21 06:16 57:05 166.6k 9 559.9M 0 0 9 55.62M 0 150.9k 1:03:18 06:17 57:01 177.7k 9 559.9M 0 0 9 55.81M 0 151.0k 1:03:17 06:18 56:59 177.2k 10 559.9M 0 0 10 56.00M 0 151.0k 1:03:16 06:19 56:57 179.3k 10 559.9M 0 0 10 56.12M 0 150.9k 1:03:19 06:20 56:59 167.2k 10 559.9M 0 0 10 56.25M 0 150.8k 1:03:22 06:21 57:01 148.8k 10 559.9M 0 0 10 56.37M 0 150.5k 1:03:28 06:23 57:05 127.1k 10 559.9M 0 0 10 56.50M 0 150.4k 1:03:30 06:24 57:06 117.4k 10 559.9M 0 0 10 56.62M 0 150.4k 1:03:32 06:25 57:07 110.2k 10 559.9M 0 0 10 56.81M 0 150.4k 1:03:31 06:26 57:05 120.2k 10 559.9M 0 0 10 57.00M 0 150.4k 1:03:32 06:28 57:04 124.7k 10 559.9M 0 0 10 57.18M 0 150.4k 1:03:31 06:29 57:02 142.5k 10 559.9M 0 0 10 57.43M 0 150.6k 1:03:25 06:30 56:55 162.0k 10 559.9M 0 0 10 57.68M 0 150.9k 1:03:19 06:31 56:48 184.6k 10 559.9M 0 0 10 57.93M 0 151.1k 1:03:13 06:32 56:41 200.0k 10 559.9M 0 0 10 58.12M 0 151.1k 1:03:15 06:33 56:42 197.8k 10 559.9M 0 0 10 58.25M 0 150.9k 1:03:18 06:35 56:43 185.4k 10 559.9M 0 0 10 58.37M 0 150.9k 1:03:20 06:36 56:44 166.5k 10 559.9M 0 0 10 58.56M 0 150.9k 1:03:18 06:37 56:41 153.5k 10 559.9M 0 0 10 58.81M 0 151.1k 1:03:12 06:38 56:34 151.5k 10 559.9M 0 0 10 59.06M 0 151.3k 1:03:08 06:39 56:29 170.3k 10 559.9M 0 0 10 59.37M 0 151.7k 1:02:58 06:40 56:18 207.1k 10 559.9M 0 0 10 59.62M 0 151.8k 1:02:55 06:41 56:14 217.9k 10 559.9M 0 0 10 59.81M 0 151.9k 1:02:54 06:43 56:11 213.9k 10 559.9M 0 0 10 60.00M 0 151.9k 1:02:52 06:44 56:08 206.4k 10 559.9M 0 0 10 60.25M 0 152.2k 1:02:47 06:45 56:02 208.8k 10 559.9M 0 0 10 60.43M 0 152.2k 1:02:47 06:46 56:01 182.9k 10 559.9M 0 0 10 60.56M 0 152.1k 1:02:49 06:47 56:02 168.5k 10 559.9M 0 0 10 60.81M 0 152.2k 1:02:46 06:48 55:58 176.0k 10 559.9M 0 0 10 61.00M 0 152.3k 1:02:45 06:50 55:55 174.0k 10 559.9M 0 0 10 61.25M 0 152.4k 1:02:42 06:51 55:51 166.5k 10 559.9M 0 0 10 61.43M 0 152.4k 1:02:41 06:52 55:49 167.4k 11 559.9M 0 0 11 61.68M 0 152.5k 1:02:38 06:54 55:44 181.8k 11 559.9M 0 0 11 61.93M 0 152.7k 1:02:34 06:55 55:39 184.7k 11 559.9M 0 0 11 62.12M 0 152.8k 1:02:32 06:56 55:36 186.4k 11 559.9M 0 0 11 62.31M 0 152.8k 1:02:31 06:57 55:34 184.3k 11 559.9M 0 0 11 62.56M 0 153.0k 1:02:25 06:58 55:27 201.0k 11 559.9M 0 0 11 62.81M 0 153.2k 1:02:22 06:59 55:23 201.2k 11 559.9M 0 0 11 63.00M 0 153.2k 1:02:21 07:00 55:21 192.4k 11 559.9M 0 0 11 63.18M 0 153.3k 1:02:20 07:02 55:18 190.3k 11 559.9M 0 0 11 63.37M 0 153.3k 1:02:19 07:03 55:16 186.7k 11 559.9M 0 0 11 63.62M 0 153.5k 1:02:15 07:04 55:11 183.3k 11 559.9M 0 0 11 63.93M 0 153.7k 1:02:08 07:05 55:03 193.2k 11 559.9M 0 0 11 64.06M 0 153.6k 1:02:12 07:06 55:06 178.0k 11 559.9M 0 0 11 64.18M 0 153.5k 1:02:14 07:08 55:06 168.7k 11 559.9M 0 0 11 64.31M 0 153.4k 1:02:16 07:09 55:07 162.9k 11 559.9M 0 0 11 64.43M 0 153.3k 1:02:19 07:10 55:09 139.4k 11 559.9M 0 0 11 64.62M 0 153.2k 1:02:21 07:11 55:10 116.9k 11 559.9M 0 0 11 64.81M 0 153.3k 1:02:19 07:12 55:07 132.0k 11 559.9M 0 0 11 65.00M 0 153.3k 1:02:18 07:13 55:05 141.8k 11 559.9M 0 0 11 65.18M 0 153.3k 1:02:19 07:15 55:04 144.1k 11 559.9M 0 0 11 65.31M 0 153.2k 1:02:22 07:16 55:06 145.9k 11 559.9M 0 0 11 65.50M 0 153.2k 1:02:21 07:17 55:04 151.2k 11 559.9M 0 0 11 65.68M 0 153.1k 1:02:23 07:19 55:04 142.7k 11 559.9M 0 0 11 65.87M 0 153.2k 1:02:21 07:20 55:01 144.3k 11 559.9M 0 0 11 66.06M 0 153.3k 1:02:20 07:21 54:59 151.6k 11 559.9M 0 0 11 66.25M 0 153.3k 1:02:19 07:22 54:57 163.0k 11 559.9M 0 0 11 66.37M 0 153.1k 1:02:25 07:23 55:02 143.4k 11 559.9M 0 0 11 66.50M 0 153.0k 1:02:27 07:25 55:02 139.2k 11 559.9M 0 0 11 66.68M 0 153.0k 1:02:26 07:26 55:00 138.6k 11 559.9M 0 0 11 66.87M 0 153.0k 1:02:26 07:27 54:59 134.2k 11 559.9M 0 0 11 67.06M 0 153.0k 1:02:27 07:28 54:59 129.5k 11 559.9M 0 0 11 67.18M 0 152.9k 1:02:30 07:29 55:01 138.2k 12 559.9M 0 0 12 67.37M 0 152.8k 1:02:31 07:31 55:00 143.4k 12 559.9M 0 0 12 67.56M 0 152.8k 1:02:30 07:32 54:58 140.9k 12 559.9M 0 0 12 67.68M 0 152.8k 1:02:32 07:33 54:59 136.0k 12 559.9M 0 0 12 67.87M 0 152.8k 1:02:32 07:34 54:58 137.1k 12 559.9M 0 0 12 68.06M 0 152.7k 1:02:33 07:36 54:57 142.3k 12 559.9M 0 0 12 68.25M 0 152.7k 1:02:33 07:37 54:56 144.7k 12 559.9M 0 0 12 68.37M 0 152.7k 1:02:35 07:38 54:57 138.6k 12 559.9M 0 0 12 68.50M 0 152.6k 1:02:36 07:39 54:57 138.7k 12 559.9M 0 0 12 68.68M 0 152.6k 1:02:35 07:40 54:55 143.0k 12 559.9M 0 0 12 68.93M 0 152.8k 1:02:31 07:41 54:50 160.3k 12 559.9M 0 0 12 69.12M 0 152.8k 1:02:32 07:43 54:49 158.8k 12 559.9M 0 0 12 69.37M 0 152.9k 1:02:29 07:44 54:45 171.3k 12 559.9M 0 0 12 69.56M 0 153.0k 1:02:27 07:45 54:42 181.3k 12 559.9M 0 0 12 69.75M 0 152.8k 1:02:31 07:47 54:44 165.4k 12 559.9M 0 0 12 69.87M 0 152.7k 1:02:32 07:48 54:44 148.1k 12 559.9M 0 0 12 70.06M 0 152.8k 1:02:31 07:49 54:42 154.9k 12 559.9M 0 0 12 70.31M 0 152.9k 1:02:29 07:50 54:39 153.9k 12 559.9M 0 0 12 70.50M 0 152.9k 1:02:28 07:51 54:37 151.7k 12 559.9M 0 0 12 70.68M 0 153.0k 1:02:26 07:52 54:34 168.8k 12 559.9M 0 0 12 70.93M 0 153.1k 1:02:23 07:54 54:29 184.5k 12 559.9M 0 0 12 71.18M 0 153.2k 1:02:21 07:55 54:26 185.2k 12 559.9M 0 0 12 71.37M 0 153.2k 1:02:20 07:56 54:24 179.8k 12 559.9M 0 0 12 71.56M 0 153.1k 1:02:23 07:58 54:25 166.4k 12 559.9M 0 0 12 71.68M 0 152.9k 1:02:28 07:59 54:29 147.1k 12 559.9M 0 0 12 71.81M 0 152.8k 1:02:31 08:01 54:30 130.6k 12 559.9M 0 0 12 72.00M 0 152.9k 1:02:30 08:02 54:28 125.7k 12 559.9M 0 0 12 72.12M 0 152.8k 1:02:31 08:03 54:28 119.1k 12 559.9M 0 0 12 72.31M 0 152.7k 1:02:32 08:04 54:28 123.8k 12 559.9M 0 0 12 72.43M 0 152.7k 1:02:35 08:05 54:30 131.3k 12 559.9M 0 0 12 72.56M 0 152.6k 1:02:36 08:06 54:30 133.1k 12 559.9M 0 0 12 72.68M 0 152.5k 1:02:38 08:07 54:31 123.9k 13 559.9M 0 0 13 72.81M 0 152.3k 1:02:43 08:09 54:34 114.4k 13 559.9M 0 0 13 72.93M 0 152.2k 1:02:47 08:10 54:37 105.0k 13 559.9M 0 0 13 73.06M 0 152.0k 1:02:51 08:12 54:39 100.9k 13 559.9M 0 0 13 73.25M 0 152.0k 1:02:51 08:13 54:38 107.6k 13 559.9M 0 0 13 73.43M 0 152.0k 1:02:50 08:14 54:36 116.0k 13 559.9M 0 0 13 73.62M 0 152.0k 1:02:52 08:15 54:37 126.5k 13 559.9M 0 0 13 73.81M 0 152.0k 1:02:51 08:17 54:34 139.3k 13 559.9M 0 0 13 74.00M 0 152.0k 1:02:51 08:18 54:33 152.5k 13 559.9M 0 0 13 74.18M 0 152.0k 1:02:52 08:19 54:33 150.2k 13 559.9M 0 0 13 74.37M 0 151.9k 1:02:54 08:21 54:33 140.2k 13 559.9M 0 0 13 74.50M 0 151.8k 1:02:56 08:22 54:34 138.9k 13 559.9M 0 0 13 74.68M 0 151.8k 1:02:56 08:23 54:33 135.9k 13 559.9M 0 0 13 74.81M 0 151.7k 1:02:58 08:24 54:34 129.2k 13 559.9M 0 0 13 75.00M 0 151.7k 1:02:59 08:26 54:33 128.4k 13 559.9M 0 0 13 75.18M 0 151.7k 1:02:57 08:27 54:30 140.6k 13 559.9M 0 0 13 75.37M 0 151.8k 1:02:56 08:28 54:28 152.1k 13 559.9M 0 0 13 75.56M 0 151.8k 1:02:55 08:29 54:26 157.9k 13 559.9M 0 0 13 75.68M 0 151.8k 1:02:56 08:30 54:26 159.4k 13 559.9M 0 0 13 75.87M 0 151.7k 1:02:59 08:32 54:27 153.7k 13 559.9M 0 0 13 76.00M 0 151.6k 1:03:00 08:33 54:27 142.9k 13 559.9M 0 0 13 76.18M 0 151.6k 1:03:00 08:34 54:26 137.8k 13 559.9M 0 0 13 76.37M 0 151.6k 1:03:00 08:35 54:25 133.8k 13 559.9M 0 0 13 76.56M 0 151.7k 1:02:58 08:36 54:22 144.1k 13 559.9M 0 0 13 76.75M 0 151.7k 1:02:57 08:37 54:20 156.7k 13 559.9M 0 0 13 77.00M 0 151.8k 1:02:56 08:39 54:17 164.8k 13 559.9M 0 0 13 77.12M 0 151.7k 1:02:59 08:40 54:19 155.8k 13 559.9M 0 0 13 77.25M 0 151.6k 1:03:00 08:41 54:19 151.1k 13 559.9M 0 0 13 77.43M 0 151.7k 1:02:59 08:42 54:17 149.4k 13 559.9M 0 0 13 77.62M 0 151.7k 1:02:57 08:43 54:14 151.2k 13 559.9M 0 0 13 77.81M 0 151.7k 1:02:57 08:44 54:13 146.5k 13 559.9M 0 0 13 78.06M 0 151.9k 1:02:53 08:45 54:08 174.8k 13 559.9M 0 0 13 78.37M 0 152.2k 1:02:45 08:47 53:58 211.1k 14 559.9M 0 0 14 78.62M 0 152.4k 1:02:42 08:48 53:54 219.0k 14 559.9M 0 0 14 78.81M 0 152.3k 1:02:43 08:49 53:54 204.0k 14 559.9M 0 0 14 79.00M 0 152.3k 1:02:43 08:50 53:53 201.2k 14 559.9M 0 0 14 79.18M 0 152.3k 1:02:44 08:52 53:52 180.2k 14 559.9M 0 0 14 79.37M 0 152.2k 1:02:45 08:53 53:52 152.7k 14 559.9M 0 0 14 79.50M 0 152.1k 1:02:49 08:55 53:54 130.4k 14 559.9M 0 0 14 79.62M 0 152.0k 1:02:51 08:56 53:55 124.9k 14 559.9M 0 0 14 79.75M 0 151.8k 1:02:55 08:57 53:58 114.3k 14 559.9M 0 0 14 79.93M 0 151.8k 1:02:55 08:58 53:57 115.7k 14 559.9M 0 0 14 80.12M 0 151.9k 1:02:54 09:00 53:54 119.8k 14 559.9M 0 0 14 80.37M 0 152.0k 1:02:52 09:01 53:51 141.2k 14 559.9M 0 0 14 80.56M 0 152.0k 1:02:50 09:02 53:48 155.6k 14 559.9M 0 0 14 80.81M 0 152.2k 1:02:47 09:03 53:44 181.9k 14 559.9M 0 0 14 81.06M 0 152.3k 1:02:43 09:04 53:39 198.3k 14 559.9M 0 0 14 81.25M 0 152.4k 1:02:42 09:05 53:37 201.1k 14 559.9M 0 0 14 81.43M 0 152.4k 1:02:41 09:07 53:34 191.9k 14 559.9M 0 0 14 81.62M 0 152.3k 1:02:43 09:08 53:35 180.0k 14 559.9M 0 0 14 81.81M 0 152.3k 1:02:43 09:09 53:34 165.4k 14 559.9M 0 0 14 82.00M 0 152.3k 1:02:44 09:11 53:33 148.8k 14 559.9M 0 0 14 82.12M 0 152.2k 1:02:46 09:12 53:34 136.5k 14 559.9M 0 0 14 82.31M 0 152.2k 1:02:46 09:13 53:33 137.1k 14 559.9M 0 0 14 82.43M 0 152.2k 1:02:47 09:14 53:33 136.0k 14 559.9M 0 0 14 82.56M 0 152.1k 1:02:49 09:15 53:34 129.1k 14 559.9M 0 0 14 82.75M 0 152.0k 1:02:50 09:17 53:33 129.1k 14 559.9M 0 0 14 82.93M 0 152.1k 1:02:49 09:18 53:31 141.2k 14 559.9M 0 0 14 83.06M 0 152.0k 1:02:50 09:19 53:31 135.2k 14 559.9M 0 0 14 83.25M 0 152.0k 1:02:51 09:20 53:31 137.1k 14 559.9M 0 0 14 83.43M 0 152.0k 1:02:51 09:21 53:30 147.2k 14 559.9M 0 0 14 83.62M 0 152.0k 1:02:50 09:23 53:27 154.0k 14 559.9M 0 0 14 83.81M 0 152.0k 1:02:51 09:24 53:27 143.7k 14 559.9M 0 0 14 83.93M 0 151.9k 1:02:53 09:25 53:28 142.6k 15 559.9M 0 0 15 84.12M 0 152.0k 1:02:51 09:26 53:25 151.0k 15 559.9M 0 0 15 84.31M 0 152.0k 1:02:50 09:27 53:23 155.6k 15 559.9M 0 0 15 84.50M 0 152.0k 1:02:50 09:28 53:22 151.0k 15 559.9M 0 0 15 84.68M 0 152.0k 1:02:50 09:30 53:20 156.3k 15 559.9M 0 0 15 84.87M 0 152.0k 1:02:50 09:31 53:19 161.6k 15 559.9M 0 0 15 85.12M 0 152.2k 1:02:47 09:32 53:15 169.7k 15 559.9M 0 0 15 85.31M 0 152.1k 1:02:48 09:34 53:14 158.2k 15 559.9M 0 0 15 85.50M 0 152.0k 1:02:50 09:35 53:15 153.5k 15 559.9M 0 0 15 85.62M 0 152.0k 1:02:52 09:36 53:16 147.3k 15 559.9M 0 0 15 85.81M 0 152.0k 1:02:51 09:37 53:14 148.2k 15 559.9M 0 0 15 86.00M 0 152.0k 1:02:51 09:39 53:12 136.7k 15 559.9M 0 0 15 86.25M 0 152.1k 1:02:48 09:40 53:08 152.1k 15 559.9M 0 0 15 86.43M 0 152.2k 1:02:47 09:41 53:06 162.9k 15 559.9M 0 0 15 86.62M 0 152.2k 1:02:46 09:42 53:04 176.0k 15 559.9M 0 0 15 86.81M 0 152.2k 1:02:45 09:43 53:02 176.0k 15 559.9M 0 0 15 87.06M 0 152.3k 1:02:42 09:45 52:57 186.8k 15 559.9M 0 0 15 87.25M 0 152.4k 1:02:42 09:46 52:56 178.8k 15 559.9M 0 0 15 87.43M 0 152.4k 1:02:42 09:47 52:55 172.6k 15 559.9M 0 0 15 87.62M 0 152.4k 1:02:42 09:48 52:54 165.6k 15 559.9M 0 0 15 87.81M 0 152.4k 1:02:41 09:49 52:52 170.5k 15 559.9M 0 0 15 88.00M 0 152.4k 1:02:41 09:51 52:50 159.8k 15 559.9M 0 0 15 88.12M 0 152.4k 1:02:42 09:52 52:50 152.0k 15 559.9M 0 0 15 88.37M 0 152.5k 1:02:39 09:53 52:46 166.2k 15 559.9M 0 0 15 88.68M 0 152.8k 1:02:32 09:54 52:38 196.3k 15 559.9M 0 0 15 89.00M 0 153.0k 1:02:27 09:55 52:32 208.7k 15 559.9M 0 0 15 89.18M 0 153.0k 1:02:27 09:56 52:31 209.0k 15 559.9M 0 0 15 89.37M 0 153.0k 1:02:27 09:58 52:29 210.6k 15 559.9M 0 0 15 89.50M 0 152.9k 1:02:29 09:59 52:30 190.8k 16 559.9M 0 0 16 89.62M 0 152.8k 1:02:30 10:00 52:30 160.0k 16 559.9M 0 0 16 89.81M 0 152.9k 1:02:30 10:01 52:29 142.3k 16 559.9M 0 0 16 90.00M 0 152.9k 1:02:30 10:02 52:28 142.3k 16 559.9M 0 0 16 90.18M 0 152.9k 1:02:29 10:03 52:26 143.6k 16 559.9M 0 0 16 90.37M 0 152.9k 1:02:29 10:05 52:24 154.9k 16 559.9M 0 0 16 90.62M 0 153.1k 1:02:25 10:06 52:19 176.5k 16 559.9M 0 0 16 90.87M 0 153.2k 1:02:22 10:07 52:15 188.6k 16 559.9M 0 0 16 91.06M 0 153.1k 1:02:24 10:08 52:16 176.3k 16 559.9M 0 0 16 91.18M 0 152.9k 1:02:27 10:10 52:17 160.2k 16 559.9M 0 0 16 91.37M 0 152.9k 1:02:28 10:11 52:17 155.5k 16 559.9M 0 0 16 91.50M 0 152.9k 1:02:29 10:12 52:17 136.4k 16 559.9M 0 0 16 91.62M 0 152.8k 1:02:31 10:13 52:18 115.9k 16 559.9M 0 0 16 91.75M 0 152.7k 1:02:33 10:14 52:19 116.1k 16 559.9M 0 0 16 91.87M 0 152.7k 1:02:34 10:15 52:19 125.1k 16 559.9M 0 0 16 92.00M 0 152.6k 1:02:35 10:16 52:19 119.2k 16 559.9M 0 0 16 92.18M 0 152.6k 1:02:35 10:18 52:17 126.0k 16 559.9M 0 0 16 92.31M 0 152.6k 1:02:37 10:19 52:18 126.5k 16 559.9M 0 0 16 92.43M 0 152.4k 1:02:41 10:20 52:21 118.2k 16 559.9M 0 0 16 92.56M 0 152.3k 1:02:43 10:21 52:22 116.0k 16 559.9M 0 0 16 92.75M 0 152.3k 1:02:43 10:23 52:20 119.8k 16 559.9M 0 0 16 92.87M 0 152.2k 1:02:46 10:24 52:22 109.1k 16 559.9M 0 0 16 92.93M 0 152.0k 1:02:50 10:25 52:25 101.9k 16 559.9M 0 0 16 93.06M 0 152.0k 1:02:52 10:26 52:26 92695 16 559.9M 0 0 16 93.06M 0 152.0k 1:02:52 10:26 52:26 152.0k 16 559.9M 0 0 16 93.25M 0 151.9k 1:02:53 10:28 52:25 135.8k 16 559.9M 0 0 16 93.37M 0 151.9k 1:02:54 10:29 52:25 132.6k 16 559.9M 0 0 16 93.50M 0 151.8k 1:02:56 10:30 52:26 126.5k 16 559.9M 0 0 16 93.68M 0 151.8k 1:02:56 10:31 52:25 129.7k 16 559.9M 0 0 16 93.87M 0 151.7k 1:02:58 10:33 52:25 127.5k 16 559.9M 0 0 16 94.00M 0 151.6k 1:03:01 10:34 52:27 118.7k 16 559.9M 0 0 16 94.18M 0 151.6k 1:03:02 10:36 52:26 122.4k 16 559.9M 0 0 16 94.43M 0 151.7k 1:02:59 10:37 52:22 139.5k 16 559.9M 0 0 16 94.68M 0 151.8k 1:02:57 10:38 52:19 150.8k 16 559.9M 0 0 16 94.93M 0 151.9k 1:02:54 10:39 52:15 168.3k 16 559.9M 0 0 16 95.18M 0 152.0k 1:02:50 10:40 52:10 197.8k 17 559.9M 0 0 17 95.43M 0 152.1k 1:02:47 10:42 52:05 213.3k 17 559.9M 0 0 17 95.62M 0 152.1k 1:02:48 10:43 52:05 199.0k 17 559.9M 0 0 17 95.75M 0 152.1k 1:02:49 10:44 52:05 185.5k 17 559.9M 0 0 17 95.93M 0 152.0k 1:02:50 10:45 52:05 171.1k 17 559.9M 0 0 17 96.12M 0 152.1k 1:02:49 10:47 52:02 157.9k 17 559.9M 0 0 17 96.31M 0 152.0k 1:02:50 10:48 52:02 140.7k 17 559.9M 0 0 17 96.43M 0 152.0k 1:02:52 10:49 52:03 133.6k 17 559.9M 0 0 17 96.62M 0 152.0k 1:02:51 10:50 52:01 142.5k 17 559.9M 0 0 17 96.81M 0 152.0k 1:02:50 10:51 51:59 151.9k 17 559.9M 0 0 17 97.00M 0 152.1k 1:02:49 10:52 51:57 154.2k 17 559.9M 0 0 17 97.18M 0 152.1k 1:02:48 10:54 51:54 162.1k 17 559.9M 0 0 17 97.31M 0 152.0k 1:02:50 10:55 51:55 163.5k 17 559.9M 0 0 17 97.43M 0 152.0k 1:02:51 10:56 51:55 152.8k 17 559.9M 0 0 17 97.56M 0 151.9k 1:02:52 10:57 51:55 140.0k 17 559.9M 0 0 17 97.68M 0 151.9k 1:02:54 10:58 51:56 126.4k 17 559.9M 0 0 17 97.81M 0 151.8k 1:02:56 10:59 51:57 113.2k 17 559.9M 0 0 17 98.00M 0 151.8k 1:02:57 11:00 51:57 121.0k 17 559.9M 0 0 17 98.12M 0 151.6k 1:03:00 11:02 51:58 114.6k 17 559.9M 0 0 17 98.25M 0 151.5k 1:03:03 11:03 52:00 107.1k 17 559.9M 0 0 17 98.37M 0 151.4k 1:03:06 11:05 52:01 103.1k 17 559.9M 0 0 17 98.50M 0 151.3k 1:03:09 11:06 52:03 102.5k 17 559.9M 0 0 17 98.68M 0 151.3k 1:03:08 11:07 52:01 107.0k 17 559.9M 0 0 17 98.87M 0 151.4k 1:03:07 11:08 51:59 121.9k 17 559.9M 0 0 17 99.12M 0 151.4k 1:03:05 11:10 51:55 144.3k 17 559.9M 0 0 17 99.31M 0 151.4k 1:03:05 11:11 51:54 156.9k 17 559.9M 0 0 17 99.43M 0 151.3k 1:03:07 11:12 51:55 159.1k 17 559.9M 0 0 17 99.56M 0 151.3k 1:03:09 11:13 51:56 143.7k 17 559.9M 0 0 17 99.75M 0 151.3k 1:03:09 11:14 51:55 142.3k 17 559.9M 0 0 17 99.93M 0 151.2k 1:03:10 11:16 51:54 131.2k 17 559.9M 0 0 17 100.1M 0 151.2k 1:03:11 11:17 51:54 128.0k 17 559.9M 0 0 17 100.2M 0 151.1k 1:03:12 11:18 51:54 129.6k 17 559.9M 0 0 17 100.4M 0 151.1k 1:03:13 11:20 51:53 135.0k 17 559.9M 0 0 17 100.6M 0 151.2k 1:03:12 11:21 51:51 137.9k 18 559.9M 0 0 18 100.8M 0 151.1k 1:03:13 11:22 51:51 136.6k 18 559.9M 0 0 18 101.0M 0 151.2k 1:03:12 11:23 51:49 146.2k 18 559.9M 0 0 18 101.1M 0 151.2k 1:03:11 11:25 51:46 157.4k 18 559.9M 0 0 18 101.3M 0 151.2k 1:03:10 11:26 51:44 164.8k 18 559.9M 0 0 18 101.5M 0 151.2k 1:03:10 11:27 51:43 160.8k 18 559.9M 0 0 18 101.8M 0 151.3k 1:03:07 11:28 51:39 179.0k 18 559.9M 0 0 18 102.0M 0 151.4k 1:03:06 11:29 51:37 177.9k 18 559.9M 0 0 18 102.1M 0 151.3k 1:03:09 11:31 51:38 160.6k 18 559.9M 0 0 18 102.3M 0 151.3k 1:03:08 11:32 51:36 160.0k 18 559.9M 0 0 18 102.5M 0 151.3k 1:03:08 11:33 51:35 160.5k 18 559.9M 0 0 18 102.6M 0 151.3k 1:03:09 11:34 51:35 146.0k 18 559.9M 0 0 18 102.8M 0 151.3k 1:03:07 11:35 51:32 146.9k 18 559.9M 0 0 18 103.1M 0 151.5k 1:03:04 11:36 51:28 175.8k 18 559.9M 0 0 18 103.3M 0 151.5k 1:03:03 11:38 51:25 176.7k 18 559.9M 0 0 18 103.5M 0 151.5k 1:03:03 11:39 51:24 176.5k 18 559.9M 0 0 18 103.6M 0 151.6k 1:03:02 11:40 51:22 186.7k 18 559.9M 0 0 18 103.9M 0 151.7k 1:03:00 11:41 51:19 188.9k 18 559.9M 0 0 18 104.1M 0 151.8k 1:02:57 11:42 51:15 184.0k 18 559.9M 0 0 18 104.4M 0 151.9k 1:02:54 11:43 51:11 195.5k 18 559.9M 0 0 18 104.6M 0 151.8k 1:02:55 11:45 51:10 185.3k 18 559.9M 0 0 18 104.7M 0 151.8k 1:02:56 11:46 51:10 176.3k 18 559.9M 0 0 18 104.9M 0 151.8k 1:02:56 11:47 51:09 170.6k 18 559.9M 0 0 18 105.1M 0 151.8k 1:02:56 11:48 51:08 158.7k 18 559.9M 0 0 18 105.2M 0 151.7k 1:02:59 11:50 51:09 130.7k 18 559.9M 0 0 18 105.3M 0 151.6k 1:03:01 11:51 51:10 125.0k 18 559.9M 0 0 18 105.5M 0 151.6k 1:03:00 11:52 51:08 133.6k 18 559.9M 0 0 18 105.7M 0 151.7k 1:02:59 11:53 51:06 135.3k 18 559.9M 0 0 18 105.9M 0 151.7k 1:02:58 11:54 51:04 138.4k 18 559.9M 0 0 18 106.1M 0 151.7k 1:02:58 11:56 51:02 153.8k 18 559.9M 0 0 18 106.3M 0 151.7k 1:02:59 11:57 51:02 161.6k 19 559.9M 0 0 19 106.5M 0 151.7k 1:02:59 11:58 51:01 159.0k 19 559.9M 0 0 19 106.6M 0 151.7k 1:02:58 11:59 50:59 159.1k 19 559.9M 0 0 19 106.9M 0 151.9k 1:02:54 12:00 50:54 172.1k 19 559.9M 0 0 19 107.1M 0 151.9k 1:02:54 12:02 50:52 172.9k 19 559.9M 0 0 19 107.3M 0 151.8k 1:02:55 12:03 50:52 172.3k 19 559.9M 0 0 19 107.5M 0 151.8k 1:02:55 12:04 50:51 170.8k 19 559.9M 0 0 19 107.6M 0 151.9k 1:02:54 12:05 50:49 168.7k 19 559.9M 0 0 19 107.8M 0 151.8k 1:02:55 12:06 50:49 147.4k 19 559.9M 0 0 19 107.9M 0 151.7k 1:02:58 12:08 50:50 133.5k 19 559.9M 0 0 19 108.0M 0 151.6k 1:03:00 12:09 50:51 126.6k 19 559.9M 0 0 19 108.2M 0 151.7k 1:02:59 12:10 50:49 132.2k 19 559.9M 0 0 19 108.4M 0 151.6k 1:03:00 12:12 50:48 124.4k 19 559.9M 0 0 19 108.6M 0 151.6k 1:03:00 12:13 50:47 128.0k 19 559.9M 0 0 19 108.8M 0 151.7k 1:02:59 12:14 50:45 148.7k 19 559.9M 0 0 19 109.0M 0 151.7k 1:02:59 12:16 50:43 157.1k 19 559.9M 0 0 19 109.1M 0 151.6k 1:03:00 12:17 50:43 146.8k 19 559.9M 0 0 19 109.3M 0 151.7k 1:02:59 12:18 50:41 155.2k 19 559.9M 0 0 19 109.5M 0 151.7k 1:02:59 12:19 50:40 159.5k 19 559.9M 0 0 19 109.7M 0 151.7k 1:02:59 12:20 50:39 150.5k 19 559.9M 0 0 19 109.9M 0 151.7k 1:02:58 12:21 50:37 155.2k 19 559.9M 0 0 19 110.1M 0 151.7k 1:02:59 12:23 50:36 154.4k 19 559.9M 0 0 19 110.2M 0 151.6k 1:03:02 12:24 50:38 138.9k 19 559.9M 0 0 19 110.3M 0 151.5k 1:03:04 12:25 50:39 128.9k 19 559.9M 0 0 19 110.5M 0 151.4k 1:03:05 12:26 50:39 122.7k 19 559.9M 0 0 19 110.6M 0 151.5k 1:03:04 12:27 50:37 123.9k 19 559.9M 0 0 19 111.0M 0 151.7k 1:02:59 12:29 50:30 153.1k 19 559.9M 0 0 19 111.2M 0 151.8k 1:02:57 12:30 50:27 178.1k 19 559.9M 0 0 19 111.5M 0 151.8k 1:02:55 12:31 50:24 197.0k 19 559.9M 0 0 19 111.7M 0 151.9k 1:02:52 12:32 50:20 213.6k 20 559.9M 0 0 20 112.0M 0 152.1k 1:02:50 12:34 50:16 223.3k 20 559.9M 0 0 20 112.1M 0 152.0k 1:02:52 12:35 50:17 183.7k 20 559.9M 0 0 20 112.3M 0 151.9k 1:02:54 12:37 50:17 162.8k 20 559.9M 0 0 20 112.4M 0 151.8k 1:02:57 12:38 50:19 141.9k 20 559.9M 0 0 20 112.6M 0 151.8k 1:02:57 12:39 50:18 132.4k 20 559.9M 0 0 20 112.8M 0 151.7k 1:02:57 12:41 50:16 117.9k 20 559.9M 0 0 20 112.9M 0 151.7k 1:02:59 12:42 50:17 119.0k 20 559.9M 0 0 20 113.0M 0 151.6k 1:03:01 12:43 50:18 120.3k 20 559.9M 0 0 20 113.1M 0 151.5k 1:03:04 12:44 50:20 120.2k 20 559.9M 0 0 20 113.3M 0 151.4k 1:03:05 12:46 50:19 111.1k 20 559.9M 0 0 20 113.5M 0 151.4k 1:03:05 12:47 50:18 114.8k 20 559.9M 0 0 20 113.6M 0 151.4k 1:03:05 12:48 50:17 120.2k 20 559.9M 0 0 20 113.9M 0 151.5k 1:03:04 12:50 50:14 136.7k 20 559.9M 0 0 20 114.0M 0 151.4k 1:03:05 12:51 50:14 145.4k 20 559.9M 0 0 20 114.1M 0 151.4k 1:03:06 12:52 50:14 145.9k 20 559.9M 0 0 20 114.3M 0 151.3k 1:03:08 12:53 50:15 135.9k 20 559.9M 0 0 20 114.5M 0 151.3k 1:03:07 12:54 50:13 141.9k 20 559.9M 0 0 20 114.6M 0 151.4k 1:03:06 12:55 50:11 139.1k 20 559.9M 0 0 20 114.8M 0 151.4k 1:03:06 12:56 50:10 144.0k 20 559.9M 0 0 20 115.0M 0 151.3k 1:03:08 12:57 50:11 144.0k 20 559.9M 0 0 20 115.1M 0 151.3k 1:03:09 12:59 50:10 147.1k 20 559.9M 0 0 20 115.3M 0 151.2k 1:03:10 13:00 50:10 137.2k 20 559.9M 0 0 20 115.5M 0 151.3k 1:03:09 13:01 50:08 135.4k 20 559.9M 0 0 20 115.7M 0 151.4k 1:03:07 13:02 50:05 149.0k 20 559.9M 0 0 20 116.0M 0 151.5k 1:03:02 13:03 49:59 179.3k 20 559.9M 0 0 20 116.2M 0 151.6k 1:03:01 13:05 49:56 193.3k 20 559.9M 0 0 20 116.5M 0 151.7k 1:02:58 13:06 49:52 217.9k 20 559.9M 0 0 20 116.7M 0 151.8k 1:02:55 13:07 49:48 234.9k 20 559.9M 0 0 20 117.0M 0 151.9k 1:02:54 13:08 49:46 222.2k 20 559.9M 0 0 20 117.1M 0 151.8k 1:02:55 13:09 49:46 194.1k 20 559.9M 0 0 20 117.3M 0 151.9k 1:02:54 13:10 49:44 189.9k 20 559.9M 0 0 20 117.5M 0 151.9k 1:02:54 13:11 49:43 176.4k 21 559.9M 0 0 21 117.6M 0 151.9k 1:02:53 13:12 49:41 163.2k 21 559.9M 0 0 21 117.8M 0 151.9k 1:02:53 13:14 49:39 158.6k 21 559.9M 0 0 21 118.0M 0 151.9k 1:02:53 13:15 49:38 158.3k 21 559.9M 0 0 21 118.2M 0 151.9k 1:02:54 13:17 49:37 151.9k 21 559.9M 0 0 21 118.4M 0 151.8k 1:02:56 13:18 49:38 142.8k 21 559.9M 0 0 21 118.5M 0 151.8k 1:02:57 13:19 49:38 133.0k 21 559.9M 0 0 21 118.7M 0 151.8k 1:02:57 13:21 49:36 131.2k 21 559.9M 0 0 21 118.9M 0 151.8k 1:02:56 13:22 49:34 137.7k 21 559.9M 0 0 21 119.0M 0 151.7k 1:02:57 13:23 49:34 135.6k 21 559.9M 0 0 21 119.2M 0 151.8k 1:02:57 13:24 49:33 143.3k 21 559.9M 0 0 21 119.4M 0 151.7k 1:02:58 13:25 49:33 147.5k 21 559.9M 0 0 21 119.6M 0 151.7k 1:02:58 13:27 49:31 146.6k 21 559.9M 0 0 21 119.7M 0 151.6k 1:03:01 13:28 49:33 129.1k 21 559.9M 0 0 21 119.8M 0 151.5k 1:03:04 13:30 49:34 120.2k 21 559.9M 0 0 21 120.0M 0 151.5k 1:03:03 13:31 49:32 121.5k 21 559.9M 0 0 21 120.2M 0 151.5k 1:03:03 13:32 49:31 124.9k 21 559.9M 0 0 21 120.4M 0 151.5k 1:03:03 13:33 49:30 125.3k 21 559.9M 0 0 21 120.5M 0 151.5k 1:03:04 13:34 49:30 132.9k 21 559.9M 0 0 21 120.7M 0 151.5k 1:03:04 13:36 49:28 150.6k 21 559.9M 0 0 21 120.9M 0 151.5k 1:03:04 13:37 49:27 148.4k 21 559.9M 0 0 21 121.1M 0 151.4k 1:03:05 13:38 49:27 142.9k 21 559.9M 0 0 21 121.3M 0 151.4k 1:03:05 13:39 49:26 144.0k 21 559.9M 0 0 21 121.5M 0 151.4k 1:03:05 13:41 49:24 147.9k 21 559.9M 0 0 21 121.6M 0 151.5k 1:03:04 13:42 49:22 151.1k 21 559.9M 0 0 21 121.9M 0 151.6k 1:03:02 13:43 49:19 163.7k 21 559.9M 0 0 21 122.1M 0 151.6k 1:03:00 13:44 49:16 178.5k 21 559.9M 0 0 21 122.3M 0 151.6k 1:03:00 13:46 49:14 178.5k 21 559.9M 0 0 21 122.5M 0 151.6k 1:03:00 13:47 49:13 181.4k 21 559.9M 0 0 21 122.8M 0 151.8k 1:02:57 13:48 49:09 193.3k 21 559.9M 0 0 21 123.0M 0 151.9k 1:02:55 13:49 49:06 190.5k 22 559.9M 0 0 22 123.3M 0 152.0k 1:02:52 13:50 49:02 196.4k 22 559.9M 0 0 22 123.5M 0 152.1k 1:02:50 13:51 48:59 211.2k 22 559.9M 0 0 22 123.8M 0 152.2k 1:02:47 13:52 48:55 228.4k 22 559.9M 0 0 22 124.0M 0 152.2k 1:02:46 13:53 48:53 217.2k 22 559.9M 0 0 22 124.2M 0 152.3k 1:02:43 13:55 48:48 220.8k 22 559.9M 0 0 22 124.4M 0 152.3k 1:02:43 13:56 48:47 202.9k 22 559.9M 0 0 22 124.6M 0 152.3k 1:02:43 13:57 48:46 190.3k 22 559.9M 0 0 22 124.8M 0 152.4k 1:02:41 13:58 48:43 185.2k 22 559.9M 0 0 22 125.1M 0 152.5k 1:02:39 14:00 48:39 190.1k 22 559.9M 0 0 22 125.3M 0 152.5k 1:02:38 14:01 48:37 179.4k 22 559.9M 0 0 22 125.5M 0 152.5k 1:02:38 14:02 48:36 181.8k 22 559.9M 0 0 22 125.7M 0 152.6k 1:02:36 14:03 48:33 189.5k 22 559.9M 0 0 22 125.8M 0 152.5k 1:02:38 14:04 48:34 170.4k 22 559.9M 0 0 22 126.0M 0 152.5k 1:02:39 14:05 48:34 153.2k 22 559.9M 0 0 22 126.1M 0 152.5k 1:02:39 14:07 48:32 147.6k 22 559.9M 0 0 22 126.3M 0 152.5k 1:02:38 14:08 48:30 151.8k 22 559.9M 0 0 22 126.5M 0 152.5k 1:02:40 14:09 48:31 134.9k 22 559.9M 0 0 22 126.6M 0 152.4k 1:02:42 14:11 48:31 130.8k 22 559.9M 0 0 22 126.8M 0 152.2k 1:02:45 14:12 48:33 122.6k 22 559.9M 0 0 22 126.9M 0 152.2k 1:02:46 14:13 48:33 118.3k 22 559.9M 0 0 22 127.0M 0 152.2k 1:02:47 14:14 48:33 108.1k 22 559.9M 0 0 22 127.2M 0 152.1k 1:02:48 14:16 48:32 109.0k 22 559.9M 0 0 22 127.4M 0 152.1k 1:02:48 14:17 48:31 121.2k 22 559.9M 0 0 22 127.6M 0 152.2k 1:02:47 14:18 48:29 141.1k 22 559.9M 0 0 22 127.7M 0 152.1k 1:02:48 14:19 48:29 141.0k 22 559.9M 0 0 22 127.9M 0 152.1k 1:02:48 14:21 48:27 143.5k 22 559.9M 0 0 22 128.1M 0 152.0k 1:02:50 14:22 48:28 139.8k 22 559.9M 0 0 22 128.2M 0 151.9k 1:02:54 14:24 48:30 119.0k 22 559.9M 0 0 22 128.3M 0 151.8k 1:02:57 14:25 48:32 101.2k 22 559.9M 0 0 22 128.3M 0 151.7k 1:02:59 14:26 48:33 94883 22 559.9M 0 0 22 128.5M 0 151.6k 1:03:01 14:27 48:34 86840 22 559.9M 0 0 22 128.6M 0 151.6k 1:03:00 14:28 48:32 95890 23 559.9M 0 0 23 128.9M 0 151.7k 1:02:59 14:30 48:29 122.4k 23 559.9M 0 0 23 129.1M 0 151.7k 1:02:58 14:31 48:27 142.8k 23 559.9M 0 0 23 129.3M 0 151.8k 1:02:57 14:32 48:25 168.6k 23 559.9M 0 0 23 129.5M 0 151.8k 1:02:57 14:33 48:24 175.9k 23 559.9M 0 0 23 129.7M 0 151.8k 1:02:56 14:35 48:21 174.1k 23 559.9M 0 0 23 129.8M 0 151.7k 1:02:57 14:36 48:21 163.2k 23 559.9M 0 0 23 130.0M 0 151.6k 1:03:00 14:37 48:23 144.2k 23 559.9M 0 0 23 130.1M 0 151.6k 1:03:01 14:38 48:23 124.6k 23 559.9M 0 0 23 130.3M 0 151.6k 1:03:01 14:39 48:22 128.2k 23 559.9M 0 0 23 130.5M 0 151.6k 1:03:01 14:41 48:20 125.7k 23 559.9M 0 0 23 130.7M 0 151.7k 1:02:59 14:42 48:17 141.3k 23 559.9M 0 0 23 131.0M 0 151.7k 1:02:57 14:43 48:14 164.7k 23 559.9M 0 0 23 131.1M 0 151.8k 1:02:57 14:44 48:13 176.5k 23 559.9M 0 0 23 131.3M 0 151.8k 1:02:57 14:46 48:11 177.8k 23 559.9M 0 0 23 131.5M 0 151.8k 1:02:56 14:47 48:09 177.0k 23 559.9M 0 0 23 131.8M 0 151.9k 1:02:54 14:48 48:06 182.4k 23 559.9M 0 0 23 132.1M 0 152.1k 1:02:50 14:49 48:01 201.3k 23 559.9M 0 0 23 132.3M 0 152.2k 1:02:47 14:50 47:57 216.7k 23 559.9M 0 0 23 132.6M 0 152.3k 1:02:44 14:51 47:53 234.0k 23 559.9M 0 0 23 132.8M 0 152.4k 1:02:41 14:52 47:49 254.3k 23 559.9M 0 0 23 133.0M 0 152.4k 1:02:41 14:53 47:48 238.6k 23 559.9M 0 0 23 133.2M 0 152.4k 1:02:41 14:55 47:46 206.7k 23 559.9M 0 0 23 133.4M 0 152.4k 1:02:41 14:56 47:45 188.1k 23 559.9M 0 0 23 133.6M 0 152.5k 1:02:39 14:57 47:42 183.2k 23 559.9M 0 0 23 133.9M 0 152.6k 1:02:37 14:58 47:39 176.9k 23 559.9M 0 0 23 134.1M 0 152.6k 1:02:36 14:59 47:37 181.2k 23 559.9M 0 0 23 134.3M 0 152.6k 1:02:36 15:00 47:36 186.4k 24 559.9M 0 0 24 134.5M 0 152.6k 1:02:36 15:02 47:34 180.7k 24 559.9M 0 0 24 134.6M 0 152.5k 1:02:37 15:03 47:34 162.0k 24 559.9M 0 0 24 134.8M 0 152.5k 1:02:38 15:04 47:34 147.0k 24 559.9M 0 0 24 135.0M 0 152.5k 1:02:38 15:06 47:32 142.5k 24 559.9M 0 0 24 135.1M 0 152.6k 1:02:37 15:07 47:30 143.4k 24 559.9M 0 0 24 135.3M 0 152.6k 1:02:37 15:08 47:29 150.6k 24 559.9M 0 0 24 135.5M 0 152.5k 1:02:37 15:09 47:28 151.6k 24 559.9M 0 0 24 135.6M 0 152.5k 1:02:38 15:10 47:28 155.9k 24 559.9M 0 0 24 135.8M 0 152.5k 1:02:38 15:11 47:27 154.1k 24 559.9M 0 0 24 136.0M 0 152.4k 1:02:40 15:13 47:27 134.9k 24 559.9M 0 0 24 136.1M 0 152.3k 1:02:43 15:14 47:29 117.8k 24 559.9M 0 0 24 136.1M 0 152.2k 1:02:45 15:15 47:30 108.3k 24 559.9M 0 0 24 136.3M 0 152.2k 1:02:47 15:16 47:31 100.3k 24 559.9M 0 0 24 136.5M 0 152.2k 1:02:47 15:18 47:29 100.6k 24 559.9M 0 0 24 136.6M 0 152.1k 1:02:48 15:19 47:29 108.0k 24 559.9M 0 0 24 136.8M 0 152.1k 1:02:49 15:20 47:29 115.8k 24 559.9M 0 0 24 136.9M 0 152.0k 1:02:50 15:22 47:28 122.9k 24 559.9M 0 0 24 137.0M 0 152.0k 1:02:51 15:23 47:28 123.0k 24 559.9M 0 0 24 137.2M 0 152.0k 1:02:51 15:24 47:27 127.4k 24 559.9M 0 0 24 137.4M 0 152.0k 1:02:50 15:25 47:25 139.7k 24 559.9M 0 0 24 137.6M 0 152.1k 1:02:48 15:26 47:22 158.1k 24 559.9M 0 0 24 138.0M 0 152.3k 1:02:44 15:27 47:17 190.1k 24 559.9M 0 0 24 138.1M 0 152.3k 1:02:44 15:28 47:16 204.5k 24 559.9M 0 0 24 138.3M 0 152.2k 1:02:45 15:29 47:16 191.4k 24 559.9M 0 0 24 138.4M 0 152.2k 1:02:45 15:30 47:15 181.0k 24 559.9M 0 0 24 138.6M 0 152.2k 1:02:45 15:32 47:13 173.2k 24 559.9M 0 0 24 138.8M 0 152.3k 1:02:44 15:33 47:11 155.9k 24 559.9M 0 0 24 139.0M 0 152.3k 1:02:44 15:34 47:10 152.0k 24 559.9M 0 0 24 139.1M 0 152.2k 1:02:45 15:35 47:10 152.7k 24 559.9M 0 0 24 139.3M 0 152.3k 1:02:45 15:37 47:08 157.6k 24 559.9M 0 0 24 139.5M 0 152.2k 1:02:45 15:38 47:07 138.5k 24 559.9M 0 0 24 139.5M 0 152.2k 1:02:45 15:38 47:07 152.2k 24 559.9M 0 0 24 139.7M 0 152.2k 1:02:46 15:39 47:07 138.4k 24 559.9M 0 0 24 139.9M 0 152.2k 1:02:45 15:41 47:04 150.0k 25 559.9M 0 0 25 140.1M 0 152.3k 1:02:44 15:42 47:02 159.9k 25 559.9M 0 0 25 140.3M 0 152.3k 1:02:44 15:43 47:01 160.8k 25 559.9M 0 0 25 140.4M 0 152.2k 1:02:45 15:44 47:01 152.3k 25 559.9M 0 0 25 140.5M 0 152.2k 1:02:46 15:45 47:01 147.4k 25 559.9M 0 0 25 140.7M 0 152.1k 1:02:47 15:46 47:01 139.5k 25 559.9M 0 0 25 140.8M 0 152.1k 1:02:48 15:48 47:00 126.8k 25 559.9M 0 0 25 141.0M 0 152.1k 1:02:48 15:49 46:59 126.3k 25 559.9M 0 0 25 141.2M 0 152.1k 1:02:48 15:50 46:58 136.3k 25 559.9M 0 0 25 141.4M 0 152.1k 1:02:48 15:51 46:57 141.3k 25 559.9M 0 0 25 141.5M 0 152.1k 1:02:49 15:52 46:57 138.5k 25 559.9M 0 0 25 141.6M 0 152.0k 1:02:51 15:54 46:57 136.4k 25 559.9M 0 0 25 141.9M 0 152.1k 1:02:49 15:55 46:54 144.5k 25 559.9M 0 0 25 142.1M 0 152.1k 1:02:49 15:56 46:53 141.7k 25 559.9M 0 0 25 142.3M 0 152.1k 1:02:49 15:57 46:52 147.7k 25 559.9M 0 0 25 142.5M 0 152.1k 1:02:48 15:59 46:49 159.1k 25 559.9M 0 0 25 142.6M 0 152.1k 1:02:49 16:00 46:49 164.3k 25 559.9M 0 0 25 142.7M 0 152.0k 1:02:51 16:01 46:50 144.3k 25 559.9M 0 0 25 142.9M 0 152.0k 1:02:51 16:02 46:49 141.9k 25 559.9M 0 0 25 143.1M 0 152.0k 1:02:51 16:03 46:48 139.2k 25 559.9M 0 0 25 143.3M 0 152.0k 1:02:50 16:04 46:46 140.2k 25 559.9M 0 0 25 143.5M 0 152.0k 1:02:50 16:06 46:44 147.8k 25 559.9M 0 0 25 143.6M 0 152.0k 1:02:50 16:07 46:43 154.2k 25 559.9M 0 0 25 143.8M 0 152.1k 1:02:50 16:08 46:42 161.0k 25 559.9M 0 0 25 144.0M 0 152.1k 1:02:49 16:09 46:40 163.2k 25 559.9M 0 0 25 144.2M 0 152.1k 1:02:49 16:10 46:39 160.2k 25 559.9M 0 0 25 144.4M 0 152.1k 1:02:49 16:12 46:37 153.8k 25 559.9M 0 0 25 144.5M 0 152.0k 1:02:51 16:13 46:38 149.8k 25 559.9M 0 0 25 144.7M 0 152.0k 1:02:50 16:14 46:36 146.7k 25 559.9M 0 0 25 144.9M 0 152.0k 1:02:51 16:16 46:35 141.6k 25 559.9M 0 0 25 145.1M 0 152.0k 1:02:52 16:17 46:35 135.6k 25 559.9M 0 0 25 145.2M 0 151.9k 1:02:54 16:18 46:36 126.3k 25 559.9M 0 0 25 145.3M 0 151.8k 1:02:56 16:20 46:36 120.5k 25 559.9M 0 0 25 145.5M 0 151.8k 1:02:56 16:21 46:35 122.1k 26 559.9M 0 0 26 145.7M 0 151.8k 1:02:55 16:22 46:33 124.6k 26 559.9M 0 0 26 145.9M 0 151.8k 1:02:56 16:24 46:32 124.3k 26 559.9M 0 0 26 146.0M 0 151.7k 1:02:58 16:25 46:33 124.1k 26 559.9M 0 0 26 146.1M 0 151.6k 1:03:01 16:27 46:34 123.1k 26 559.9M 0 0 26 146.3M 0 151.5k 1:03:03 16:28 46:35 109.5k 26 559.9M 0 0 26 146.5M 0 151.5k 1:03:03 16:29 46:34 109.1k 26 559.9M 0 0 26 146.6M 0 151.5k 1:03:03 16:31 46:32 113.0k 26 559.9M 0 0 26 146.9M 0 151.6k 1:03:01 16:32 46:29 134.5k 26 559.9M 0 0 26 147.1M 0 151.7k 1:02:59 16:33 46:26 162.3k 26 559.9M 0 0 26 147.4M 0 151.7k 1:02:57 16:34 46:23 187.8k 26 559.9M 0 0 26 147.6M 0 151.7k 1:02:58 16:36 46:22 184.4k 26 559.9M 0 0 26 147.8M 0 151.7k 1:02:58 16:37 46:21 182.5k 26 559.9M 0 0 26 148.0M 0 151.8k 1:02:57 16:38 46:19 181.7k 26 559.9M 0 0 26 148.1M 0 151.7k 1:02:58 16:39 46:19 158.7k 26 559.9M 0 0 26 148.3M 0 151.7k 1:02:59 16:41 46:18 144.0k 26 559.9M 0 0 26 148.5M 0 151.7k 1:02:58 16:42 46:16 148.9k 26 559.9M 0 0 26 148.7M 0 151.7k 1:02:59 16:44 46:15 144.1k 26 559.9M 0 0 26 148.8M 0 151.6k 1:03:00 16:45 46:15 129.9k 26 559.9M 0 0 26 149.0M 0 151.6k 1:03:00 16:46 46:14 140.9k 26 559.9M 0 0 26 149.1M 0 151.6k 1:03:01 16:47 46:14 137.4k 26 559.9M 0 0 26 149.3M 0 151.6k 1:03:01 16:48 46:13 133.6k 26 559.9M 0 0 26 149.5M 0 151.6k 1:03:02 16:50 46:12 135.8k 26 559.9M 0 0 26 149.7M 0 151.6k 1:03:02 16:51 46:11 141.0k 26 559.9M 0 0 26 149.9M 0 151.6k 1:03:01 16:52 46:09 142.2k 26 559.9M 0 0 26 150.1M 0 151.7k 1:02:59 16:53 46:06 163.5k 26 559.9M 0 0 26 150.5M 0 151.8k 1:02:56 16:54 46:02 185.9k 26 559.9M 0 0 26 150.8M 0 151.9k 1:02:52 16:56 45:56 215.5k 26 559.9M 0 0 26 151.1M 0 152.1k 1:02:49 16:57 45:52 240.7k 27 559.9M 0 0 27 151.3M 0 152.2k 1:02:47 16:58 45:49 256.7k 27 559.9M 0 0 27 151.6M 0 152.3k 1:02:43 16:59 45:44 260.2k 27 559.9M 0 0 27 151.8M 0 152.3k 1:02:43 17:00 45:43 244.4k 27 559.9M 0 0 27 152.0M 0 152.3k 1:02:44 17:01 45:43 209.9k 27 559.9M 0 0 27 152.1M 0 152.2k 1:02:45 17:02 45:43 180.5k 27 559.9M 0 0 27 152.3M 0 152.2k 1:02:46 17:04 45:42 152.9k 27 559.9M 0 0 27 152.4M 0 152.1k 1:02:49 17:06 45:43 118.2k 27 559.9M 0 0 27 152.5M 0 152.0k 1:02:50 17:07 45:43 106.9k 27 559.9M 0 0 27 152.6M 0 152.0k 1:02:51 17:08 45:43 109.5k 27 559.9M 0 0 27 152.8M 0 152.0k 1:02:51 17:09 45:42 110.4k 27 559.9M 0 0 27 152.9M 0 151.9k 1:02:53 17:10 45:43 105.8k 27 559.9M 0 0 27 153.1M 0 151.9k 1:02:54 17:12 45:42 116.4k 27 559.9M 0 0 27 153.3M 0 151.9k 1:02:54 17:13 45:41 123.3k 27 559.9M 0 0 27 153.5M 0 151.8k 1:02:55 17:14 45:41 127.5k 27 559.9M 0 0 27 153.6M 0 151.9k 1:02:55 17:16 45:39 133.0k 27 559.9M 0 0 27 153.8M 0 151.9k 1:02:54 17:17 45:37 147.6k 27 559.9M 0 0 27 154.0M 0 151.9k 1:02:54 17:18 45:36 151.2k 27 559.9M 0 0 27 154.2M 0 151.9k 1:02:54 17:19 45:35 154.6k 27 559.9M 0 0 27 154.4M 0 151.9k 1:02:54 17:20 45:34 155.3k 27 559.9M 0 0 27 154.6M 0 151.9k 1:02:54 17:22 45:32 155.3k 27 559.9M 0 0 27 154.8M 0 151.8k 1:02:55 17:23 45:32 146.0k 27 559.9M 0 0 27 154.9M 0 151.8k 1:02:56 17:24 45:32 142.1k 27 559.9M 0 0 27 155.1M 0 151.8k 1:02:56 17:26 45:30 139.7k 27 559.9M 0 0 27 155.3M 0 151.8k 1:02:55 17:27 45:28 145.2k 27 559.9M 0 0 27 155.5M 0 151.8k 1:02:55 17:28 45:27 143.2k 27 559.9M 0 0 27 155.6M 0 151.9k 1:02:55 17:29 45:26 154.0k 27 559.9M 0 0 27 155.9M 0 151.9k 1:02:53 17:30 45:23 168.8k 27 559.9M 0 0 27 156.1M 0 152.0k 1:02:51 17:31 45:20 185.5k 27 559.9M 0 0 27 156.5M 0 152.1k 1:02:48 17:33 45:15 199.2k 27 559.9M 0 0 27 156.7M 0 152.2k 1:02:46 17:34 45:12 216.0k 28 559.9M 0 0 28 156.9M 0 152.1k 1:02:47 17:35 45:12 198.6k 28 559.9M 0 0 28 157.1M 0 152.1k 1:02:47 17:37 45:10 191.2k 28 559.9M 0 0 28 157.3M 0 152.2k 1:02:46 17:38 45:08 184.7k 28 559.9M 0 0 28 157.5M 0 152.2k 1:02:46 17:39 45:07 166.5k 28 559.9M 0 0 28 157.6M 0 152.1k 1:02:48 17:40 45:08 142.6k 28 559.9M 0 0 28 157.8M 0 152.1k 1:02:47 17:41 45:06 153.2k 28 559.9M 0 0 28 158.0M 0 152.2k 1:02:46 17:42 45:04 158.3k 28 559.9M 0 0 28 158.1M 0 152.2k 1:02:46 17:43 45:03 159.0k 28 559.9M 0 0 28 158.3M 0 152.2k 1:02:45 17:44 45:01 162.7k 28 559.9M 0 0 28 158.5M 0 152.3k 1:02:44 17:46 44:58 178.5k 28 559.9M 0 0 28 158.8M 0 152.3k 1:02:43 17:47 44:56 185.4k 28 559.9M 0 0 28 159.0M 0 152.4k 1:02:41 17:48 44:53 195.5k 28 559.9M 0 0 28 159.3M 0 152.5k 1:02:39 17:49 44:50 206.2k 28 559.9M 0 0 28 159.5M 0 152.5k 1:02:38 17:50 44:48 204.7k 28 559.9M 0 0 28 159.6M 0 152.5k 1:02:39 17:51 44:48 192.0k 28 559.9M 0 0 28 159.7M 0 152.4k 1:02:40 17:52 44:48 173.8k 28 559.9M 0 0 28 159.8M 0 152.4k 1:02:42 17:54 44:48 145.6k 28 559.9M 0 0 28 160.0M 0 152.3k 1:02:42 17:55 44:47 123.0k 28 559.9M 0 0 28 160.1M 0 152.3k 1:02:42 17:56 44:46 120.4k 28 559.9M 0 0 28 160.3M 0 152.4k 1:02:42 17:57 44:45 135.2k 28 559.9M 0 0 28 160.5M 0 152.3k 1:02:42 17:58 44:44 136.6k 28 559.9M 0 0 28 160.6M 0 152.4k 1:02:42 17:59 44:43 149.4k 28 559.9M 0 0 28 160.8M 0 152.3k 1:02:42 18:00 44:42 153.5k 28 559.9M 0 0 28 161.0M 0 152.4k 1:02:42 18:02 44:40 154.3k 28 559.9M 0 0 28 161.3M 0 152.4k 1:02:41 18:03 44:38 158.6k 28 559.9M 0 0 28 161.5M 0 152.5k 1:02:39 18:04 44:35 176.4k 28 559.9M 0 0 28 161.7M 0 152.5k 1:02:38 18:05 44:33 180.1k 28 559.9M 0 0 28 161.9M 0 152.5k 1:02:40 18:07 44:33 170.1k 28 559.9M 0 0 28 162.0M 0 152.4k 1:02:41 18:08 44:33 164.1k 28 559.9M 0 0 28 162.2M 0 152.4k 1:02:40 18:09 44:31 154.6k 29 559.9M 0 0 29 162.4M 0 152.5k 1:02:40 18:10 44:30 147.6k 29 559.9M 0 0 29 162.6M 0 152.5k 1:02:39 18:11 44:28 149.1k 29 559.9M 0 0 29 162.8M 0 152.5k 1:02:39 18:12 44:27 161.1k 29 559.9M 0 0 29 163.0M 0 152.5k 1:02:38 18:13 44:25 172.7k 29 559.9M 0 0 29 163.1M 0 152.5k 1:02:37 18:15 44:22 177.5k 29 559.9M 0 0 29 163.3M 0 152.5k 1:02:38 18:16 44:22 168.2k 29 559.9M 0 0 29 163.5M 0 152.6k 1:02:37 18:17 44:20 168.5k 29 559.9M 0 0 29 163.8M 0 152.7k 1:02:33 18:18 44:15 195.0k 29 559.9M 0 0 29 164.1M 0 152.8k 1:02:30 18:19 44:11 211.9k 29 559.9M 0 0 29 164.4M 0 152.9k 1:02:29 18:20 44:09 217.1k 29 559.9M 0 0 29 164.6M 0 153.0k 1:02:27 18:22 44:05 231.4k 29 559.9M 0 0 29 164.8M 0 153.0k 1:02:27 18:23 44:04 229.5k 29 559.9M 0 0 29 165.0M 0 153.0k 1:02:27 18:24 44:03 201.6k 29 559.9M 0 0 29 165.2M 0 153.0k 1:02:27 18:25 44:02 177.2k 29 559.9M 0 0 29 165.4M 0 153.0k 1:02:26 18:26 44:00 171.9k 29 559.9M 0 0 29 165.6M 0 153.0k 1:02:26 18:27 43:59 165.9k 29 559.9M 0 0 29 165.8M 0 153.0k 1:02:26 18:29 43:57 155.1k 29 559.9M 0 0 29 166.0M 0 152.9k 1:02:28 18:31 43:57 144.0k 29 559.9M 0 0 29 166.1M 0 152.9k 1:02:28 18:32 43:56 145.6k 29 559.9M 0 0 29 166.3M 0 152.9k 1:02:28 18:33 43:55 141.1k 29 559.9M 0 0 29 166.5M 0 152.9k 1:02:29 18:34 43:55 131.0k 29 559.9M 0 0 29 166.6M 0 152.9k 1:02:29 18:36 43:53 133.7k 29 559.9M 0 0 29 166.8M 0 152.9k 1:02:29 18:37 43:52 147.1k 29 559.9M 0 0 29 167.0M 0 152.9k 1:02:29 18:38 43:51 146.1k 29 559.9M 0 0 29 167.3M 0 152.9k 1:02:28 18:39 43:49 156.6k 29 559.9M 0 0 29 167.5M 0 152.9k 1:02:28 18:41 43:47 162.3k 29 559.9M 0 0 29 167.6M 0 152.9k 1:02:29 18:42 43:47 156.6k 29 559.9M 0 0 29 167.7M 0 152.9k 1:02:29 18:43 43:46 149.5k 29 559.9M 0 0 29 167.8M 0 152.9k 1:02:30 18:44 43:46 145.8k 30 559.9M 0 0 30 168.0M 0 152.9k 1:02:29 18:45 43:44 139.6k 30 559.9M 0 0 30 168.2M 0 152.9k 1:02:29 18:46 43:43 146.4k 30 559.9M 0 0 30 168.4M 0 152.9k 1:02:29 18:47 43:42 152.9k 30 559.9M 0 0 30 168.6M 0 152.9k 1:02:28 18:48 43:40 160.8k 30 559.9M 0 0 30 168.7M 0 152.9k 1:02:29 18:49 43:40 156.9k 30 559.9M 0 0 30 168.8M 0 152.8k 1:02:30 18:51 43:39 145.6k 30 559.9M 0 0 30 169.0M 0 152.9k 1:02:30 18:52 43:38 142.5k 30 559.9M 0 0 30 169.2M 0 152.8k 1:02:31 18:53 43:38 137.5k 30 559.9M 0 0 30 169.3M 0 152.7k 1:02:32 18:55 43:37 123.4k 30 559.9M 0 0 30 169.5M 0 152.7k 1:02:34 18:56 43:38 120.8k 30 559.9M 0 0 30 169.6M 0 152.7k 1:02:34 18:57 43:37 126.6k 30 559.9M 0 0 30 169.8M 0 152.7k 1:02:35 18:59 43:36 120.2k 30 559.9M 0 0 30 170.0M 0 152.6k 1:02:36 19:00 43:36 117.8k 30 559.9M 0 0 30 170.1M 0 152.6k 1:02:37 19:01 43:36 121.1k 30 559.9M 0 0 30 170.3M 0 152.5k 1:02:37 19:02 43:35 126.9k 30 559.9M 0 0 30 170.5M 0 152.6k 1:02:37 19:04 43:33 127.9k 30 559.9M 0 0 30 170.6M 0 152.5k 1:02:37 19:05 43:32 133.2k 30 559.9M 0 0 30 170.8M 0 152.5k 1:02:38 19:06 43:32 132.0k 30 559.9M 0 0 30 170.9M 0 152.5k 1:02:40 19:07 43:33 130.1k 30 559.9M 0 0 30 171.1M 0 152.4k 1:02:40 19:09 43:31 133.8k 30 559.9M 0 0 30 171.3M 0 152.5k 1:02:39 19:10 43:29 138.5k 30 559.9M 0 0 30 171.5M 0 152.5k 1:02:39 19:11 43:28 141.5k 30 559.9M 0 0 30 171.7M 0 152.5k 1:02:37 19:12 43:25 160.7k 30 559.9M 0 0 30 172.0M 0 152.6k 1:02:36 19:13 43:23 177.6k 30 559.9M 0 0 30 172.1M 0 152.6k 1:02:37 19:15 43:22 178.0k 30 559.9M 0 0 30 172.3M 0 152.5k 1:02:38 19:16 43:22 163.2k 30 559.9M 0 0 30 172.4M 0 152.5k 1:02:39 19:17 43:22 153.8k 30 559.9M 0 0 30 172.6M 0 152.5k 1:02:38 19:18 43:20 148.4k 30 559.9M 0 0 30 172.8M 0 152.5k 1:02:38 19:19 43:19 143.4k 30 559.9M 0 0 30 173.0M 0 152.5k 1:02:37 19:20 43:17 146.4k 30 559.9M 0 0 30 173.1M 0 152.4k 1:02:40 19:22 43:18 134.6k 30 559.9M 0 0 30 173.2M 0 152.4k 1:02:41 19:23 43:18 131.5k 30 559.9M 0 0 30 173.4M 0 152.4k 1:02:41 19:25 43:16 127.1k 31 559.9M 0 0 31 173.6M 0 152.4k 1:02:41 19:26 43:15 127.5k 31 559.9M 0 0 31 173.8M 0 152.4k 1:02:41 19:27 43:14 127.7k 31 559.9M 0 0 31 174.0M 0 152.4k 1:02:40 19:28 43:12 151.9k 31 559.9M 0 0 31 174.1M 0 152.4k 1:02:40 19:29 43:11 160.5k 31 559.9M 0 0 31 174.3M 0 152.5k 1:02:39 19:30 43:09 169.1k 31 559.9M 0 0 31 174.5M 0 152.5k 1:02:39 19:31 43:08 167.3k 31 559.9M 0 0 31 174.6M 0 152.4k 1:02:40 19:33 43:07 155.8k 31 559.9M 0 0 31 174.8M 0 152.4k 1:02:41 19:34 43:07 142.5k 31 559.9M 0 0 31 174.9M 0 152.4k 1:02:42 19:35 43:07 137.4k 31 559.9M 0 0 31 175.0M 0 152.3k 1:02:43 19:36 43:07 124.0k 31 559.9M 0 0 31 175.2M 0 152.3k 1:02:43 19:37 43:06 121.4k 31 559.9M 0 0 31 175.4M 0 152.4k 1:02:42 19:38 43:04 136.5k 31 559.9M 0 0 31 175.6M 0 152.4k 1:02:42 19:39 43:03 150.3k 31 559.9M 0 0 31 175.8M 0 152.3k 1:02:42 19:41 43:01 150.5k 31 559.9M 0 0 31 176.0M 0 152.3k 1:02:43 19:42 43:01 153.4k 31 559.9M 0 0 31 176.1M 0 152.3k 1:02:44 19:44 43:00 145.6k 31 559.9M 0 0 31 176.3M 0 152.2k 1:02:45 19:45 43:00 135.6k 31 559.9M 0 0 31 176.5M 0 152.2k 1:02:45 19:46 42:59 127.2k 31 559.9M 0 0 31 176.6M 0 152.2k 1:02:47 19:48 42:59 121.6k 31 559.9M 0 0 31 176.7M 0 152.1k 1:02:47 19:49 42:58 117.9k 31 559.9M 0 0 31 176.8M 0 152.1k 1:02:49 19:50 42:59 115.8k 31 559.9M 0 0 31 177.0M 0 152.0k 1:02:50 19:51 42:59 109.2k 31 559.9M 0 0 31 177.1M 0 152.0k 1:02:51 19:53 42:58 103.6k 31 559.9M 0 0 31 177.3M 0 152.0k 1:02:51 19:54 42:57 117.1k 31 559.9M 0 0 31 177.5M 0 152.0k 1:02:51 19:55 42:56 121.4k 31 559.9M 0 0 31 177.6M 0 151.9k 1:02:52 19:56 42:56 122.3k 31 559.9M 0 0 31 177.7M 0 151.9k 1:02:54 19:58 42:56 119.7k 31 559.9M 0 0 31 177.9M 0 151.8k 1:02:55 19:59 42:56 128.1k 31 559.9M 0 0 31 178.1M 0 151.9k 1:02:54 20:00 42:54 127.8k 31 559.9M 0 0 31 178.3M 0 151.9k 1:02:53 20:02 42:51 138.2k 31 559.9M 0 0 31 178.5M 0 151.9k 1:02:53 20:03 42:50 151.4k 31 559.9M 0 0 31 178.7M 0 152.0k 1:02:52 20:04 42:48 170.0k 31 559.9M 0 0 31 178.9M 0 152.0k 1:02:52 20:05 42:47 175.2k 31 559.9M 0 0 31 179.1M 0 152.0k 1:02:52 20:06 42:46 174.0k 32 559.9M 0 0 32 179.3M 0 152.0k 1:02:51 20:07 42:44 169.8k 32 559.9M 0 0 32 179.5M 0 152.0k 1:02:51 20:08 42:43 166.4k 32 559.9M 0 0 32 179.6M 0 152.0k 1:02:50 20:09 42:41 166.7k 32 559.9M 0 0 32 179.8M 0 152.0k 1:02:50 20:11 42:39 169.8k 32 559.9M 0 0 32 180.0M 0 152.0k 1:02:50 20:12 42:38 168.3k 32 559.9M 0 0 32 180.2M 0 152.1k 1:02:49 20:13 42:36 168.5k 32 559.9M 0 0 32 180.4M 0 152.1k 1:02:49 20:14 42:35 169.6k 32 559.9M 0 0 32 180.6M 0 152.1k 1:02:49 20:15 42:34 162.8k 32 559.9M 0 0 32 180.8M 0 152.1k 1:02:48 20:17 42:31 170.4k 32 559.9M 0 0 32 181.0M 0 152.1k 1:02:48 20:18 42:30 162.4k 32 559.9M 0 0 32 181.2M 0 152.1k 1:02:49 20:20 42:29 151.5k 32 559.9M 0 0 32 181.3M 0 152.0k 1:02:50 20:21 42:29 139.9k 32 559.9M 0 0 32 181.4M 0 151.9k 1:02:52 20:22 42:30 127.0k 32 559.9M 0 0 32 181.5M 0 151.9k 1:02:54 20:23 42:31 102.9k 32 559.9M 0 0 32 181.6M 0 151.8k 1:02:55 20:25 42:30 99.45k 32 559.9M 0 0 32 181.8M 0 151.8k 1:02:56 20:26 42:30 99.45k 32 559.9M 0 0 32 182.0M 0 151.7k 1:02:57 20:27 42:30 100.3k 32 559.9M 0 0 32 182.1M 0 151.7k 1:02:57 20:29 42:28 115.4k 32 559.9M 0 0 32 182.3M 0 151.7k 1:02:57 20:30 42:27 129.1k 32 559.9M 0 0 32 182.5M 0 151.8k 1:02:57 20:31 42:26 139.2k 32 559.9M 0 0 32 182.8M 0 151.8k 1:02:56 20:32 42:24 156.5k 32 559.9M 0 0 32 183.0M 0 151.9k 1:02:54 20:33 42:21 177.1k 32 559.9M 0 0 32 183.1M 0 151.8k 1:02:55 20:34 42:21 173.1k 32 559.9M 0 0 32 183.3M 0 151.8k 1:02:56 20:36 42:20 164.8k 32 559.9M 0 0 32 183.5M 0 151.8k 1:02:56 20:37 42:19 160.5k 32 559.9M 0 0 32 183.6M 0 151.8k 1:02:56 20:38 42:18 150.9k 32 559.9M 0 0 32 183.8M 0 151.8k 1:02:55 20:39 42:16 139.6k 32 559.9M 0 0 32 184.0M 0 151.8k 1:02:57 20:41 42:16 133.7k 32 559.9M 0 0 32 184.1M 0 151.7k 1:02:59 20:42 42:17 129.2k 32 559.9M 0 0 32 184.2M 0 151.6k 1:03:00 20:43 42:17 117.1k 32 559.9M 0 0 32 184.4M 0 151.6k 1:03:00 20:45 42:15 117.1k 32 559.9M 0 0 32 184.6M 0 151.6k 1:03:01 20:46 42:15 111.8k 33 559.9M 0 0 33 184.8M 0 151.6k 1:03:01 20:47 42:14 121.8k 33 559.9M 0 0 33 185.0M 0 151.6k 1:03:00 20:49 42:11 138.3k 33 559.9M 0 0 33 185.2M 0 151.7k 1:02:59 20:50 42:09 162.5k 33 559.9M 0 0 33 185.5M 0 151.7k 1:02:58 20:51 42:07 194.0k 33 559.9M 0 0 33 185.5M 0 151.7k 1:02:58 20:51 42:07 151.7k 33 559.9M 0 0 33 185.6M 0 151.7k 1:02:59 20:53 42:06 113.7k 33 559.9M 0 0 33 185.8M 0 151.6k 1:03:00 20:54 42:06 118.2k 33 559.9M 0 0 33 186.0M 0 151.6k 1:03:00 20:55 42:05 125.0k 33 559.9M 0 0 33 186.1M 0 151.7k 1:02:59 20:56 42:03 136.4k 33 559.9M 0 0 33 186.3M 0 151.7k 1:02:59 20:57 42:02 141.0k 33 559.9M 0 0 33 186.5M 0 151.7k 1:02:59 20:59 42:00 151.5k 33 559.9M 0 0 33 186.7M 0 151.7k 1:02:59 21:00 41:59 161.6k 33 559.9M 0 0 33 187.0M 0 151.8k 1:02:57 21:01 41:56 183.6k 33 559.9M 0 0 33 187.1M 0 151.8k 1:02:56 21:02 41:54 178.7k 33 559.9M 0 0 33 187.3M 0 151.8k 1:02:57 21:03 41:54 171.9k 33 559.9M 0 0 33 187.5M 0 151.8k 1:02:57 21:04 41:53 174.9k 33 559.9M 0 0 33 187.6M 0 151.8k 1:02:56 21:05 41:51 173.5k 33 559.9M 0 0 33 187.8M 0 151.8k 1:02:56 21:06 41:50 160.3k 33 559.9M 0 0 33 188.0M 0 151.8k 1:02:57 21:08 41:49 149.4k 33 559.9M 0 0 33 188.1M 0 151.7k 1:02:57 21:09 41:48 150.4k 33 559.9M 0 0 33 188.3M 0 151.7k 1:02:58 21:11 41:47 141.8k 33 559.9M 0 0 33 188.5M 0 151.6k 1:03:00 21:12 41:48 122.7k 33 559.9M 0 0 33 188.6M 0 151.6k 1:03:01 21:13 41:48 110.0k 33 559.9M 0 0 33 188.8M 0 151.6k 1:03:01 21:14 41:47 120.0k 33 559.9M 0 0 33 189.0M 0 151.7k 1:02:59 21:16 41:43 136.4k 33 559.9M 0 0 33 189.3M 0 151.7k 1:02:57 21:17 41:40 157.4k 33 559.9M 0 0 33 189.5M 0 151.8k 1:02:56 21:18 41:38 192.8k 33 559.9M 0 0 33 189.8M 0 151.9k 1:02:54 21:19 41:35 216.1k 33 559.9M 0 0 33 190.0M 0 151.8k 1:02:55 21:20 41:35 201.6k 33 559.9M 0 0 33 190.1M 0 151.8k 1:02:56 21:21 41:35 183.3k 33 559.9M 0 0 33 190.3M 0 151.8k 1:02:55 21:23 41:32 170.1k 34 559.9M 0 0 34 190.5M 0 151.8k 1:02:55 21:24 41:31 154.4k 34 559.9M 0 0 34 190.6M 0 151.8k 1:02:55 21:25 41:30 146.7k 34 559.9M 0 0 34 190.8M 0 151.8k 1:02:55 21:26 41:29 151.3k 34 559.9M 0 0 34 191.0M 0 151.8k 1:02:55 21:27 41:28 152.0k 34 559.9M 0 0 34 191.1M 0 151.8k 1:02:56 21:29 41:27 147.3k 34 559.9M 0 0 34 191.3M 0 151.8k 1:02:56 21:30 41:26 142.7k 34 559.9M 0 0 34 191.5M 0 151.8k 1:02:56 21:31 41:25 138.6k 34 559.9M 0 0 34 191.7M 0 151.8k 1:02:55 21:32 41:23 149.6k 34 559.9M 0 0 34 191.9M 0 151.8k 1:02:55 21:34 41:21 155.6k 34 559.9M 0 0 34 192.1M 0 151.9k 1:02:54 21:35 41:19 162.1k 34 559.9M 0 0 34 192.3M 0 151.8k 1:02:55 21:36 41:19 164.2k 34 559.9M 0 0 34 192.5M 0 151.9k 1:02:54 21:37 41:17 174.5k 34 559.9M 0 0 34 192.8M 0 151.9k 1:02:53 21:39 41:14 166.5k 34 559.9M 0 0 34 192.9M 0 151.8k 1:02:55 21:40 41:15 151.0k 34 559.9M 0 0 34 193.0M 0 151.8k 1:02:57 21:42 41:15 133.3k 34 559.9M 0 0 34 193.1M 0 151.7k 1:02:58 21:43 41:15 128.2k 34 559.9M 0 0 34 193.3M 0 151.7k 1:02:58 21:44 41:14 120.7k 34 559.9M 0 0 34 193.5M 0 151.7k 1:02:58 21:45 41:13 116.9k 34 559.9M 0 0 34 193.7M 0 151.7k 1:02:58 21:47 41:11 131.2k 34 559.9M 0 0 34 193.9M 0 151.7k 1:02:57 21:48 41:09 149.8k 34 559.9M 0 0 34 194.1M 0 151.7k 1:02:57 21:49 41:08 156.2k 34 559.9M 0 0 34 194.2M 0 151.7k 1:02:58 21:50 41:08 148.8k 34 559.9M 0 0 34 194.3M 0 151.7k 1:02:59 21:51 41:08 140.0k 34 559.9M 0 0 34 194.5M 0 151.7k 1:02:59 21:52 41:07 134.7k 34 559.9M 0 0 34 194.6M 0 151.6k 1:03:00 21:54 41:06 128.7k 34 559.9M 0 0 34 194.8M 0 151.6k 1:03:00 21:55 41:05 123.2k 34 559.9M 0 0 34 194.9M 0 151.6k 1:03:01 21:56 41:05 123.3k 34 559.9M 0 0 34 195.1M 0 151.6k 1:03:01 21:57 41:04 136.6k 34 559.9M 0 0 34 195.2M 0 151.6k 1:03:01 21:58 41:03 136.0k 34 559.9M 0 0 34 195.4M 0 151.6k 1:03:02 21:59 41:03 135.4k 34 559.9M 0 0 34 195.6M 0 151.6k 1:03:01 22:01 41:00 142.1k 34 559.9M 0 0 34 195.7M 0 151.6k 1:03:02 22:02 41:00 144.4k 34 559.9M 0 0 34 195.9M 0 151.5k 1:03:03 22:03 41:00 133.3k 35 559.9M 0 0 35 196.0M 0 151.5k 1:03:04 22:05 40:59 126.6k 35 559.9M 0 0 35 196.2M 0 151.5k 1:03:04 22:06 40:58 130.7k 35 559.9M 0 0 35 196.4M 0 151.5k 1:03:03 22:07 40:56 134.6k 35 559.9M 0 0 35 196.6M 0 151.5k 1:03:04 22:08 40:56 136.8k 35 559.9M 0 0 35 196.7M 0 151.4k 1:03:05 22:10 40:55 129.4k 35 559.9M 0 0 35 196.8M 0 151.4k 1:03:07 22:11 40:56 132.0k 35 559.9M 0 0 35 197.0M 0 151.3k 1:03:07 22:12 40:55 125.2k 35 559.9M 0 0 35 197.1M 0 151.3k 1:03:08 22:13 40:55 115.6k 35 559.9M 0 0 35 197.2M 0 151.3k 1:03:09 22:14 40:55 104.1k 35 559.9M 0 0 35 197.3M 0 151.2k 1:03:11 22:16 40:55 101.7k 35 559.9M 0 0 35 197.5M 0 151.2k 1:03:12 22:17 40:55 103.5k 35 559.9M 0 0 35 197.6M 0 151.2k 1:03:12 22:18 40:54 111.5k 35 559.9M 0 0 35 197.8M 0 151.1k 1:03:12 22:19 40:53 110.6k 35 559.9M 0 0 35 197.9M 0 151.1k 1:03:13 22:20 40:53 117.0k 35 559.9M 0 0 35 198.0M 0 151.1k 1:03:14 22:21 40:53 127.6k 35 559.9M 0 0 35 198.1M 0 151.1k 1:03:15 22:23 40:52 127.3k 35 559.9M 0 0 35 198.3M 0 151.0k 1:03:15 22:24 40:51 121.9k 35 559.9M 0 0 35 198.5M 0 151.0k 1:03:15 22:25 40:50 129.8k 35 559.9M 0 0 35 198.7M 0 151.1k 1:03:14 22:26 40:48 138.5k 35 559.9M 0 0 35 199.0M 0 151.1k 1:03:13 22:28 40:45 155.8k 35 559.9M 0 0 35 199.1M 0 151.1k 1:03:13 22:29 40:44 168.8k 35 559.9M 0 0 35 199.4M 0 151.2k 1:03:11 22:30 40:41 185.4k 35 559.9M 0 0 35 199.6M 0 151.2k 1:03:11 22:31 40:40 187.3k 35 559.9M 0 0 35 199.8M 0 151.2k 1:03:10 22:32 40:38 189.7k 35 559.9M 0 0 35 200.0M 0 151.2k 1:03:11 22:33 40:38 174.9k 35 559.9M 0 0 35 200.1M 0 151.2k 1:03:11 22:35 40:36 167.3k 35 559.9M 0 0 35 200.3M 0 151.2k 1:03:12 22:36 40:36 148.3k 35 559.9M 0 0 35 200.5M 0 151.2k 1:03:12 22:37 40:35 141.5k 35 559.9M 0 0 35 200.6M 0 151.1k 1:03:13 22:39 40:34 131.2k 35 559.9M 0 0 35 200.8M 0 151.1k 1:03:12 22:40 40:32 135.5k 35 559.9M 0 0 35 201.0M 0 151.1k 1:03:13 22:41 40:32 129.3k 35 559.9M 0 0 35 201.1M 0 151.1k 1:03:13 22:42 40:31 138.6k 35 559.9M 0 0 35 201.3M 0 151.1k 1:03:12 22:43 40:29 144.8k 36 559.9M 0 0 36 201.6M 0 151.2k 1:03:11 22:45 40:26 164.0k 36 559.9M 0 0 36 201.8M 0 151.2k 1:03:10 22:46 40:24 179.0k 36 559.9M 0 0 36 202.1M 0 151.3k 1:03:09 22:47 40:22 192.0k 36 559.9M 0 0 36 202.3M 0 151.2k 1:03:10 22:49 40:21 178.8k 36 559.9M 0 0 36 202.5M 0 151.2k 1:03:10 22:50 40:20 170.7k 36 559.9M 0 0 36 202.6M 0 151.2k 1:03:10 22:52 40:18 157.8k 36 559.9M 0 0 36 202.8M 0 151.2k 1:03:11 22:53 40:18 139.3k 36 559.9M 0 0 36 203.0M 0 151.2k 1:03:12 22:54 40:18 129.1k 36 559.9M 0 0 36 203.1M 0 151.2k 1:03:11 22:55 40:16 140.9k 36 559.9M 0 0 36 203.3M 0 151.2k 1:03:10 22:56 40:14 147.9k 36 559.9M 0 0 36 203.5M 0 151.2k 1:03:10 22:57 40:13 157.1k 36 559.9M 0 0 36 203.7M 0 151.2k 1:03:10 22:59 40:11 162.4k 36 559.9M 0 0 36 203.9M 0 151.2k 1:03:10 23:00 40:10 164.3k 36 559.9M 0 0 36 204.1M 0 151.2k 1:03:11 23:01 40:10 152.4k 36 559.9M 0 0 36 204.3M 0 151.2k 1:03:11 23:03 40:08 144.0k 36 559.9M 0 0 36 204.5M 0 151.2k 1:03:12 23:04 40:08 136.6k 36 559.9M 0 0 36 204.6M 0 151.2k 1:03:12 23:06 40:06 135.5k 36 559.9M 0 0 36 204.8M 0 151.1k 1:03:13 23:07 40:06 129.6k 36 559.9M 0 0 36 204.9M 0 151.1k 1:03:14 23:08 40:06 124.9k 36 559.9M 0 0 36 205.1M 0 151.1k 1:03:13 23:09 40:04 131.3k 36 559.9M 0 0 36 205.3M 0 151.2k 1:03:12 23:10 40:02 148.2k 36 559.9M 0 0 36 205.5M 0 151.2k 1:03:11 23:11 40:00 160.3k 36 559.9M 0 0 36 205.8M 0 151.2k 1:03:10 23:12 39:58 183.9k 36 559.9M 0 0 36 206.0M 0 151.3k 1:03:08 23:14 39:54 209.2k 36 559.9M 0 0 36 206.3M 0 151.4k 1:03:07 23:15 39:52 220.5k 36 559.9M 0 0 36 206.5M 0 151.4k 1:03:06 23:16 39:50 208.8k 36 559.9M 0 0 36 206.6M 0 151.4k 1:03:06 23:17 39:49 203.9k 36 559.9M 0 0 36 206.8M 0 151.4k 1:03:06 23:18 39:48 190.4k 36 559.9M 0 0 36 207.0M 0 151.4k 1:03:06 23:19 39:47 169.8k 36 559.9M 0 0 36 207.1M 0 151.4k 1:03:07 23:21 39:46 150.3k 37 559.9M 0 0 37 207.3M 0 151.4k 1:03:06 23:22 39:44 150.4k 37 559.9M 0 0 37 207.5M 0 151.4k 1:03:06 23:23 39:43 151.5k 37 559.9M 0 0 37 207.7M 0 151.4k 1:03:06 23:24 39:42 148.7k 37 559.9M 0 0 37 207.9M 0 151.4k 1:03:06 23:26 39:40 150.3k 37 559.9M 0 0 37 208.0M 0 151.3k 1:03:07 23:27 39:40 147.8k 37 559.9M 0 0 37 208.2M 0 151.3k 1:03:07 23:28 39:39 142.6k 37 559.9M 0 0 37 208.4M 0 151.3k 1:03:07 23:29 39:38 139.1k 37 559.9M 0 0 37 208.6M 0 151.3k 1:03:07 23:31 39:36 139.1k 37 559.9M 0 0 37 208.8M 0 151.4k 1:03:07 23:32 39:35 149.2k 37 559.9M 0 0 37 209.0M 0 151.4k 1:03:07 23:33 39:34 156.1k 37 559.9M 0 0 37 209.1M 0 151.3k 1:03:07 23:34 39:33 149.4k 37 559.9M 0 0 37 209.3M 0 151.3k 1:03:08 23:36 39:32 144.4k 37 559.9M 0 0 37 209.5M 0 151.3k 1:03:08 23:37 39:31 143.0k 37 559.9M 0 0 37 209.7M 0 151.4k 1:03:07 23:38 39:29 150.8k 37 559.9M 0 0 37 210.0M 0 151.4k 1:03:05 23:39 39:26 162.1k 37 559.9M 0 0 37 210.1M 0 151.4k 1:03:06 23:41 39:25 161.2k 37 559.9M 0 0 37 210.3M 0 151.4k 1:03:07 23:42 39:25 161.6k 37 559.9M 0 0 37 210.5M 0 151.4k 1:03:06 23:43 39:23 168.2k 37 559.9M 0 0 37 210.6M 0 151.4k 1:03:06 23:44 39:22 157.8k 37 559.9M 0 0 37 210.9M 0 151.4k 1:03:05 23:45 39:20 158.9k 37 559.9M 0 0 37 211.2M 0 151.5k 1:03:02 23:47 39:15 189.6k 37 559.9M 0 0 37 211.5M 0 151.6k 1:03:01 23:48 39:13 204.8k 37 559.9M 0 0 37 211.6M 0 151.6k 1:03:01 23:49 39:12 203.4k 37 559.9M 0 0 37 211.9M 0 151.6k 1:03:00 23:50 39:10 212.2k 37 559.9M 0 0 37 212.1M 0 151.7k 1:02:59 23:51 39:08 206.7k 37 559.9M 0 0 37 212.3M 0 151.7k 1:02:59 23:53 39:06 185.0k 37 559.9M 0 0 37 212.5M 0 151.7k 1:02:58 23:54 39:04 181.0k 37 559.9M 0 0 37 212.7M 0 151.7k 1:02:58 23:55 39:03 177.1k 38 559.9M 0 0 38 212.9M 0 151.7k 1:02:59 23:57 39:02 161.2k 38 559.9M 0 0 38 213.1M 0 151.7k 1:02:58 23:58 39:00 162.1k 38 559.9M 0 0 38 213.3M 0 151.7k 1:02:57 23:59 38:58 164.6k 38 559.9M 0 0 38 213.6M 0 151.8k 1:02:56 24:00 38:56 171.0k 38 559.9M 0 0 38 213.8M 0 151.9k 1:02:54 24:01 38:53 188.4k 38 559.9M 0 0 38 214.1M 0 151.9k 1:02:53 24:02 38:51 210.8k 38 559.9M 0 0 38 214.3M 0 151.9k 1:02:52 24:03 38:49 207.7k 38 559.9M 0 0 38 214.5M 0 151.9k 1:02:52 24:05 38:47 205.3k 38 559.9M 0 0 38 214.6M 0 151.9k 1:02:53 24:06 38:47 187.0k 38 559.9M 0 0 38 214.8M 0 151.9k 1:02:52 24:07 38:45 172.5k 38 559.9M 0 0 38 215.0M 0 152.0k 1:02:51 24:08 38:43 171.2k 38 559.9M 0 0 38 215.3M 0 152.1k 1:02:50 24:09 38:41 179.1k 38 559.9M 0 0 38 215.6M 0 152.1k 1:02:47 24:10 38:37 203.6k 38 559.9M 0 0 38 215.8M 0 152.2k 1:02:47 24:11 38:36 212.2k 38 559.9M 0 0 38 215.9M 0 152.1k 1:02:48 24:13 38:35 199.1k 38 559.9M 0 0 38 216.1M 0 152.1k 1:02:49 24:14 38:35 173.6k 38 559.9M 0 0 38 216.2M 0 152.1k 1:02:49 24:15 38:34 153.6k 38 559.9M 0 0 38 216.4M 0 152.1k 1:02:49 24:16 38:33 136.3k 38 559.9M 0 0 38 216.6M 0 152.1k 1:02:47 24:17 38:30 149.1k 38 559.9M 0 0 38 216.8M 0 152.2k 1:02:47 24:18 38:29 163.1k 38 559.9M 0 0 38 217.1M 0 152.2k 1:02:46 24:20 38:26 185.3k 38 559.9M 0 0 38 217.3M 0 152.2k 1:02:45 24:21 38:24 196.5k 38 559.9M 0 0 38 217.4M 0 152.2k 1:02:46 24:22 38:24 183.4k 38 559.9M 0 0 38 217.6M 0 152.2k 1:02:45 24:23 38:22 175.4k 38 559.9M 0 0 38 217.8M 0 152.2k 1:02:46 24:25 38:21 157.2k 38 559.9M 0 0 38 218.0M 0 152.1k 1:02:48 24:26 38:22 133.8k 38 559.9M 0 0 38 218.1M 0 152.1k 1:02:48 24:28 38:20 129.9k 38 559.9M 0 0 38 218.3M 0 152.1k 1:02:48 24:29 38:19 135.4k 39 559.9M 0 0 39 218.5M 0 152.1k 1:02:47 24:30 38:17 130.5k 39 559.9M 0 0 39 218.7M 0 152.2k 1:02:47 24:31 38:16 145.2k 39 559.9M 0 0 39 218.9M 0 152.2k 1:02:47 24:32 38:15 157.9k 39 559.9M 0 0 39 219.1M 0 152.1k 1:02:47 24:34 38:13 156.4k 39 559.9M 0 0 39 219.3M 0 152.1k 1:02:48 24:35 38:13 152.3k 39 559.9M 0 0 39 219.4M 0 152.1k 1:02:49 24:36 38:13 139.7k 39 559.9M 0 0 39 219.6M 0 152.1k 1:02:49 24:38 38:11 133.0k 39 559.9M 0 0 39 219.7M 0 152.0k 1:02:50 24:39 38:11 125.3k 39 559.9M 0 0 39 219.9M 0 152.0k 1:02:50 24:40 38:10 128.6k 39 559.9M 0 0 39 220.1M 0 152.0k 1:02:50 24:42 38:08 133.0k 39 559.9M 0 0 39 220.3M 0 152.0k 1:02:51 24:43 38:08 135.1k 39 559.9M 0 0 39 220.5M 0 152.0k 1:02:51 24:44 38:07 135.2k 39 559.9M 0 0 39 220.7M 0 152.1k 1:02:50 24:46 38:04 155.5k 39 559.9M 0 0 39 221.0M 0 152.1k 1:02:47 24:47 38:00 175.5k 39 559.9M 0 0 39 221.3M 0 152.2k 1:02:46 24:48 37:58 186.8k 39 559.9M 0 0 39 221.5M 0 152.3k 1:02:45 24:49 37:56 213.2k 39 559.9M 0 0 39 221.8M 0 152.3k 1:02:42 24:50 37:52 237.3k 39 559.9M 0 0 39 222.1M 0 152.4k 1:02:41 24:51 37:50 242.7k 39 559.9M 0 0 39 222.3M 0 152.5k 1:02:40 24:53 37:47 234.8k 39 559.9M 0 0 39 222.6M 0 152.5k 1:02:38 24:54 37:44 242.6k 39 559.9M 0 0 39 222.8M 0 152.6k 1:02:37 24:55 37:42 236.8k 39 559.9M 0 0 39 223.0M 0 152.6k 1:02:37 24:56 37:41 210.4k 39 559.9M 0 0 39 223.1M 0 152.5k 1:02:38 24:57 37:41 185.6k 39 559.9M 0 0 39 223.3M 0 152.5k 1:02:38 24:59 37:39 168.5k 39 559.9M 0 0 39 223.5M 0 152.5k 1:02:39 25:00 37:39 141.8k 39 559.9M 0 0 39 223.6M 0 152.4k 1:02:40 25:01 37:39 120.5k 39 559.9M 0 0 39 223.7M 0 152.4k 1:02:40 25:02 37:38 117.2k 40 559.9M 0 0 40 224.0M 0 152.5k 1:02:40 25:04 37:36 134.5k 40 559.9M 0 0 40 224.2M 0 152.5k 1:02:39 25:05 37:34 141.7k 40 559.9M 0 0 40 224.4M 0 152.5k 1:02:39 25:06 37:33 153.0k 40 559.9M 0 0 40 224.5M 0 152.4k 1:02:40 25:07 37:33 154.2k 40 559.9M 0 0 40 224.6M 0 152.4k 1:02:41 25:09 37:32 147.6k 40 559.9M 0 0 40 224.8M 0 152.4k 1:02:41 25:10 37:31 134.3k 40 559.9M 0 0 40 225.0M 0 152.4k 1:02:42 25:11 37:31 125.7k 40 559.9M 0 0 40 225.1M 0 152.4k 1:02:42 25:12 37:30 123.9k 40 559.9M 0 0 40 225.3M 0 152.4k 1:02:41 25:13 37:28 137.9k 40 559.9M 0 0 40 225.6M 0 152.4k 1:02:40 25:15 37:25 159.6k 40 559.9M 0 0 40 225.8M 0 152.5k 1:02:39 25:16 37:23 171.3k 40 559.9M 0 0 40 226.0M 0 152.4k 1:02:40 25:18 37:22 169.3k 40 559.9M 0 0 40 226.2M 0 152.4k 1:02:40 25:19 37:21 172.6k 40 559.9M 0 0 40 226.4M 0 152.5k 1:02:40 25:20 37:20 166.9k 40 559.9M 0 0 40 226.6M 0 152.5k 1:02:39 25:21 37:18 159.8k 40 559.9M 0 0 40 226.8M 0 152.5k 1:02:39 25:22 37:17 152.6k 40 559.9M 0 0 40 227.0M 0 152.5k 1:02:39 25:24 37:15 166.7k 40 559.9M 0 0 40 227.3M 0 152.5k 1:02:37 25:25 37:12 175.4k 40 559.9M 0 0 40 227.5M 0 152.5k 1:02:38 25:26 37:12 173.6k 40 559.9M 0 0 40 227.6M 0 152.6k 1:02:37 25:27 37:10 176.5k 40 559.9M 0 0 40 227.8M 0 152.6k 1:02:37 25:28 37:09 177.8k 40 559.9M 0 0 40 228.1M 0 152.6k 1:02:36 25:30 37:06 178.5k 40 559.9M 0 0 40 228.3M 0 152.7k 1:02:34 25:31 37:03 185.3k 40 559.9M 0 0 40 228.6M 0 152.8k 1:02:32 25:32 37:00 211.8k 40 559.9M 0 0 40 228.9M 0 152.8k 1:02:31 25:33 36:58 220.0k 40 559.9M 0 0 40 229.1M 0 152.8k 1:02:30 25:34 36:56 224.9k 40 559.9M 0 0 40 229.3M 0 152.9k 1:02:29 25:35 36:54 228.0k 41 559.9M 0 0 41 229.6M 0 152.9k 1:02:29 25:37 36:52 213.7k 41 559.9M 0 0 41 229.7M 0 152.9k 1:02:29 25:38 36:51 182.5k 41 559.9M 0 0 41 229.9M 0 152.9k 1:02:29 25:39 36:50 173.5k 41 559.9M 0 0 41 230.1M 0 152.9k 1:02:28 25:40 36:48 178.8k 41 559.9M 0 0 41 230.3M 0 152.9k 1:02:28 25:41 36:47 167.7k 41 559.9M 0 0 41 230.5M 0 152.9k 1:02:28 25:43 36:45 157.3k 41 559.9M 0 0 41 230.7M 0 152.9k 1:02:28 25:44 36:44 164.9k 41 559.9M 0 0 41 231.0M 0 153.0k 1:02:27 25:45 36:42 167.3k 41 559.9M 0 0 41 231.1M 0 152.9k 1:02:28 25:47 36:41 155.1k 41 559.9M 0 0 41 231.4M 0 153.0k 1:02:26 25:48 36:38 165.7k 41 559.9M 0 0 41 231.6M 0 153.0k 1:02:25 25:49 36:36 180.8k 41 559.9M 0 0 41 231.8M 0 153.1k 1:02:25 25:50 36:35 186.6k 41 559.9M 0 0 41 232.0M 0 153.0k 1:02:25 25:52 36:33 174.5k 41 559.9M 0 0 41 232.2M 0 153.0k 1:02:25 25:53 36:32 177.6k 41 559.9M 0 0 41 232.5M 0 153.1k 1:02:24 25:54 36:30 173.5k 41 559.9M 0 0 41 232.7M 0 153.1k 1:02:24 25:56 36:28 170.5k 41 559.9M 0 0 41 232.9M 0 153.1k 1:02:24 25:57 36:27 163.5k 41 559.9M 0 0 41 233.1M 0 153.1k 1:02:24 25:58 36:26 167.0k 41 559.9M 0 0 41 233.2M 0 153.1k 1:02:25 25:59 36:26 159.1k 41 559.9M 0 0 41 233.4M 0 153.1k 1:02:24 26:01 36:23 154.2k 41 559.9M 0 0 41 233.5M 0 153.1k 1:02:25 26:02 36:23 139.4k 41 559.9M 0 0 41 233.7M 0 153.0k 1:02:25 26:03 36:22 138.5k 41 559.9M 0 0 41 233.9M 0 153.0k 1:02:25 26:04 36:21 136.5k 41 559.9M 0 0 41 233.9M 0 153.0k 1:02:25 26:04 36:21 153.0k 41 559.9M 0 0 41 234.1M 0 153.1k 1:02:24 26:06 36:18 202.2k 41 559.9M 0 0 41 234.4M 0 153.1k 1:02:23 26:07 36:16 217.5k 41 559.9M 0 0 41 234.6M 0 153.2k 1:02:22 26:08 36:14 206.0k 41 559.9M 0 0 41 234.8M 0 153.1k 1:02:23 26:09 36:14 189.3k 41 559.9M 0 0 41 235.0M 0 153.2k 1:02:22 26:10 36:12 186.4k 41 559.9M 0 0 41 235.1M 0 153.2k 1:02:22 26:11 36:11 183.8k 42 559.9M 0 0 42 235.3M 0 153.2k 1:02:22 26:12 36:10 164.3k 42 559.9M 0 0 42 235.5M 0 153.2k 1:02:22 26:14 36:08 157.3k 42 559.9M 0 0 42 235.7M 0 153.2k 1:02:22 26:15 36:07 159.4k 42 559.9M 0 0 42 235.9M 0 153.2k 1:02:22 26:16 36:06 160.0k 42 559.9M 0 0 42 236.1M 0 153.2k 1:02:21 26:17 36:04 157.1k 42 559.9M 0 0 42 236.3M 0 153.2k 1:02:22 26:19 36:03 156.6k 42 559.9M 0 0 42 236.5M 0 153.2k 1:02:22 26:20 36:02 159.4k 42 559.9M 0 0 42 236.6M 0 153.2k 1:02:22 26:21 36:01 154.5k 42 559.9M 0 0 42 236.7M 0 153.1k 1:02:23 26:22 36:01 142.4k 42 559.9M 0 0 42 236.9M 0 153.1k 1:02:23 26:23 36:00 136.7k 42 559.9M 0 0 42 237.1M 0 153.2k 1:02:22 26:25 35:57 148.8k 42 559.9M 0 0 42 237.3M 0 153.1k 1:02:23 26:26 35:57 141.6k 42 559.9M 0 0 42 237.5M 0 153.1k 1:02:24 26:28 35:56 131.5k 42 559.9M 0 0 42 237.6M 0 153.0k 1:02:25 26:29 35:56 128.5k 42 559.9M 0 0 42 237.8M 0 153.0k 1:02:25 26:30 35:55 131.7k 42 559.9M 0 0 42 238.1M 0 153.1k 1:02:23 26:31 35:52 142.4k 42 559.9M 0 0 42 238.3M 0 153.2k 1:02:22 26:33 35:49 160.8k 42 559.9M 0 0 42 238.6M 0 153.2k 1:02:21 26:34 35:47 186.7k 42 559.9M 0 0 42 238.8M 0 153.2k 1:02:21 26:35 35:46 201.8k 42 559.9M 0 0 42 239.0M 0 153.3k 1:02:20 26:36 35:44 209.1k 42 559.9M 0 0 42 239.2M 0 153.2k 1:02:20 26:38 35:42 182.9k 42 559.9M 0 0 42 239.3M 0 153.2k 1:02:21 26:39 35:42 161.4k 42 559.9M 0 0 42 239.5M 0 153.2k 1:02:21 26:40 35:41 148.0k 42 559.9M 0 0 42 239.6M 0 153.2k 1:02:22 26:41 35:41 140.0k 42 559.9M 0 0 42 239.7M 0 153.1k 1:02:23 26:42 35:41 119.7k 42 559.9M 0 0 42 239.9M 0 153.2k 1:02:22 26:43 35:39 129.0k 42 559.9M 0 0 42 240.1M 0 153.1k 1:02:23 26:45 35:38 133.9k 42 559.9M 0 0 42 240.2M 0 153.1k 1:02:23 26:46 35:37 132.4k 42 559.9M 0 0 42 240.4M 0 153.1k 1:02:23 26:47 35:36 141.1k 42 559.9M 0 0 42 240.6M 0 153.2k 1:02:22 26:48 35:34 159.3k 43 559.9M 0 0 43 240.8M 0 153.2k 1:02:22 26:49 35:33 159.6k 43 559.9M 0 0 43 241.0M 0 153.2k 1:02:21 26:50 35:31 168.8k 43 559.9M 0 0 43 241.2M 0 153.2k 1:02:22 26:52 35:30 171.6k 43 559.9M 0 0 43 241.5M 0 153.2k 1:02:21 26:53 35:28 179.5k 43 559.9M 0 0 43 241.7M 0 153.3k 1:02:19 26:54 35:25 188.6k 43 559.9M 0 0 43 241.9M 0 153.3k 1:02:19 26:55 35:24 184.1k 43 559.9M 0 0 43 242.1M 0 153.3k 1:02:18 26:56 35:22 186.9k 43 559.9M 0 0 43 242.3M 0 153.3k 1:02:18 26:57 35:21 195.4k 43 559.9M 0 0 43 242.5M 0 153.3k 1:02:18 26:58 35:20 188.3k 43 559.9M 0 0 43 242.6M 0 153.3k 1:02:18 27:00 35:18 166.3k 43 559.9M 0 0 43 242.8M 0 153.3k 1:02:18 27:01 35:17 166.2k 43 559.9M 0 0 43 243.0M 0 153.3k 1:02:18 27:02 35:16 159.1k 43 559.9M 0 0 43 243.2M 0 153.3k 1:02:18 27:04 35:14 150.5k 43 559.9M 0 0 43 243.3M 0 153.3k 1:02:20 27:05 35:15 133.4k 43 559.9M 0 0 43 243.5M 0 153.3k 1:02:20 27:06 35:14 136.6k 43 559.9M 0 0 43 243.6M 0 153.2k 1:02:20 27:07 35:13 126.8k 43 559.9M 0 0 43 243.8M 0 153.2k 1:02:20 27:09 35:11 129.5k 43 559.9M 0 0 43 244.0M 0 153.2k 1:02:21 27:10 35:11 126.3k 43 559.9M 0 0 43 244.1M 0 153.2k 1:02:21 27:11 35:10 134.8k 43 559.9M 0 0 43 244.3M 0 153.2k 1:02:22 27:12 35:10 131.5k 43 559.9M 0 0 43 244.5M 0 153.2k 1:02:22 27:13 35:09 140.3k 43 559.9M 0 0 43 244.6M 0 153.2k 1:02:21 27:15 35:06 139.3k 43 559.9M 0 0 43 244.8M 0 153.2k 1:02:22 27:16 35:06 139.9k 43 559.9M 0 0 43 244.9M 0 153.2k 1:02:22 27:17 35:05 140.8k 43 559.9M 0 0 43 245.0M 0 153.1k 1:02:23 27:18 35:05 135.4k 43 559.9M 0 0 43 245.1M 0 153.1k 1:02:24 27:19 35:05 120.7k 43 559.9M 0 0 43 245.3M 0 153.1k 1:02:25 27:20 35:05 113.0k 43 559.9M 0 0 43 245.5M 0 153.1k 1:02:25 27:21 35:04 121.4k 43 559.9M 0 0 43 245.6M 0 153.1k 1:02:25 27:23 35:02 125.7k 43 559.9M 0 0 43 245.9M 0 153.1k 1:02:24 27:24 35:00 145.9k 43 559.9M 0 0 43 246.1M 0 153.1k 1:02:23 27:25 34:58 171.5k 43 559.9M 0 0 43 246.3M 0 153.1k 1:02:23 27:26 34:57 177.8k 44 559.9M 0 0 44 246.6M 0 153.2k 1:02:21 27:27 34:54 190.5k 44 559.9M 0 0 44 247.0M 0 153.3k 1:02:18 27:29 34:49 229.1k 44 559.9M 0 0 44 247.3M 0 153.4k 1:02:16 27:30 34:46 245.4k 44 559.9M 0 0 44 247.5M 0 153.5k 1:02:15 27:31 34:44 253.1k 44 559.9M 0 0 44 247.8M 0 153.6k 1:02:13 27:32 34:41 274.1k 44 559.9M 0 0 44 248.0M 0 153.6k 1:02:13 27:33 34:40 257.6k 44 559.9M 0 0 44 248.3M 0 153.6k 1:02:11 27:34 34:37 233.9k 44 559.9M 0 0 44 248.5M 0 153.7k 1:02:10 27:35 34:35 218.3k 44 559.9M 0 0 44 248.7M 0 153.7k 1:02:10 27:37 34:33 205.8k 44 559.9M 0 0 44 248.9M 0 153.7k 1:02:10 27:38 34:32 181.0k 44 559.9M 0 0 44 249.0M 0 153.6k 1:02:11 27:39 34:32 171.0k 44 559.9M 0 0 44 249.2M 0 153.6k 1:02:11 27:40 34:31 156.7k 44 559.9M 0 0 44 249.3M 0 153.6k 1:02:12 27:41 34:31 139.4k 44 559.9M 0 0 44 249.5M 0 153.6k 1:02:11 27:43 34:28 137.8k 44 559.9M 0 0 44 249.8M 0 153.6k 1:02:11 27:44 34:27 149.6k 44 559.9M 0 0 44 250.0M 0 153.7k 1:02:09 27:45 34:24 174.3k 44 559.9M 0 0 44 250.3M 0 153.8k 1:02:07 27:46 34:21 206.5k 44 559.9M 0 0 44 250.6M 0 153.8k 1:02:06 27:47 34:19 225.3k 44 559.9M 0 0 44 250.8M 0 153.9k 1:02:05 27:48 34:17 231.2k 44 559.9M 0 0 44 251.0M 0 153.9k 1:02:05 27:49 34:16 218.3k 44 559.9M 0 0 44 251.1M 0 153.8k 1:02:06 27:51 34:15 187.8k 44 559.9M 0 0 44 251.2M 0 153.8k 1:02:07 27:52 34:15 154.8k 44 559.9M 0 0 44 251.4M 0 153.8k 1:02:06 27:53 34:13 144.6k 44 559.9M 0 0 44 251.6M 0 153.8k 1:02:06 27:54 34:12 140.3k 44 559.9M 0 0 44 251.8M 0 153.8k 1:02:06 27:55 34:11 144.9k 45 559.9M 0 0 45 252.0M 0 153.8k 1:02:07 27:57 34:10 147.1k 45 559.9M 0 0 45 252.1M 0 153.7k 1:02:08 27:58 34:10 138.2k 45 559.9M 0 0 45 252.3M 0 153.7k 1:02:08 28:00 34:08 133.2k 45 559.9M 0 0 45 252.5M 0 153.8k 1:02:08 28:01 34:07 139.6k 45 559.9M 0 0 45 252.7M 0 153.8k 1:02:08 28:02 34:06 136.2k 45 559.9M 0 0 45 252.9M 0 153.7k 1:02:08 28:04 34:04 144.2k 45 559.9M 0 0 45 253.0M 0 153.7k 1:02:08 28:05 34:03 151.7k 45 559.9M 0 0 45 253.1M 0 153.7k 1:02:10 28:06 34:04 140.8k 45 559.9M 0 0 45 253.3M 0 153.7k 1:02:10 28:07 34:03 129.8k 45 559.9M 0 0 45 253.5M 0 153.7k 1:02:10 28:09 34:01 131.4k 45 559.9M 0 0 45 253.6M 0 153.7k 1:02:10 28:10 34:00 126.1k 45 559.9M 0 0 45 253.8M 0 153.6k 1:02:12 28:11 34:01 116.2k 45 559.9M 0 0 45 253.9M 0 153.5k 1:02:13 28:13 34:00 117.5k 45 559.9M 0 0 45 254.0M 0 153.5k 1:02:14 28:14 34:00 113.5k 45 559.9M 0 0 45 254.1M 0 153.5k 1:02:14 28:15 33:59 103.4k 45 559.9M 0 0 45 254.3M 0 153.5k 1:02:14 28:16 33:58 109.1k 45 559.9M 0 0 45 254.5M 0 153.5k 1:02:14 28:17 33:57 128.0k 45 559.9M 0 0 45 254.6M 0 153.5k 1:02:15 28:18 33:57 129.5k 45 559.9M 0 0 45 254.8M 0 153.4k 1:02:15 28:20 33:55 132.3k 45 559.9M 0 0 45 255.0M 0 153.4k 1:02:16 28:21 33:55 136.1k 45 559.9M 0 0 45 255.1M 0 153.4k 1:02:16 28:22 33:54 131.5k 45 559.9M 0 0 45 255.3M 0 153.4k 1:02:16 28:24 33:52 131.2k 45 559.9M 0 0 45 255.5M 0 153.4k 1:02:17 28:25 33:52 135.4k 45 559.9M 0 0 45 255.7M 0 153.4k 1:02:17 28:26 33:51 140.2k 45 559.9M 0 0 45 255.9M 0 153.4k 1:02:17 28:28 33:49 145.2k 45 559.9M 0 0 45 256.1M 0 153.4k 1:02:16 28:29 33:47 163.2k 45 559.9M 0 0 45 256.3M 0 153.4k 1:02:17 28:31 33:46 147.1k 45 559.9M 0 0 45 256.5M 0 153.4k 1:02:17 28:32 33:45 147.1k 45 559.9M 0 0 45 256.6M 0 153.4k 1:02:17 28:33 33:44 148.4k 45 559.9M 0 0 45 256.8M 0 153.4k 1:02:17 28:34 33:43 147.2k 45 559.9M 0 0 45 257.0M 0 153.4k 1:02:18 28:35 33:43 132.5k 45 559.9M 0 0 45 257.2M 0 153.4k 1:02:17 28:37 33:40 147.6k 45 559.9M 0 0 45 257.5M 0 153.4k 1:02:17 28:38 33:39 162.2k 46 559.9M 0 0 46 257.6M 0 153.4k 1:02:17 28:39 33:38 154.8k 46 559.9M 0 0 46 257.7M 0 153.4k 1:02:18 28:40 33:38 150.2k 46 559.9M 0 0 46 257.8M 0 153.3k 1:02:18 28:41 33:37 146.8k 46 559.9M 0 0 46 258.0M 0 153.3k 1:02:18 28:42 33:36 146.8k 46 559.9M 0 0 46 258.1M 0 153.3k 1:02:18 28:43 33:35 129.6k 46 559.9M 0 0 46 258.3M 0 153.3k 1:02:19 28:45 33:34 132.5k 46 559.9M 0 0 46 258.5M 0 153.3k 1:02:19 28:46 33:33 136.4k 46 559.9M 0 0 46 258.7M 0 153.3k 1:02:19 28:47 33:32 146.0k 46 559.9M 0 0 46 258.9M 0 153.3k 1:02:19 28:48 33:31 145.6k 46 559.9M 0 0 46 259.0M 0 153.3k 1:02:19 28:49 33:30 145.8k 46 559.9M 0 0 46 259.1M 0 153.3k 1:02:20 28:51 33:29 140.2k 46 559.9M 0 0 46 259.3M 0 153.3k 1:02:20 28:52 33:28 143.9k 46 559.9M 0 0 46 259.5M 0 153.3k 1:02:20 28:53 33:27 139.6k 46 559.9M 0 0 46 259.7M 0 153.3k 1:02:20 28:55 33:25 135.9k 46 559.9M 0 0 46 259.9M 0 153.3k 1:02:20 28:56 33:24 144.8k 46 559.9M 0 0 46 260.1M 0 153.3k 1:02:19 28:57 33:22 162.0k 46 559.9M 0 0 46 260.3M 0 153.3k 1:02:19 28:58 33:21 159.6k 46 559.9M 0 0 46 260.5M 0 153.3k 1:02:19 28:59 33:20 163.1k 46 559.9M 0 0 46 260.8M 0 153.3k 1:02:18 29:01 33:17 179.6k 46 559.9M 0 0 46 261.0M 0 153.3k 1:02:18 29:02 33:16 173.3k 46 559.9M 0 0 46 261.1M 0 153.3k 1:02:19 29:03 33:16 155.8k 46 559.9M 0 0 46 261.3M 0 153.3k 1:02:19 29:05 33:14 153.5k 46 559.9M 0 0 46 261.4M 0 153.2k 1:02:21 29:06 33:15 134.9k 46 559.9M 0 0 46 261.5M 0 153.2k 1:02:22 29:07 33:15 107.6k 46 559.9M 0 0 46 261.6M 0 153.1k 1:02:23 29:08 33:15 101.0k 46 559.9M 0 0 46 261.7M 0 153.1k 1:02:24 29:10 33:14 99.92k 46 559.9M 0 0 46 261.8M 0 153.1k 1:02:24 29:11 33:13 97977 46 559.9M 0 0 46 262.0M 0 153.1k 1:02:24 29:12 33:12 113.4k 46 559.9M 0 0 46 262.2M 0 153.1k 1:02:25 29:13 33:12 121.3k 46 559.9M 0 0 46 262.3M 0 153.0k 1:02:25 29:15 33:10 122.8k 46 559.9M 0 0 46 262.5M 0 153.0k 1:02:25 29:16 33:09 136.0k 46 559.9M 0 0 46 262.6M 0 153.0k 1:02:26 29:17 33:09 129.1k 46 559.9M 0 0 46 262.8M 0 153.0k 1:02:26 29:18 33:08 129.3k 46 559.9M 0 0 46 263.0M 0 153.0k 1:02:26 29:19 33:07 139.5k 47 559.9M 0 0 47 263.2M 0 153.0k 1:02:26 29:21 33:05 144.3k 47 559.9M 0 0 47 263.4M 0 153.0k 1:02:26 29:22 33:04 145.2k 47 559.9M 0 0 47 263.6M 0 153.0k 1:02:26 29:23 33:03 157.1k 47 559.9M 0 0 47 263.8M 0 153.0k 1:02:25 29:24 33:01 164.5k 47 559.9M 0 0 47 264.0M 0 153.0k 1:02:26 29:26 33:00 157.2k 47 559.9M 0 0 47 264.1M 0 153.0k 1:02:26 29:27 32:59 153.6k 47 559.9M 0 0 47 264.3M 0 153.0k 1:02:27 29:28 32:59 142.3k 47 559.9M 0 0 47 264.5M 0 153.0k 1:02:26 29:29 32:57 146.6k 47 559.9M 0 0 47 264.6M 0 153.0k 1:02:26 29:30 32:56 142.7k 47 559.9M 0 0 47 264.9M 0 153.1k 1:02:25 29:31 32:54 163.5k 47 559.9M 0 0 47 265.1M 0 153.1k 1:02:24 29:32 32:52 176.1k 47 559.9M 0 0 47 265.2M 0 153.1k 1:02:25 29:34 32:51 175.0k 47 559.9M 0 0 47 265.4M 0 153.0k 1:02:25 29:35 32:50 167.0k 47 559.9M 0 0 47 265.6M 0 153.0k 1:02:26 29:36 32:50 156.4k 47 559.9M 0 0 47 265.7M 0 153.0k 1:02:26 29:37 32:49 138.3k 47 559.9M 0 0 47 265.9M 0 153.0k 1:02:26 29:39 32:47 130.6k 47 559.9M 0 0 47 266.1M 0 153.0k 1:02:26 29:40 32:46 137.7k 47 559.9M 0 0 47 266.3M 0 153.0k 1:02:26 29:41 32:45 139.9k 47 559.9M 0 0 47 266.5M 0 153.0k 1:02:27 29:43 32:44 138.6k 47 559.9M 0 0 47 266.6M 0 153.0k 1:02:27 29:44 32:43 141.9k 47 559.9M 0 0 47 266.8M 0 153.0k 1:02:27 29:46 32:41 142.1k 47 559.9M 0 0 47 267.1M 0 153.0k 1:02:26 29:47 32:39 154.2k 47 559.9M 0 0 47 267.3M 0 153.0k 1:02:26 29:48 32:38 156.7k 47 559.9M 0 0 47 267.5M 0 153.0k 1:02:26 29:49 32:37 161.4k 47 559.9M 0 0 47 267.6M 0 153.0k 1:02:26 29:51 32:35 159.4k 47 559.9M 0 0 47 267.8M 0 153.0k 1:02:27 29:52 32:35 156.1k 47 559.9M 0 0 47 268.0M 0 152.9k 1:02:28 29:54 32:34 131.7k 47 559.9M 0 0 47 268.1M 0 152.9k 1:02:28 29:55 32:33 129.9k 47 559.9M 0 0 47 268.3M 0 152.9k 1:02:29 29:56 32:33 126.3k 47 559.9M 0 0 47 268.5M 0 152.9k 1:02:29 29:58 32:31 128.1k 47 559.9M 0 0 47 268.6M 0 152.8k 1:02:30 29:59 32:31 116.4k 48 559.9M 0 0 48 268.8M 0 152.8k 1:02:31 30:01 32:30 125.6k 48 559.9M 0 0 48 269.0M 0 152.8k 1:02:31 30:02 32:29 120.8k 48 559.9M 0 0 48 269.1M 0 152.8k 1:02:31 30:03 32:28 124.3k 48 559.9M 0 0 48 269.3M 0 152.8k 1:02:31 30:04 32:27 124.2k 48 559.9M 0 0 48 269.5M 0 152.8k 1:02:31 30:05 32:26 145.0k 48 559.9M 0 0 48 269.7M 0 152.8k 1:02:31 30:06 32:25 154.5k 48 559.9M 0 0 48 269.9M 0 152.8k 1:02:31 30:08 32:23 160.8k 48 559.9M 0 0 48 270.1M 0 152.9k 1:02:30 30:09 32:21 172.8k 48 559.9M 0 0 48 270.4M 0 152.9k 1:02:29 30:10 32:19 187.1k 48 559.9M 0 0 48 270.6M 0 152.9k 1:02:28 30:11 32:17 188.7k 48 559.9M 0 0 48 270.8M 0 153.0k 1:02:27 30:12 32:15 200.3k 48 559.9M 0 0 48 271.1M 0 153.0k 1:02:26 30:13 32:13 209.3k 48 559.9M 0 0 48 271.3M 0 153.0k 1:02:26 30:15 32:11 201.1k 48 559.9M 0 0 48 271.5M 0 153.1k 1:02:25 30:16 32:09 203.2k 48 559.9M 0 0 48 271.7M 0 153.1k 1:02:25 30:17 32:08 201.5k 48 559.9M 0 0 48 271.9M 0 153.1k 1:02:25 30:18 32:07 178.5k 48 559.9M 0 0 48 272.0M 0 153.0k 1:02:26 30:19 32:07 160.4k 48 559.9M 0 0 48 272.2M 0 153.0k 1:02:26 30:21 32:05 156.0k 48 559.9M 0 0 48 272.4M 0 153.0k 1:02:25 30:22 32:03 148.9k 48 559.9M 0 0 48 272.6M 0 153.1k 1:02:25 30:23 32:02 151.0k 48 559.9M 0 0 48 272.9M 0 153.1k 1:02:23 30:24 31:59 178.1k 48 559.9M 0 0 48 273.1M 0 153.1k 1:02:23 30:25 31:58 186.5k 48 559.9M 0 0 48 273.2M 0 153.1k 1:02:24 30:27 31:57 170.2k 48 559.9M 0 0 48 273.3M 0 153.0k 1:02:25 30:28 31:57 152.9k 48 559.9M 0 0 48 273.6M 0 153.1k 1:02:24 30:29 31:55 157.8k 48 559.9M 0 0 48 273.8M 0 153.1k 1:02:24 30:30 31:54 139.9k 48 559.9M 0 0 48 274.0M 0 153.1k 1:02:23 30:32 31:51 154.4k 48 559.9M 0 0 48 274.3M 0 153.2k 1:02:22 30:33 31:49 175.6k 49 559.9M 0 0 49 274.5M 0 153.2k 1:02:22 30:34 31:48 189.2k 49 559.9M 0 0 49 274.7M 0 153.2k 1:02:21 30:35 31:46 196.1k 49 559.9M 0 0 49 275.0M 0 153.3k 1:02:20 30:36 31:44 207.2k 49 559.9M 0 0 49 275.1M 0 153.2k 1:02:20 30:37 31:43 185.4k 49 559.9M 0 0 49 275.3M 0 153.2k 1:02:20 30:39 31:41 183.5k 49 559.9M 0 0 49 275.5M 0 153.2k 1:02:21 30:40 31:41 174.0k 49 559.9M 0 0 49 275.6M 0 153.2k 1:02:21 30:41 31:40 155.0k 49 559.9M 0 0 49 275.8M 0 153.2k 1:02:21 30:43 31:38 142.2k 49 559.9M 0 0 49 276.0M 0 153.2k 1:02:21 30:44 31:37 149.5k 49 559.9M 0 0 49 276.2M 0 153.2k 1:02:20 30:45 31:35 153.8k 49 559.9M 0 0 49 276.5M 0 153.3k 1:02:19 30:46 31:33 172.4k 49 559.9M 0 0 49 276.8M 0 153.4k 1:02:17 30:47 31:30 197.9k 49 559.9M 0 0 49 277.1M 0 153.4k 1:02:16 30:48 31:28 222.2k 49 559.9M 0 0 49 277.3M 0 153.5k 1:02:15 30:50 31:25 228.9k 49 559.9M 0 0 49 277.5M 0 153.5k 1:02:15 30:51 31:24 220.5k 49 559.9M 0 0 49 277.7M 0 153.5k 1:02:15 30:52 31:23 203.6k 49 559.9M 0 0 49 278.0M 0 153.5k 1:02:14 30:53 31:21 193.6k 49 559.9M 0 0 49 278.1M 0 153.5k 1:02:14 30:55 31:19 170.1k 49 559.9M 0 0 49 278.3M 0 153.5k 1:02:15 30:56 31:19 151.6k 49 559.9M 0 0 49 278.4M 0 153.4k 1:02:15 30:57 31:18 145.6k 49 559.9M 0 0 49 278.5M 0 153.4k 1:02:16 30:58 31:18 137.5k 49 559.9M 0 0 49 278.6M 0 153.4k 1:02:17 31:00 31:17 112.9k 49 559.9M 0 0 49 278.8M 0 153.3k 1:02:18 31:01 31:17 105.1k 49 559.9M 0 0 49 278.9M 0 153.3k 1:02:20 31:03 31:17 99508 49 559.9M 0 0 49 279.0M 0 153.2k 1:02:21 31:04 31:17 90242 49 559.9M 0 0 49 279.1M 0 153.2k 1:02:22 31:05 31:17 92623 49 559.9M 0 0 49 279.3M 0 153.2k 1:02:21 31:06 31:15 113.4k 49 559.9M 0 0 49 279.6M 0 153.3k 1:02:20 31:07 31:13 134.1k 49 559.9M 0 0 49 279.8M 0 153.3k 1:02:19 31:08 31:11 163.0k 49 559.9M 0 0 49 279.9M 0 153.3k 1:02:20 31:09 31:11 167.8k 50 559.9M 0 0 50 280.0M 0 153.2k 1:02:21 31:10 31:11 165.8k 50 559.9M 0 0 50 280.2M 0 153.2k 1:02:21 31:12 31:09 155.2k 50 559.9M 0 0 50 280.4M 0 153.2k 1:02:20 31:13 31:07 142.0k 50 559.9M 0 0 50 280.6M 0 153.2k 1:02:20 31:14 31:06 139.2k 50 559.9M 0 0 50 280.8M 0 153.3k 1:02:20 31:15 31:05 151.1k 50 559.9M 0 0 50 281.0M 0 153.2k 1:02:20 31:17 31:03 158.1k 50 559.9M 0 0 50 281.0M 0 153.2k 1:02:20 31:17 31:03 153.2k 50 559.9M 0 0 50 281.1M 0 153.3k 1:02:20 31:18 31:02 167.5k 50 559.9M 0 0 50 281.3M 0 153.3k 1:02:20 31:19 31:01 168.0k 50 559.9M 0 0 50 281.5M 0 153.2k 1:02:20 31:20 31:00 155.6k 50 559.9M 0 0 50 281.6M 0 153.2k 1:02:21 31:21 31:00 148.3k 50 559.9M 0 0 50 281.8M 0 153.2k 1:02:21 31:23 30:58 148.1k 50 559.9M 0 0 50 282.0M 0 153.2k 1:02:21 31:24 30:57 136.7k 50 559.9M 0 0 50 282.1M 0 153.2k 1:02:22 31:25 30:57 127.6k 50 559.9M 0 0 50 282.2M 0 153.2k 1:02:22 31:26 30:56 124.1k 50 559.9M 0 0 50 282.3M 0 153.1k 1:02:23 31:27 30:56 120.8k 50 559.9M 0 0 50 282.5M 0 153.1k 1:02:24 31:29 30:55 115.5k 50 559.9M 0 0 50 282.7M 0 153.1k 1:02:23 31:30 30:53 128.7k 50 559.9M 0 0 50 282.9M 0 153.1k 1:02:23 31:31 30:52 136.9k 50 559.9M 0 0 50 283.1M 0 153.1k 1:02:24 31:32 30:52 138.8k 50 559.9M 0 0 50 283.2M 0 153.1k 1:02:24 31:34 30:50 138.9k 50 559.9M 0 0 50 283.4M 0 153.1k 1:02:24 31:35 30:49 144.2k 50 559.9M 0 0 50 283.6M 0 153.1k 1:02:24 31:36 30:48 140.8k 50 559.9M 0 0 50 283.8M 0 153.1k 1:02:24 31:37 30:47 144.1k 50 559.9M 0 0 50 284.0M 0 153.1k 1:02:23 31:38 30:45 157.8k 50 559.9M 0 0 50 284.2M 0 153.2k 1:02:22 31:39 30:43 178.0k 50 559.9M 0 0 50 284.5M 0 153.2k 1:02:21 31:40 30:41 195.2k 50 559.9M 0 0 50 284.6M 0 153.2k 1:02:22 31:42 30:40 188.8k 50 559.9M 0 0 50 284.7M 0 153.2k 1:02:22 31:43 30:39 176.0k 50 559.9M 0 0 50 284.9M 0 153.2k 1:02:22 31:44 30:38 171.2k 50 559.9M 0 0 50 285.1M 0 153.2k 1:02:22 31:45 30:37 162.4k 50 559.9M 0 0 50 285.3M 0 153.2k 1:02:21 31:46 30:35 161.5k 50 559.9M 0 0 50 285.5M 0 153.2k 1:02:21 31:48 30:33 159.3k 51 559.9M 0 0 51 285.6M 0 153.2k 1:02:22 31:49 30:33 159.8k 51 559.9M 0 0 51 285.8M 0 153.2k 1:02:22 31:50 30:32 151.4k 51 559.9M 0 0 51 286.0M 0 153.2k 1:02:22 31:52 30:30 143.9k 51 559.9M 0 0 51 286.3M 0 153.2k 1:02:22 31:53 30:29 143.0k 51 559.9M 0 0 51 286.6M 0 153.3k 1:02:20 31:54 30:26 172.6k 51 559.9M 0 0 51 286.8M 0 153.3k 1:02:18 31:55 30:23 194.0k 51 559.9M 0 0 51 287.1M 0 153.4k 1:02:17 31:56 30:21 228.6k 51 559.9M 0 0 51 287.5M 0 153.5k 1:02:15 31:57 30:18 262.6k 51 559.9M 0 0 51 287.8M 0 153.5k 1:02:13 31:58 30:15 278.5k 51 559.9M 0 0 51 288.0M 0 153.5k 1:02:13 32:00 30:13 248.5k 51 559.9M 0 0 51 288.2M 0 153.6k 1:02:12 32:01 30:11 241.1k 51 559.9M 0 0 51 288.5M 0 153.6k 1:02:12 32:02 30:10 216.2k 51 559.9M 0 0 51 288.6M 0 153.6k 1:02:12 32:03 30:09 191.4k 51 559.9M 0 0 51 288.8M 0 153.6k 1:02:11 32:05 30:06 170.7k 51 559.9M 0 0 51 289.0M 0 153.6k 1:02:11 32:06 30:05 174.3k 51 559.9M 0 0 51 289.1M 0 153.6k 1:02:12 32:07 30:05 157.0k 51 559.9M 0 0 51 289.3M 0 153.6k 1:02:12 32:08 30:04 142.7k 51 559.9M 0 0 51 289.4M 0 153.5k 1:02:13 32:09 30:04 133.4k 51 559.9M 0 0 51 289.6M 0 153.5k 1:02:13 32:11 30:02 128.1k 51 559.9M 0 0 51 289.8M 0 153.5k 1:02:13 32:12 30:01 130.2k 51 559.9M 0 0 51 290.0M 0 153.5k 1:02:13 32:13 30:00 136.9k 51 559.9M 0 0 51 290.2M 0 153.6k 1:02:12 32:14 29:58 158.3k 51 559.9M 0 0 51 290.4M 0 153.6k 1:02:12 32:15 29:57 170.7k 51 559.9M 0 0 51 290.6M 0 153.6k 1:02:12 32:17 29:55 165.9k 51 559.9M 0 0 51 290.8M 0 153.6k 1:02:12 32:18 29:54 161.6k 51 559.9M 0 0 51 291.0M 0 153.6k 1:02:11 32:19 29:52 173.0k 52 559.9M 0 0 52 291.2M 0 153.6k 1:02:11 32:20 29:51 164.6k 52 559.9M 0 0 52 291.4M 0 153.6k 1:02:11 32:21 29:50 164.3k 52 559.9M 0 0 52 291.6M 0 153.6k 1:02:11 32:23 29:48 169.5k 52 559.9M 0 0 52 291.8M 0 153.6k 1:02:12 32:24 29:48 163.3k 52 559.9M 0 0 52 292.0M 0 153.6k 1:02:11 32:25 29:46 155.9k 52 559.9M 0 0 52 292.1M 0 153.6k 1:02:12 32:27 29:45 146.5k 52 559.9M 0 0 52 292.3M 0 153.6k 1:02:12 32:28 29:44 138.0k 52 559.9M 0 0 52 292.5M 0 153.6k 1:02:12 32:29 29:43 143.6k 52 559.9M 0 0 52 292.6M 0 153.6k 1:02:12 32:30 29:42 154.1k 52 559.9M 0 0 52 292.8M 0 153.6k 1:02:11 32:31 29:40 154.9k 52 559.9M 0 0 52 293.0M 0 153.6k 1:02:11 32:32 29:39 168.3k 52 559.9M 0 0 52 293.2M 0 153.6k 1:02:10 32:33 29:37 181.3k 52 559.9M 0 0 52 293.3M 0 153.6k 1:02:11 32:34 29:37 168.1k 52 559.9M 0 0 52 293.5M 0 153.6k 1:02:11 32:36 29:35 157.2k 52 559.9M 0 0 52 293.7M 0 153.6k 1:02:11 32:37 29:34 158.4k 52 559.9M 0 0 52 293.9M 0 153.6k 1:02:11 32:38 29:33 152.7k 52 559.9M 0 0 52 294.0M 0 153.6k 1:02:11 32:39 29:32 142.4k 52 559.9M 0 0 52 294.1M 0 153.6k 1:02:12 32:40 29:32 139.8k 52 559.9M 0 0 52 294.3M 0 153.6k 1:02:13 32:41 29:32 135.7k 52 559.9M 0 0 52 294.5M 0 153.5k 1:02:13 32:43 29:30 125.6k 52 559.9M 0 0 52 294.6M 0 153.6k 1:02:13 32:44 29:29 129.7k 52 559.9M 0 0 52 294.8M 0 153.6k 1:02:12 32:45 29:27 139.3k 52 559.9M 0 0 52 295.0M 0 153.6k 1:02:12 32:46 29:26 148.9k 52 559.9M 0 0 52 295.2M 0 153.6k 1:02:12 32:48 29:24 156.9k 52 559.9M 0 0 52 295.5M 0 153.6k 1:02:12 32:49 29:23 170.0k 52 559.9M 0 0 52 295.6M 0 153.6k 1:02:11 32:50 29:21 168.2k 52 559.9M 0 0 52 295.9M 0 153.6k 1:02:11 32:51 29:20 175.8k 52 559.9M 0 0 52 296.1M 0 153.7k 1:02:10 32:52 29:18 183.6k 52 559.9M 0 0 52 296.3M 0 153.6k 1:02:11 32:54 29:17 170.2k 52 559.9M 0 0 52 296.4M 0 153.6k 1:02:12 32:55 29:17 151.4k 52 559.9M 0 0 52 296.5M 0 153.6k 1:02:13 32:56 29:17 140.3k 52 559.9M 0 0 52 296.7M 0 153.6k 1:02:12 32:58 29:14 129.4k 53 559.9M 0 0 53 296.8M 0 153.5k 1:02:13 32:59 29:14 117.1k 53 559.9M 0 0 53 297.0M 0 153.5k 1:02:13 33:00 29:13 127.6k 53 559.9M 0 0 53 297.2M 0 153.6k 1:02:13 33:01 29:12 142.0k 53 559.9M 0 0 53 297.5M 0 153.6k 1:02:12 33:02 29:10 162.6k 53 559.9M 0 0 53 297.6M 0 153.6k 1:02:12 33:04 29:08 159.9k 53 559.9M 0 0 53 297.8M 0 153.6k 1:02:13 33:05 29:08 158.3k 53 559.9M 0 0 53 298.0M 0 153.5k 1:02:14 33:07 29:07 140.9k 53 559.9M 0 0 53 298.1M 0 153.5k 1:02:15 33:08 29:07 125.1k 53 559.9M 0 0 53 298.2M 0 153.4k 1:02:16 33:09 29:07 110.1k 53 559.9M 0 0 53 298.3M 0 153.4k 1:02:16 33:11 29:05 102.7k 53 559.9M 0 0 53 298.5M 0 153.4k 1:02:16 33:12 29:04 107.3k 53 559.9M 0 0 53 298.7M 0 153.4k 1:02:17 33:13 29:04 118.7k 53 559.9M 0 0 53 298.9M 0 153.4k 1:02:17 33:15 29:02 129.9k 53 559.9M 0 0 53 299.1M 0 153.4k 1:02:17 33:16 29:01 132.6k 53 559.9M 0 0 53 299.3M 0 153.4k 1:02:17 33:17 29:00 145.7k 53 559.9M 0 0 53 299.5M 0 153.4k 1:02:16 33:18 28:58 156.5k 53 559.9M 0 0 53 299.7M 0 153.4k 1:02:16 33:20 28:56 162.0k 53 559.9M 0 0 53 300.0M 0 153.5k 1:02:15 33:21 28:54 178.4k 53 559.9M 0 0 53 300.1M 0 153.5k 1:02:15 33:22 28:53 186.6k 53 559.9M 0 0 53 300.3M 0 153.5k 1:02:15 33:23 28:52 180.3k 53 559.9M 0 0 53 300.5M 0 153.5k 1:02:15 33:24 28:51 171.9k 53 559.9M 0 0 53 300.7M 0 153.5k 1:02:14 33:25 28:49 176.2k 53 559.9M 0 0 53 300.9M 0 153.5k 1:02:14 33:27 28:47 166.1k 53 559.9M 0 0 53 301.1M 0 153.5k 1:02:15 33:28 28:47 154.9k 53 559.9M 0 0 53 301.3M 0 153.5k 1:02:15 33:29 28:46 154.6k 53 559.9M 0 0 53 301.4M 0 153.4k 1:02:15 33:30 28:45 146.5k 53 559.9M 0 0 53 301.6M 0 153.4k 1:02:15 33:32 28:43 142.8k 53 559.9M 0 0 53 301.9M 0 153.5k 1:02:14 33:33 28:41 161.8k 53 559.9M 0 0 53 302.1M 0 153.5k 1:02:13 33:34 28:39 177.4k 53 559.9M 0 0 53 302.3M 0 153.5k 1:02:14 33:36 28:38 165.0k 54 559.9M 0 0 54 302.5M 0 153.5k 1:02:14 33:37 28:37 169.2k 54 559.9M 0 0 54 302.7M 0 153.5k 1:02:14 33:39 28:35 166.1k 54 559.9M 0 0 54 302.9M 0 153.5k 1:02:14 33:40 28:34 149.0k 54 559.9M 0 0 54 303.1M 0 153.5k 1:02:14 33:41 28:33 143.6k 54 559.9M 0 0 54 303.3M 0 153.5k 1:02:14 33:42 28:32 159.6k 54 559.9M 0 0 54 303.5M 0 153.5k 1:02:13 33:43 28:30 163.7k 54 559.9M 0 0 54 303.6M 0 153.5k 1:02:13 33:44 28:29 165.3k 54 559.9M 0 0 54 303.8M 0 153.5k 1:02:14 33:46 28:28 155.6k 54 559.9M 0 0 54 304.0M 0 153.5k 1:02:14 33:47 28:27 149.7k 54 559.9M 0 0 54 304.1M 0 153.5k 1:02:14 33:48 28:26 146.4k 54 559.9M 0 0 54 304.4M 0 153.5k 1:02:13 33:49 28:24 153.7k 54 559.9M 0 0 54 304.6M 0 153.5k 1:02:13 33:50 28:23 157.4k 54 559.9M 0 0 54 304.8M 0 153.6k 1:02:12 33:52 28:20 180.0k 54 559.9M 0 0 54 305.1M 0 153.6k 1:02:11 33:53 28:18 197.4k 54 559.9M 0 0 54 305.3M 0 153.7k 1:02:10 33:54 28:16 210.8k 54 559.9M 0 0 54 305.5M 0 153.7k 1:02:10 33:55 28:15 209.6k 54 559.9M 0 0 54 305.8M 0 153.7k 1:02:09 33:56 28:13 223.5k 54 559.9M 0 0 54 306.0M 0 153.7k 1:02:08 33:57 28:11 213.3k 54 559.9M 0 0 54 306.2M 0 153.8k 1:02:07 33:58 28:09 211.7k 54 559.9M 0 0 54 306.4M 0 153.8k 1:02:07 33:59 28:08 193.0k 54 559.9M 0 0 54 306.6M 0 153.8k 1:02:07 34:01 28:06 197.2k 54 559.9M 0 0 54 306.9M 0 153.8k 1:02:06 34:02 28:04 189.3k 54 559.9M 0 0 54 307.1M 0 153.8k 1:02:06 34:03 28:03 189.0k 54 559.9M 0 0 54 307.3M 0 153.9k 1:02:05 34:04 28:01 183.1k 54 559.9M 0 0 54 307.5M 0 153.9k 1:02:05 34:05 28:00 183.2k 54 559.9M 0 0 54 307.6M 0 153.8k 1:02:06 34:07 27:59 169.7k 54 559.9M 0 0 54 307.8M 0 153.8k 1:02:06 34:08 27:58 157.7k 55 559.9M 0 0 55 308.0M 0 153.8k 1:02:06 34:09 27:57 146.6k 55 559.9M 0 0 55 308.1M 0 153.8k 1:02:07 34:11 27:56 126.3k 55 559.9M 0 0 55 308.2M 0 153.7k 1:02:08 34:12 27:56 119.6k 55 559.9M 0 0 55 308.4M 0 153.8k 1:02:08 34:13 27:55 122.1k 55 559.9M 0 0 55 308.5M 0 153.7k 1:02:08 34:14 27:54 117.5k 55 559.9M 0 0 55 308.7M 0 153.7k 1:02:08 34:15 27:53 123.0k 55 559.9M 0 0 55 308.9M 0 153.7k 1:02:08 34:17 27:51 142.0k 55 559.9M 0 0 55 309.0M 0 153.7k 1:02:09 34:18 27:51 142.0k 55 559.9M 0 0 55 309.2M 0 153.7k 1:02:09 34:19 27:50 143.4k 55 559.9M 0 0 55 309.4M 0 153.7k 1:02:08 34:20 27:48 153.7k 55 559.9M 0 0 55 309.6M 0 153.8k 1:02:07 34:21 27:46 171.7k 55 559.9M 0 0 55 309.9M 0 153.8k 1:02:07 34:22 27:45 175.7k 55 559.9M 0 0 55 310.1M 0 153.8k 1:02:07 34:24 27:43 180.4k 55 559.9M 0 0 55 310.3M 0 153.8k 1:02:06 34:25 27:41 184.9k 55 559.9M 0 0 55 310.5M 0 153.8k 1:02:06 34:26 27:40 191.3k 55 559.9M 0 0 55 310.7M 0 153.9k 1:02:05 34:27 27:38 181.5k 55 559.9M 0 0 55 310.9M 0 153.9k 1:02:05 34:28 27:37 179.1k 55 559.9M 0 0 55 311.1M 0 153.9k 1:02:04 34:29 27:35 202.1k 55 559.9M 0 0 55 311.3M 0 153.9k 1:02:04 34:31 27:33 187.7k 55 559.9M 0 0 55 311.5M 0 153.9k 1:02:05 34:32 27:33 164.8k 55 559.9M 0 0 55 311.6M 0 153.9k 1:02:05 34:33 27:32 153.1k 55 559.9M 0 0 55 311.8M 0 153.8k 1:02:06 34:34 27:32 144.9k 55 559.9M 0 0 55 311.9M 0 153.8k 1:02:06 34:35 27:31 123.1k 55 559.9M 0 0 55 312.1M 0 153.8k 1:02:06 34:37 27:29 125.9k 55 559.9M 0 0 55 312.3M 0 153.8k 1:02:06 34:38 27:28 136.1k 55 559.9M 0 0 55 312.5M 0 153.8k 1:02:06 34:39 27:27 142.6k 55 559.9M 0 0 55 312.6M 0 153.8k 1:02:06 34:41 27:25 143.1k 55 559.9M 0 0 55 312.8M 0 153.8k 1:02:07 34:42 27:25 136.8k 55 559.9M 0 0 55 312.9M 0 153.7k 1:02:09 34:44 27:25 120.1k 55 559.9M 0 0 55 313.0M 0 153.7k 1:02:09 34:45 27:24 114.0k 55 559.9M 0 0 55 313.1M 0 153.7k 1:02:10 34:46 27:24 102.2k 55 559.9M 0 0 55 313.3M 0 153.6k 1:02:11 34:47 27:24 99492 55 559.9M 0 0 55 313.4M 0 153.6k 1:02:11 34:48 27:23 99.82k 55 559.9M 0 0 55 313.5M 0 153.6k 1:02:12 34:49 27:23 108.0k 56 559.9M 0 0 56 313.7M 0 153.6k 1:02:12 34:51 27:21 112.6k 56 559.9M 0 0 56 313.9M 0 153.6k 1:02:12 34:52 27:20 128.4k 56 559.9M 0 0 56 314.1M 0 153.6k 1:02:11 34:53 27:18 147.7k 56 559.9M 0 0 56 314.3M 0 153.6k 1:02:11 34:55 27:16 152.2k 56 559.9M 0 0 56 314.5M 0 153.6k 1:02:12 34:56 27:16 156.3k 56 559.9M 0 0 56 314.5M 0 153.5k 1:02:13 34:57 27:16 144.5k 56 559.9M 0 0 56 314.6M 0 153.5k 1:02:14 34:58 27:16 125.0k 56 559.9M 0 0 56 314.8M 0 153.5k 1:02:15 34:59 27:16 101.7k 56 559.9M 0 0 56 314.9M 0 153.4k 1:02:16 35:01 27:15 92710 56 559.9M 0 0 56 315.0M 0 153.4k 1:02:17 35:02 27:15 88455 56 559.9M 0 0 56 315.2M 0 153.4k 1:02:17 35:04 27:13 100.5k 56 559.9M 0 0 56 315.4M 0 153.4k 1:02:17 35:05 27:12 116.1k 56 559.9M 0 0 56 315.5M 0 153.4k 1:02:18 35:06 27:12 118.5k 56 559.9M 0 0 56 315.7M 0 153.3k 1:02:18 35:07 27:11 131.0k 56 559.9M 0 0 56 315.9M 0 153.4k 1:02:17 35:08 27:09 146.5k 56 559.9M 0 0 56 316.1M 0 153.4k 1:02:17 35:10 27:07 155.4k 56 559.9M 0 0 56 316.3M 0 153.4k 1:02:17 35:11 27:06 154.5k 56 559.9M 0 0 56 316.6M 0 153.4k 1:02:16 35:12 27:04 181.8k 56 559.9M 0 0 56 316.8M 0 153.4k 1:02:16 35:14 27:02 181.2k 56 559.9M 0 0 56 317.0M 0 153.4k 1:02:16 35:15 27:01 177.3k 56 559.9M 0 0 56 317.2M 0 153.4k 1:02:16 35:16 27:00 170.3k 56 559.9M 0 0 56 317.4M 0 153.4k 1:02:16 35:17 26:59 166.4k 56 559.9M 0 0 56 317.6M 0 153.4k 1:02:16 35:19 26:57 146.2k 56 559.9M 0 0 56 317.7M 0 153.4k 1:02:17 35:20 26:57 131.6k 56 559.9M 0 0 56 317.8M 0 153.3k 1:02:18 35:22 26:56 120.6k 56 559.9M 0 0 56 318.0M 0 153.3k 1:02:19 35:23 26:56 119.0k 56 559.9M 0 0 56 318.1M 0 153.3k 1:02:19 35:24 26:55 114.0k 56 559.9M 0 0 56 318.3M 0 153.3k 1:02:19 35:25 26:54 117.5k 56 559.9M 0 0 56 318.5M 0 153.3k 1:02:19 35:27 26:52 131.8k 56 559.9M 0 0 56 318.7M 0 153.3k 1:02:19 35:28 26:51 142.1k 56 559.9M 0 0 56 318.8M 0 153.3k 1:02:20 35:29 26:51 133.8k 56 559.9M 0 0 56 319.0M 0 153.3k 1:02:20 35:31 26:49 139.6k 57 559.9M 0 0 57 319.2M 0 153.3k 1:02:20 35:32 26:48 141.5k 57 559.9M 0 0 57 319.4M 0 153.3k 1:02:20 35:33 26:47 143.2k 57 559.9M 0 0 57 319.6M 0 153.3k 1:02:20 35:34 26:46 147.1k 57 559.9M 0 0 57 319.8M 0 153.3k 1:02:19 35:35 26:44 168.5k 57 559.9M 0 0 57 320.0M 0 153.3k 1:02:18 35:36 26:42 173.7k 57 559.9M 0 0 57 320.3M 0 153.3k 1:02:18 35:38 26:40 182.0k 57 559.9M 0 0 57 320.6M 0 153.4k 1:02:16 35:39 26:37 206.3k 57 559.9M 0 0 57 320.8M 0 153.5k 1:02:15 35:40 26:35 220.1k 57 559.9M 0 0 57 321.0M 0 153.5k 1:02:15 35:41 26:34 212.3k 57 559.9M 0 0 57 321.2M 0 153.5k 1:02:15 35:42 26:33 210.8k 57 559.9M 0 0 57 321.3M 0 153.5k 1:02:15 35:43 26:32 195.0k 57 559.9M 0 0 57 321.5M 0 153.5k 1:02:15 35:45 26:30 172.0k 57 559.9M 0 0 57 321.7M 0 153.5k 1:02:15 35:46 26:29 155.7k 57 559.9M 0 0 57 321.8M 0 153.4k 1:02:16 35:47 26:29 139.3k 57 559.9M 0 0 57 322.0M 0 153.4k 1:02:16 35:49 26:27 129.7k 57 559.9M 0 0 57 322.2M 0 153.4k 1:02:16 35:50 26:26 139.9k 57 559.9M 0 0 57 322.5M 0 153.5k 1:02:15 35:51 26:24 154.3k 57 559.9M 0 0 57 322.7M 0 153.5k 1:02:14 35:52 26:22 166.3k 57 559.9M 0 0 57 322.8M 0 153.5k 1:02:15 35:53 26:22 175.2k 57 559.9M 0 0 57 323.0M 0 153.4k 1:02:16 35:55 26:21 161.2k 57 559.9M 0 0 57 323.1M 0 153.4k 1:02:16 35:56 26:20 150.4k 57 559.9M 0 0 57 323.3M 0 153.4k 1:02:16 35:57 26:19 135.9k 57 559.9M 0 0 57 323.5M 0 153.4k 1:02:16 35:58 26:18 121.0k 57 559.9M 0 0 57 323.6M 0 153.4k 1:02:17 36:00 26:17 115.8k 57 559.9M 0 0 57 323.8M 0 153.4k 1:02:18 36:01 26:17 130.9k 57 559.9M 0 0 57 323.9M 0 153.3k 1:02:18 36:02 26:16 128.2k 57 559.9M 0 0 57 324.0M 0 153.3k 1:02:19 36:03 26:16 117.4k 57 559.9M 0 0 57 324.2M 0 153.3k 1:02:19 36:05 26:14 118.2k 57 559.9M 0 0 57 324.3M 0 153.3k 1:02:19 36:06 26:13 125.4k 57 559.9M 0 0 57 324.5M 0 153.3k 1:02:20 36:07 26:13 121.5k 57 559.9M 0 0 57 324.6M 0 153.3k 1:02:20 36:08 26:12 129.2k 58 559.9M 0 0 58 324.8M 0 153.3k 1:02:20 36:09 26:11 136.5k 58 559.9M 0 0 58 325.1M 0 153.3k 1:02:20 36:11 26:09 142.9k 58 559.9M 0 0 58 325.3M 0 153.3k 1:02:20 36:12 26:08 144.2k 58 559.9M 0 0 58 325.5M 0 153.3k 1:02:20 36:13 26:07 153.5k 58 559.9M 0 0 58 325.6M 0 153.3k 1:02:19 36:15 26:04 157.6k 58 559.9M 0 0 58 325.8M 0 153.3k 1:02:19 36:16 26:03 167.0k 58 559.9M 0 0 58 326.0M 0 153.3k 1:02:20 36:17 26:03 155.9k 58 559.9M 0 0 58 326.2M 0 153.3k 1:02:19 36:18 26:01 161.9k 58 559.9M 0 0 58 326.4M 0 153.3k 1:02:19 36:19 26:00 159.6k 58 559.9M 0 0 58 326.5M 0 153.3k 1:02:20 36:21 25:59 144.2k 58 559.9M 0 0 58 326.6M 0 153.2k 1:02:21 36:22 25:59 131.2k 58 559.9M 0 0 58 326.8M 0 153.2k 1:02:20 36:23 25:57 141.5k 58 559.9M 0 0 58 327.0M 0 153.2k 1:02:21 36:24 25:57 130.3k 58 559.9M 0 0 58 327.1M 0 153.2k 1:02:22 36:26 25:56 113.1k 58 559.9M 0 0 58 327.3M 0 153.2k 1:02:22 36:27 25:55 122.0k 58 559.9M 0 0 58 327.5M 0 153.2k 1:02:22 36:28 25:54 128.0k 58 559.9M 0 0 58 327.6M 0 153.2k 1:02:22 36:30 25:52 148.2k 58 559.9M 0 0 58 327.6M 0 153.2k 1:02:22 36:30 25:52 153.2k 58 559.9M 0 0 58 327.9M 0 153.2k 1:02:21 36:31 25:50 209.1k 58 559.9M 0 0 58 328.1M 0 153.2k 1:02:21 36:32 25:49 181.8k 58 559.9M 0 0 58 328.3M 0 153.2k 1:02:21 36:33 25:48 180.3k 58 559.9M 0 0 58 328.6M 0 153.3k 1:02:19 36:34 25:45 205.4k 58 559.9M 0 0 58 328.8M 0 153.3k 1:02:19 36:35 25:44 201.6k 58 559.9M 0 0 58 329.0M 0 153.3k 1:02:20 36:37 25:43 180.7k 58 559.9M 0 0 58 329.1M 0 153.3k 1:02:20 36:38 25:42 175.6k 58 559.9M 0 0 58 329.2M 0 153.2k 1:02:21 36:39 25:42 158.7k 58 559.9M 0 0 58 329.3M 0 153.2k 1:02:21 36:40 25:41 126.9k 58 559.9M 0 0 58 329.5M 0 153.2k 1:02:22 36:42 25:40 116.7k 58 559.9M 0 0 58 329.6M 0 153.2k 1:02:22 36:43 25:39 113.5k 58 559.9M 0 0 58 329.8M 0 153.2k 1:02:22 36:44 25:38 119.8k 58 559.9M 0 0 58 330.0M 0 153.2k 1:02:22 36:45 25:37 133.8k 58 559.9M 0 0 58 330.2M 0 153.2k 1:02:22 36:47 25:35 138.9k 59 559.9M 0 0 59 330.4M 0 153.2k 1:02:23 36:48 25:35 142.6k 59 559.9M 0 0 59 330.6M 0 153.2k 1:02:22 36:49 25:33 159.5k 59 559.9M 0 0 59 330.8M 0 153.2k 1:02:21 36:50 25:31 165.4k 59 559.9M 0 0 59 331.0M 0 153.2k 1:02:21 36:51 25:30 167.1k 59 559.9M 0 0 59 331.2M 0 153.2k 1:02:21 36:53 25:28 175.1k 59 559.9M 0 0 59 331.5M 0 153.2k 1:02:20 36:54 25:26 190.3k 59 559.9M 0 0 59 331.6M 0 153.3k 1:02:20 36:55 25:25 186.4k 59 559.9M 0 0 59 331.8M 0 153.3k 1:02:20 36:56 25:24 180.8k 59 559.9M 0 0 59 332.0M 0 153.3k 1:02:20 36:57 25:23 178.2k 59 559.9M 0 0 59 332.3M 0 153.3k 1:02:19 36:59 25:20 179.7k 59 559.9M 0 0 59 332.5M 0 153.3k 1:02:19 37:00 25:19 174.0k 59 559.9M 0 0 59 332.6M 0 153.3k 1:02:19 37:01 25:18 169.5k 59 559.9M 0 0 59 332.8M 0 153.3k 1:02:19 37:02 25:17 167.6k 59 559.9M 0 0 59 333.0M 0 153.3k 1:02:19 37:03 25:16 159.5k 59 559.9M 0 0 59 333.1M 0 153.3k 1:02:20 37:05 25:15 140.3k 59 559.9M 0 0 59 333.2M 0 153.2k 1:02:21 37:06 25:15 122.0k 59 559.9M 0 0 59 333.3M 0 153.2k 1:02:22 37:07 25:15 109.5k 59 559.9M 0 0 59 333.5M 0 153.1k 1:02:23 37:09 25:14 97.69k 59 559.9M 0 0 59 333.6M 0 153.1k 1:02:23 37:10 25:13 99871 59 559.9M 0 0 59 333.7M 0 153.1k 1:02:24 37:11 25:13 99.61k 59 559.9M 0 0 59 333.9M 0 153.1k 1:02:24 37:12 25:12 113.2k 59 559.9M 0 0 59 334.1M 0 153.1k 1:02:23 37:13 25:10 136.8k 59 559.9M 0 0 59 334.4M 0 153.2k 1:02:22 37:15 25:07 159.2k 59 559.9M 0 0 59 334.6M 0 153.2k 1:02:22 37:16 25:06 166.6k 59 559.9M 0 0 59 334.8M 0 153.2k 1:02:22 37:17 25:05 178.2k 59 559.9M 0 0 59 334.9M 0 153.2k 1:02:22 37:18 25:04 171.8k 59 559.9M 0 0 59 335.0M 0 153.1k 1:02:23 37:19 25:04 150.1k 59 559.9M 0 0 59 335.1M 0 153.1k 1:02:23 37:20 25:03 135.5k 59 559.9M 0 0 59 335.3M 0 153.1k 1:02:24 37:22 25:02 126.6k 59 559.9M 0 0 59 335.5M 0 153.1k 1:02:24 37:23 25:01 122.5k 59 559.9M 0 0 59 335.6M 0 153.1k 1:02:24 37:24 25:00 135.6k 59 559.9M 0 0 59 335.8M 0 153.1k 1:02:23 37:25 24:58 147.2k 60 559.9M 0 0 60 336.1M 0 153.1k 1:02:23 37:26 24:57 165.8k 60 559.9M 0 0 60 336.3M 0 153.1k 1:02:23 37:27 24:56 171.5k 60 559.9M 0 0 60 336.4M 0 153.1k 1:02:23 37:29 24:54 168.0k 60 559.9M 0 0 60 336.5M 0 153.1k 1:02:23 37:30 24:53 157.2k 60 559.9M 0 0 60 336.8M 0 153.2k 1:02:23 37:31 24:52 169.2k 60 559.9M 0 0 60 337.0M 0 153.2k 1:02:22 37:32 24:50 171.9k 60 559.9M 0 0 60 337.3M 0 153.2k 1:02:21 37:33 24:48 185.0k 60 559.9M 0 0 60 337.5M 0 153.2k 1:02:20 37:34 24:46 195.1k 60 559.9M 0 0 60 337.7M 0 153.3k 1:02:20 37:35 24:45 209.5k 60 559.9M 0 0 60 337.8M 0 153.2k 1:02:20 37:36 24:44 190.9k 60 559.9M 0 0 60 338.0M 0 153.2k 1:02:21 37:38 24:43 166.2k 60 559.9M 0 0 60 338.1M 0 153.2k 1:02:21 37:39 24:42 148.3k 60 559.9M 0 0 60 338.3M 0 153.2k 1:02:21 37:40 24:41 147.3k 60 559.9M 0 0 60 338.5M 0 153.2k 1:02:21 37:42 24:39 131.0k 60 559.9M 0 0 60 338.6M 0 153.2k 1:02:22 37:43 24:39 131.9k 60 559.9M 0 0 60 338.8M 0 153.2k 1:02:21 37:44 24:37 142.9k 60 559.9M 0 0 60 339.0M 0 153.2k 1:02:21 37:45 24:36 150.8k 60 559.9M 0 0 60 339.2M 0 153.2k 1:02:21 37:46 24:35 149.5k 60 559.9M 0 0 60 339.4M 0 153.2k 1:02:21 37:47 24:34 158.6k 60 559.9M 0 0 60 339.6M 0 153.2k 1:02:21 37:49 24:32 162.6k 60 559.9M 0 0 60 339.7M 0 153.2k 1:02:22 37:50 24:32 147.3k 60 559.9M 0 0 60 339.9M 0 153.2k 1:02:22 37:51 24:31 140.4k 60 559.9M 0 0 60 340.1M 0 153.2k 1:02:22 37:53 24:29 141.6k 60 559.9M 0 0 60 340.3M 0 153.2k 1:02:21 37:54 24:27 155.2k 60 559.9M 0 0 60 340.6M 0 153.3k 1:02:19 37:55 24:24 181.7k 60 559.9M 0 0 60 341.0M 0 153.3k 1:02:18 37:56 24:22 208.3k 60 559.9M 0 0 60 341.1M 0 153.3k 1:02:18 37:57 24:21 220.6k 60 559.9M 0 0 60 341.3M 0 153.3k 1:02:18 37:59 24:19 211.2k 60 559.9M 0 0 60 341.5M 0 153.3k 1:02:18 38:00 24:18 189.7k 61 559.9M 0 0 61 341.6M 0 153.3k 1:02:19 38:01 24:18 157.3k 61 559.9M 0 0 61 341.7M 0 153.3k 1:02:20 38:02 24:18 128.4k 61 559.9M 0 0 61 341.8M 0 153.2k 1:02:20 38:03 24:17 116.7k 61 559.9M 0 0 61 342.0M 0 153.2k 1:02:21 38:05 24:16 115.8k 61 559.9M 0 0 61 342.2M 0 153.2k 1:02:21 38:06 24:15 120.8k 61 559.9M 0 0 61 342.4M 0 153.2k 1:02:21 38:07 24:14 124.7k 61 559.9M 0 0 61 342.6M 0 153.2k 1:02:21 38:09 24:12 138.8k 61 559.9M 0 0 61 342.7M 0 153.2k 1:02:21 38:10 24:11 136.4k 61 559.9M 0 0 61 342.8M 0 153.2k 1:02:22 38:11 24:11 133.6k 61 559.9M 0 0 61 343.0M 0 153.2k 1:02:22 38:12 24:10 133.2k 61 559.9M 0 0 61 343.2M 0 153.2k 1:02:22 38:13 24:09 137.4k 61 559.9M 0 0 61 343.5M 0 153.2k 1:02:21 38:15 24:06 146.5k 61 559.9M 0 0 61 343.7M 0 153.2k 1:02:20 38:16 24:04 173.0k 61 559.9M 0 0 61 344.0M 0 153.3k 1:02:19 38:17 24:02 191.8k 61 559.9M 0 0 61 344.1M 0 153.3k 1:02:19 38:18 24:01 196.5k 61 559.9M 0 0 61 344.4M 0 153.3k 1:02:19 38:19 24:00 206.6k 61 559.9M 0 0 61 344.6M 0 153.3k 1:02:18 38:20 23:58 199.3k 61 559.9M 0 0 61 344.8M 0 153.4k 1:02:17 38:21 23:56 198.7k 61 559.9M 0 0 61 345.0M 0 153.4k 1:02:17 38:23 23:54 184.7k 61 559.9M 0 0 61 345.2M 0 153.4k 1:02:17 38:24 23:53 186.5k 61 559.9M 0 0 61 345.4M 0 153.4k 1:02:17 38:25 23:52 176.4k 61 559.9M 0 0 61 345.5M 0 153.4k 1:02:18 38:26 23:52 167.1k 61 559.9M 0 0 61 345.6M 0 153.3k 1:02:18 38:27 23:51 143.3k 61 559.9M 0 0 61 345.8M 0 153.3k 1:02:18 38:28 23:50 148.8k 61 559.9M 0 0 61 346.1M 0 153.4k 1:02:17 38:29 23:48 160.1k 61 559.9M 0 0 61 346.3M 0 153.4k 1:02:16 38:31 23:45 174.9k 61 559.9M 0 0 61 346.6M 0 153.5k 1:02:15 38:32 23:43 197.8k 61 559.9M 0 0 61 346.9M 0 153.5k 1:02:14 38:33 23:41 225.5k 61 559.9M 0 0 61 347.1M 0 153.6k 1:02:13 38:34 23:39 237.8k 62 559.9M 0 0 62 347.5M 0 153.6k 1:02:11 38:35 23:36 257.8k 62 559.9M 0 0 62 347.8M 0 153.7k 1:02:10 38:36 23:34 263.8k 62 559.9M 0 0 62 348.0M 0 153.7k 1:02:09 38:37 23:32 254.4k 62 559.9M 0 0 62 348.2M 0 153.7k 1:02:10 38:39 23:31 216.1k 62 559.9M 0 0 62 348.3M 0 153.7k 1:02:10 38:40 23:30 192.4k 62 559.9M 0 0 62 348.5M 0 153.6k 1:02:11 38:42 23:29 151.4k 62 559.9M 0 0 62 348.6M 0 153.6k 1:02:11 38:43 23:28 136.6k 62 559.9M 0 0 62 348.8M 0 153.6k 1:02:11 38:44 23:27 125.4k 62 559.9M 0 0 62 349.0M 0 153.6k 1:02:11 38:45 23:26 138.8k 62 559.9M 0 0 62 349.2M 0 153.7k 1:02:10 38:46 23:24 152.5k 62 559.9M 0 0 62 349.3M 0 153.6k 1:02:11 38:47 23:24 151.4k 62 559.9M 0 0 62 349.5M 0 153.6k 1:02:12 38:49 23:23 140.3k 62 559.9M 0 0 62 349.6M 0 153.6k 1:02:12 38:50 23:22 134.7k 62 559.9M 0 0 62 349.8M 0 153.6k 1:02:12 38:51 23:21 134.6k 62 559.9M 0 0 62 350.0M 0 153.6k 1:02:12 38:52 23:20 126.5k 62 559.9M 0 0 62 350.1M 0 153.6k 1:02:13 38:53 23:20 127.5k 62 559.9M 0 0 62 350.3M 0 153.6k 1:02:13 38:55 23:18 134.6k 62 559.9M 0 0 62 350.5M 0 153.5k 1:02:13 38:56 23:17 139.0k 62 559.9M 0 0 62 350.6M 0 153.5k 1:02:13 38:58 23:15 130.0k 62 559.9M 0 0 62 350.8M 0 153.5k 1:02:14 38:59 23:15 118.8k 62 559.9M 0 0 62 350.9M 0 153.4k 1:02:16 39:01 23:15 112.8k 62 559.9M 0 0 62 351.1M 0 153.4k 1:02:16 39:02 23:14 109.4k 62 559.9M 0 0 62 351.3M 0 153.4k 1:02:16 39:04 23:12 112.5k 62 559.9M 0 0 62 351.5M 0 153.5k 1:02:15 39:05 23:10 128.3k 62 559.9M 0 0 62 351.7M 0 153.5k 1:02:15 39:06 23:09 144.7k 62 559.9M 0 0 62 351.9M 0 153.4k 1:02:15 39:07 23:08 158.4k 62 559.9M 0 0 62 352.1M 0 153.4k 1:02:15 39:09 23:06 165.5k 62 559.9M 0 0 62 352.2M 0 153.4k 1:02:16 39:10 23:06 156.1k 62 559.9M 0 0 62 352.3M 0 153.4k 1:02:17 39:11 23:06 127.6k 62 559.9M 0 0 62 352.4M 0 153.4k 1:02:17 39:12 23:05 115.0k 62 559.9M 0 0 62 352.5M 0 153.3k 1:02:18 39:13 23:05 109.6k 62 559.9M 0 0 62 352.6M 0 153.3k 1:02:18 39:14 23:04 102.3k 63 559.9M 0 0 63 352.8M 0 153.3k 1:02:19 39:15 23:04 101.2k 63 559.9M 0 0 63 353.0M 0 153.3k 1:02:19 39:17 23:02 117.7k 63 559.9M 0 0 63 353.1M 0 153.3k 1:02:19 39:18 23:01 130.9k 63 559.9M 0 0 63 353.4M 0 153.3k 1:02:18 39:19 22:59 148.5k 63 559.9M 0 0 63 353.6M 0 153.3k 1:02:18 39:21 22:57 162.4k 63 559.9M 0 0 63 353.8M 0 153.3k 1:02:18 39:22 22:56 170.9k 63 559.9M 0 0 63 354.0M 0 153.3k 1:02:18 39:23 22:55 172.5k 63 559.9M 0 0 63 354.3M 0 153.4k 1:02:17 39:24 22:53 182.5k 63 559.9M 0 0 63 354.6M 0 153.4k 1:02:16 39:25 22:51 195.0k 63 559.9M 0 0 63 354.8M 0 153.4k 1:02:15 39:27 22:48 195.0k 63 559.9M 0 0 63 355.0M 0 153.4k 1:02:15 39:28 22:47 192.2k 63 559.9M 0 0 63 355.1M 0 153.4k 1:02:16 39:29 22:47 185.7k 63 559.9M 0 0 63 355.2M 0 153.4k 1:02:17 39:30 22:47 158.0k 63 559.9M 0 0 63 355.3M 0 153.4k 1:02:17 39:32 22:45 124.1k 63 559.9M 0 0 63 355.5M 0 153.3k 1:02:18 39:33 22:45 113.1k 63 559.9M 0 0 63 355.6M 0 153.3k 1:02:18 39:34 22:44 113.0k 63 559.9M 0 0 63 355.8M 0 153.3k 1:02:19 39:36 22:43 113.6k 63 559.9M 0 0 63 356.0M 0 153.3k 1:02:19 39:37 22:42 119.1k 63 559.9M 0 0 63 356.2M 0 153.3k 1:02:18 39:38 22:40 139.6k 63 559.9M 0 0 63 356.4M 0 153.3k 1:02:18 39:39 22:39 146.8k 63 559.9M 0 0 63 356.6M 0 153.3k 1:02:19 39:41 22:38 144.4k 63 559.9M 0 0 63 356.7M 0 153.3k 1:02:19 39:42 22:37 145.4k 63 559.9M 0 0 63 356.9M 0 153.3k 1:02:19 39:43 22:36 149.4k 63 559.9M 0 0 63 357.0M 0 153.3k 1:02:19 39:44 22:35 135.8k 63 559.9M 0 0 63 357.2M 0 153.3k 1:02:20 39:45 22:35 133.6k 63 559.9M 0 0 63 357.4M 0 153.3k 1:02:19 39:47 22:32 140.3k 63 559.9M 0 0 63 357.6M 0 153.3k 1:02:19 39:48 22:31 148.0k 63 559.9M 0 0 63 357.8M 0 153.3k 1:02:19 39:49 22:30 149.1k 63 559.9M 0 0 63 358.0M 0 153.3k 1:02:19 39:50 22:29 155.8k 63 559.9M 0 0 63 358.1M 0 153.3k 1:02:20 39:51 22:29 154.0k 63 559.9M 0 0 63 358.3M 0 153.3k 1:02:20 39:53 22:27 150.5k 64 559.9M 0 0 64 358.5M 0 153.3k 1:02:20 39:54 22:26 147.7k 64 559.9M 0 0 64 358.7M 0 153.3k 1:02:19 39:55 22:24 158.4k 64 559.9M 0 0 64 359.0M 0 153.3k 1:02:19 39:56 22:23 165.6k 64 559.9M 0 0 64 359.2M 0 153.3k 1:02:18 39:58 22:20 180.5k 64 559.9M 0 0 64 359.4M 0 153.4k 1:02:18 39:59 22:19 183.6k 64 559.9M 0 0 64 359.6M 0 153.3k 1:02:18 40:00 22:18 177.6k 64 559.9M 0 0 64 359.7M 0 153.3k 1:02:19 40:02 22:17 160.4k 64 559.9M 0 0 64 359.8M 0 153.3k 1:02:19 40:03 22:16 146.8k 64 559.9M 0 0 64 360.0M 0 153.3k 1:02:19 40:04 22:15 137.8k 64 559.9M 0 0 64 360.2M 0 153.3k 1:02:19 40:05 22:14 129.5k 64 559.9M 0 0 64 360.3M 0 153.3k 1:02:20 40:06 22:14 130.8k 64 559.9M 0 0 64 360.5M 0 153.2k 1:02:20 40:08 22:12 128.8k 64 559.9M 0 0 64 360.6M 0 153.2k 1:02:21 40:09 22:12 121.3k 64 559.9M 0 0 64 360.8M 0 153.2k 1:02:22 40:11 22:11 113.3k 64 559.9M 0 0 64 361.0M 0 153.2k 1:02:22 40:12 22:10 117.6k 64 559.9M 0 0 64 361.1M 0 153.2k 1:02:21 40:13 22:08 126.6k 64 559.9M 0 0 64 361.3M 0 153.2k 1:02:21 40:14 22:07 136.5k 64 559.9M 0 0 64 361.5M 0 153.2k 1:02:21 40:15 22:06 155.7k 64 559.9M 0 0 64 361.8M 0 153.3k 1:02:20 40:16 22:04 184.0k 64 559.9M 0 0 64 362.1M 0 153.3k 1:02:19 40:18 22:01 188.8k 64 559.9M 0 0 64 362.2M 0 153.2k 1:02:20 40:19 22:01 171.0k 64 559.9M 0 0 64 362.3M 0 153.2k 1:02:20 40:20 22:00 168.1k 64 559.9M 0 0 64 362.5M 0 153.2k 1:02:21 40:22 21:59 150.8k 64 559.9M 0 0 64 362.6M 0 153.2k 1:02:21 40:23 21:58 125.8k 64 559.9M 0 0 64 362.8M 0 153.2k 1:02:21 40:24 21:57 120.8k 64 559.9M 0 0 64 363.0M 0 153.2k 1:02:21 40:25 21:56 133.1k 64 559.9M 0 0 64 363.2M 0 153.2k 1:02:21 40:27 21:54 138.5k 64 559.9M 0 0 64 363.4M 0 153.2k 1:02:22 40:28 21:54 140.4k 64 559.9M 0 0 64 363.5M 0 153.2k 1:02:22 40:29 21:53 139.2k 64 559.9M 0 0 64 363.8M 0 153.2k 1:02:22 40:31 21:51 150.8k 65 559.9M 0 0 65 364.0M 0 153.2k 1:02:22 40:32 21:50 148.6k 65 559.9M 0 0 65 364.1M 0 153.2k 1:02:22 40:33 21:49 150.1k 65 559.9M 0 0 65 364.3M 0 153.2k 1:02:22 40:34 21:48 155.7k 65 559.9M 0 0 65 364.4M 0 153.2k 1:02:22 40:35 21:47 156.4k 65 559.9M 0 0 65 364.5M 0 153.1k 1:02:23 40:36 21:47 132.5k 65 559.9M 0 0 65 364.7M 0 153.1k 1:02:23 40:38 21:45 133.1k 65 559.9M 0 0 65 364.8M 0 153.1k 1:02:24 40:39 21:45 118.9k 65 559.9M 0 0 65 365.0M 0 153.1k 1:02:23 40:40 21:43 127.3k 65 559.9M 0 0 65 365.2M 0 153.1k 1:02:23 40:41 21:42 132.9k 65 559.9M 0 0 65 365.4M 0 153.1k 1:02:24 40:43 21:41 141.3k 65 559.9M 0 0 65 365.6M 0 153.1k 1:02:24 40:44 21:40 140.0k 65 559.9M 0 0 65 365.7M 0 153.1k 1:02:24 40:45 21:39 140.9k 65 559.9M 0 0 65 365.8M 0 153.1k 1:02:25 40:47 21:38 130.8k 65 559.9M 0 0 65 366.0M 0 153.0k 1:02:25 40:48 21:37 123.9k 65 559.9M 0 0 65 366.1M 0 153.0k 1:02:26 40:49 21:37 117.3k 65 559.9M 0 0 65 366.3M 0 153.0k 1:02:26 40:50 21:36 111.5k 65 559.9M 0 0 65 366.4M 0 153.0k 1:02:27 40:52 21:35 111.1k 65 559.9M 0 0 65 366.5M 0 152.9k 1:02:28 40:53 21:35 105.3k 65 559.9M 0 0 65 366.7M 0 152.9k 1:02:28 40:54 21:34 112.0k 65 559.9M 0 0 65 366.8M 0 152.9k 1:02:29 40:56 21:33 109.7k 65 559.9M 0 0 65 367.1M 0 152.9k 1:02:28 40:57 21:31 126.6k 65 559.9M 0 0 65 367.3M 0 152.9k 1:02:28 40:58 21:30 133.7k 65 559.9M 0 0 65 367.4M 0 152.9k 1:02:29 41:00 21:29 137.9k 65 559.9M 0 0 65 367.5M 0 152.8k 1:02:30 41:01 21:29 124.5k 65 559.9M 0 0 65 367.6M 0 152.8k 1:02:31 41:03 21:28 122.0k 65 559.9M 0 0 65 367.8M 0 152.8k 1:02:31 41:04 21:27 112.7k 65 559.9M 0 0 65 368.0M 0 152.8k 1:02:31 41:05 21:26 117.6k 65 559.9M 0 0 65 368.3M 0 152.8k 1:02:30 41:06 21:24 137.6k 65 559.9M 0 0 65 368.5M 0 152.9k 1:02:30 41:07 21:23 158.0k 65 559.9M 0 0 65 368.6M 0 152.9k 1:02:30 41:08 21:22 172.3k 65 559.9M 0 0 65 368.9M 0 152.9k 1:02:29 41:10 21:19 181.8k 65 559.9M 0 0 65 369.1M 0 152.9k 1:02:29 41:11 21:18 183.2k 65 559.9M 0 0 65 369.3M 0 152.9k 1:02:28 41:12 21:16 178.9k 65 559.9M 0 0 65 369.5M 0 153.0k 1:02:27 41:13 21:14 191.9k 66 559.9M 0 0 66 369.7M 0 153.0k 1:02:27 41:14 21:13 194.7k 66 559.9M 0 0 66 369.9M 0 153.0k 1:02:27 41:15 21:12 191.6k 66 559.9M 0 0 66 370.1M 0 153.0k 1:02:26 41:16 21:10 196.3k 66 559.9M 0 0 66 370.4M 0 153.0k 1:02:26 41:18 21:08 205.7k 66 559.9M 0 0 66 370.6M 0 153.0k 1:02:25 41:19 21:06 191.8k 66 559.9M 0 0 66 370.8M 0 153.0k 1:02:25 41:20 21:05 188.0k 66 559.9M 0 0 66 371.0M 0 153.0k 1:02:26 41:21 21:05 175.1k 66 559.9M 0 0 66 371.1M 0 153.0k 1:02:26 41:23 21:03 153.9k 66 559.9M 0 0 66 371.2M 0 153.0k 1:02:27 41:24 21:03 126.9k 66 559.9M 0 0 66 371.3M 0 152.9k 1:02:28 41:25 21:03 117.7k 66 559.9M 0 0 66 371.5M 0 152.9k 1:02:28 41:26 21:02 118.3k 66 559.9M 0 0 66 371.7M 0 152.9k 1:02:28 41:28 21:00 118.2k 66 559.9M 0 0 66 371.8M 0 152.9k 1:02:28 41:29 20:59 122.9k 66 559.9M 0 0 66 372.0M 0 152.9k 1:02:29 41:30 20:59 130.4k 66 559.9M 0 0 66 372.1M 0 152.9k 1:02:29 41:31 20:58 131.4k 66 559.9M 0 0 66 372.3M 0 152.9k 1:02:29 41:32 20:57 124.8k 66 559.9M 0 0 66 372.5M 0 152.9k 1:02:29 41:34 20:55 133.3k 66 559.9M 0 0 66 372.6M 0 152.9k 1:02:29 41:35 20:54 144.5k 66 559.9M 0 0 66 372.9M 0 152.9k 1:02:28 41:36 20:52 164.3k 66 559.9M 0 0 66 373.1M 0 152.9k 1:02:27 41:37 20:50 177.7k 66 559.9M 0 0 66 373.3M 0 153.0k 1:02:27 41:38 20:49 184.6k 66 559.9M 0 0 66 373.5M 0 153.0k 1:02:27 41:40 20:47 179.5k 66 559.9M 0 0 66 373.7M 0 153.0k 1:02:27 41:41 20:46 181.3k 66 559.9M 0 0 66 374.0M 0 153.0k 1:02:26 41:42 20:44 192.9k 66 559.9M 0 0 66 374.0M 0 153.0k 1:02:26 41:42 20:44 153.0k 66 559.9M 0 0 66 374.2M 0 153.0k 1:02:25 41:43 20:42 218.0k 66 559.9M 0 0 66 374.5M 0 153.1k 1:02:24 41:44 20:40 232.4k 66 559.9M 0 0 66 374.7M 0 153.1k 1:02:24 41:45 20:39 220.4k 66 559.9M 0 0 66 374.9M 0 153.1k 1:02:23 41:46 20:37 212.0k 66 559.9M 0 0 66 375.1M 0 153.1k 1:02:23 41:47 20:36 213.2k 67 559.9M 0 0 67 375.4M 0 153.2k 1:02:22 41:49 20:33 215.7k 67 559.9M 0 0 67 375.6M 0 153.2k 1:02:22 41:50 20:32 203.7k 67 559.9M 0 0 67 375.8M 0 153.2k 1:02:22 41:51 20:31 194.3k 67 559.9M 0 0 67 376.0M 0 153.2k 1:02:21 41:52 20:29 206.3k 67 559.9M 0 0 67 376.2M 0 153.2k 1:02:20 41:53 20:27 199.3k 67 559.9M 0 0 67 376.4M 0 153.2k 1:02:20 41:54 20:26 179.5k 67 559.9M 0 0 67 376.6M 0 153.2k 1:02:20 41:55 20:25 176.9k 67 559.9M 0 0 67 376.8M 0 153.3k 1:02:20 41:56 20:24 179.8k 67 559.9M 0 0 67 377.0M 0 153.3k 1:02:20 41:58 20:22 167.8k 67 559.9M 0 0 67 377.1M 0 153.3k 1:02:20 41:59 20:21 167.7k 67 559.9M 0 0 67 377.4M 0 153.3k 1:02:19 42:00 20:19 182.7k 67 559.9M 0 0 67 377.6M 0 153.3k 1:02:19 42:01 20:18 185.1k 67 559.9M 0 0 67 377.8M 0 153.3k 1:02:19 42:02 20:17 182.0k 67 559.9M 0 0 67 378.0M 0 153.3k 1:02:18 42:03 20:15 183.3k 67 559.9M 0 0 67 378.2M 0 153.3k 1:02:18 42:05 20:13 179.8k 67 559.9M 0 0 67 378.4M 0 153.4k 1:02:18 42:06 20:12 174.4k 67 559.9M 0 0 67 378.6M 0 153.4k 1:02:17 42:07 20:10 177.6k 67 559.9M 0 0 67 378.8M 0 153.4k 1:02:17 42:08 20:09 170.9k 67 559.9M 0 0 67 379.0M 0 153.3k 1:02:18 42:10 20:08 152.7k 67 559.9M 0 0 67 379.1M 0 153.3k 1:02:18 42:11 20:07 149.9k 67 559.9M 0 0 67 379.3M 0 153.3k 1:02:18 42:12 20:06 143.3k 67 559.9M 0 0 67 379.5M 0 153.3k 1:02:19 42:14 20:05 132.1k 67 559.9M 0 0 67 379.7M 0 153.3k 1:02:19 42:15 20:04 135.0k 67 559.9M 0 0 67 379.8M 0 153.3k 1:02:20 42:17 20:03 127.8k 67 559.9M 0 0 67 380.0M 0 153.3k 1:02:20 42:18 20:02 125.5k 67 559.9M 0 0 67 380.2M 0 153.3k 1:02:20 42:19 20:01 127.9k 67 559.9M 0 0 67 380.5M 0 153.3k 1:02:20 42:21 19:59 137.1k 67 559.9M 0 0 67 380.6M 0 153.3k 1:02:20 42:22 19:58 133.0k 67 559.9M 0 0 67 380.7M 0 153.2k 1:02:20 42:23 19:57 145.9k 68 559.9M 0 0 68 380.9M 0 153.2k 1:02:21 42:24 19:57 143.1k 68 559.9M 0 0 68 381.1M 0 153.2k 1:02:21 42:26 19:55 142.2k 68 559.9M 0 0 68 381.3M 0 153.2k 1:02:21 42:27 19:54 131.9k 68 559.9M 0 0 68 381.5M 0 153.2k 1:02:21 42:28 19:53 136.2k 68 559.9M 0 0 68 381.6M 0 153.2k 1:02:21 42:30 19:51 139.5k 68 559.9M 0 0 68 381.8M 0 153.2k 1:02:21 42:31 19:50 140.6k 68 559.9M 0 0 68 382.0M 0 153.2k 1:02:22 42:32 19:50 136.8k 68 559.9M 0 0 68 382.1M 0 153.2k 1:02:22 42:33 19:49 132.7k 68 559.9M 0 0 68 382.3M 0 153.2k 1:02:22 42:35 19:47 131.2k 68 559.9M 0 0 68 382.4M 0 153.1k 1:02:23 42:36 19:47 122.4k 68 559.9M 0 0 68 382.5M 0 153.1k 1:02:23 42:37 19:46 120.5k 68 559.9M 0 0 68 382.6M 0 153.1k 1:02:24 42:38 19:46 117.6k 68 559.9M 0 0 68 382.8M 0 153.1k 1:02:24 42:39 19:45 118.1k 68 559.9M 0 0 68 382.9M 0 153.1k 1:02:25 42:41 19:44 107.4k 68 559.9M 0 0 68 383.0M 0 153.0k 1:02:26 42:42 19:44 100.9k 68 559.9M 0 0 68 383.1M 0 153.0k 1:02:26 42:43 19:43 102.2k 68 559.9M 0 0 68 383.3M 0 153.0k 1:02:27 42:45 19:42 107.2k 68 559.9M 0 0 68 383.5M 0 153.0k 1:02:27 42:46 19:41 114.0k 68 559.9M 0 0 68 383.6M 0 153.0k 1:02:27 42:47 19:40 120.2k 68 559.9M 0 0 68 383.8M 0 153.0k 1:02:27 42:48 19:39 144.1k 68 559.9M 0 0 68 384.0M 0 153.0k 1:02:27 42:49 19:38 142.6k 68 559.9M 0 0 68 384.1M 0 153.0k 1:02:27 42:51 19:36 140.8k 68 559.9M 0 0 68 384.3M 0 152.9k 1:02:28 42:52 19:36 134.3k 68 559.9M 0 0 68 384.4M 0 152.9k 1:02:28 42:53 19:35 126.6k 68 559.9M 0 0 68 384.6M 0 152.9k 1:02:29 42:54 19:35 121.3k 68 559.9M 0 0 68 384.8M 0 152.9k 1:02:28 42:56 19:32 138.0k 68 559.9M 0 0 68 385.0M 0 152.9k 1:02:29 42:57 19:32 132.6k 68 559.9M 0 0 68 385.1M 0 152.9k 1:02:28 42:58 19:30 140.1k 68 559.9M 0 0 68 385.5M 0 153.0k 1:02:27 42:59 19:28 173.9k 68 559.9M 0 0 68 385.6M 0 152.9k 1:02:27 43:01 19:26 170.1k 68 559.9M 0 0 68 385.8M 0 152.9k 1:02:28 43:02 19:26 156.3k 68 559.9M 0 0 68 386.0M 0 152.9k 1:02:28 43:03 19:25 163.2k 68 559.9M 0 0 68 386.2M 0 153.0k 1:02:27 43:05 19:22 169.1k 69 559.9M 0 0 69 386.5M 0 153.0k 1:02:27 43:06 19:21 161.4k 69 559.9M 0 0 69 386.6M 0 153.0k 1:02:26 43:07 19:19 171.9k 69 559.9M 0 0 69 386.8M 0 153.0k 1:02:26 43:08 19:18 182.2k 69 559.9M 0 0 69 387.0M 0 153.0k 1:02:27 43:09 19:18 173.9k 69 559.9M 0 0 69 387.1M 0 153.0k 1:02:27 43:11 19:16 161.1k 69 559.9M 0 0 69 387.3M 0 153.0k 1:02:27 43:12 19:15 150.7k 69 559.9M 0 0 69 387.6M 0 153.0k 1:02:27 43:13 19:14 151.1k 69 559.9M 0 0 69 387.8M 0 153.0k 1:02:26 43:14 19:12 150.1k 69 559.9M 0 0 69 388.0M 0 153.0k 1:02:26 43:16 19:10 155.8k 69 559.9M 0 0 69 388.1M 0 153.0k 1:02:27 43:17 19:10 154.6k 69 559.9M 0 0 69 388.3M 0 153.0k 1:02:27 43:18 19:09 148.7k 69 559.9M 0 0 69 388.5M 0 153.0k 1:02:27 43:19 19:08 144.2k 69 559.9M 0 0 69 388.6M 0 153.0k 1:02:27 43:21 19:06 141.7k 69 559.9M 0 0 69 388.9M 0 153.0k 1:02:26 43:22 19:04 154.8k 69 559.9M 0 0 69 389.1M 0 153.0k 1:02:27 43:24 19:03 149.7k 69 559.9M 0 0 69 389.2M 0 152.9k 1:02:28 43:25 19:03 146.1k 69 559.9M 0 0 69 389.4M 0 152.9k 1:02:27 43:26 19:01 145.8k 69 559.9M 0 0 69 389.6M 0 153.0k 1:02:27 43:27 19:00 154.1k 69 559.9M 0 0 69 389.8M 0 153.0k 1:02:27 43:28 18:59 148.4k 69 559.9M 0 0 69 390.0M 0 153.0k 1:02:27 43:29 18:58 162.6k 69 559.9M 0 0 69 390.2M 0 153.0k 1:02:27 43:31 18:56 167.5k 69 559.9M 0 0 69 390.4M 0 153.0k 1:02:27 43:32 18:55 169.6k 69 559.9M 0 0 69 390.5M 0 153.0k 1:02:27 43:33 18:54 153.6k 69 559.9M 0 0 69 390.7M 0 153.0k 1:02:27 43:34 18:53 145.5k 69 559.9M 0 0 69 390.8M 0 152.9k 1:02:28 43:36 18:52 132.3k 69 559.9M 0 0 69 391.0M 0 152.9k 1:02:28 43:37 18:51 122.6k 69 559.9M 0 0 69 391.1M 0 152.9k 1:02:29 43:39 18:50 117.4k 69 559.9M 0 0 69 391.3M 0 152.9k 1:02:29 43:40 18:49 122.5k 69 559.9M 0 0 69 391.5M 0 152.9k 1:02:29 43:41 18:48 119.4k 69 559.9M 0 0 69 391.6M 0 152.8k 1:02:30 43:42 18:48 117.8k 69 559.9M 0 0 69 391.7M 0 152.8k 1:02:31 43:44 18:47 118.2k 69 559.9M 0 0 69 391.9M 0 152.8k 1:02:31 43:45 18:46 117.0k 70 559.9M 0 0 70 392.1M 0 152.8k 1:02:31 43:46 18:45 121.0k 70 559.9M 0 0 70 392.3M 0 152.8k 1:02:31 43:47 18:44 129.7k 70 559.9M 0 0 70 392.4M 0 152.8k 1:02:31 43:49 18:42 127.9k 70 559.9M 0 0 70 392.5M 0 152.8k 1:02:32 43:50 18:42 132.9k 70 559.9M 0 0 70 392.7M 0 152.8k 1:02:31 43:51 18:40 143.8k 70 559.9M 0 0 70 392.9M 0 152.8k 1:02:31 43:52 18:39 141.6k 70 559.9M 0 0 70 393.1M 0 152.8k 1:02:31 43:53 18:38 148.2k 70 559.9M 0 0 70 393.3M 0 152.8k 1:02:31 43:55 18:36 164.0k 70 559.9M 0 0 70 393.5M 0 152.8k 1:02:31 43:56 18:35 173.7k 70 559.9M 0 0 70 393.6M 0 152.8k 1:02:31 43:57 18:34 160.3k 70 559.9M 0 0 70 393.8M 0 152.8k 1:02:32 43:58 18:34 148.7k 70 559.9M 0 0 70 394.0M 0 152.8k 1:02:32 43:59 18:33 139.1k 70 559.9M 0 0 70 394.1M 0 152.8k 1:02:32 44:01 18:31 137.4k 70 559.9M 0 0 70 394.3M 0 152.8k 1:02:32 44:02 18:30 131.5k 70 559.9M 0 0 70 394.5M 0 152.8k 1:02:32 44:03 18:29 138.1k 70 559.9M 0 0 70 394.6M 0 152.8k 1:02:32 44:04 18:28 141.8k 70 559.9M 0 0 70 394.8M 0 152.7k 1:02:33 44:06 18:27 134.3k 70 559.9M 0 0 70 395.0M 0 152.7k 1:02:33 44:07 18:26 133.6k 70 559.9M 0 0 70 395.1M 0 152.7k 1:02:33 44:08 18:25 130.3k 70 559.9M 0 0 70 395.2M 0 152.7k 1:02:33 44:09 18:24 125.7k 70 559.9M 0 0 70 395.3M 0 152.7k 1:02:34 44:10 18:24 126.7k 70 559.9M 0 0 70 395.5M 0 152.7k 1:02:34 44:11 18:23 127.7k 70 559.9M 0 0 70 395.6M 0 152.7k 1:02:34 44:13 18:21 124.7k 70 559.9M 0 0 70 395.8M 0 152.7k 1:02:34 44:14 18:20 134.0k 70 559.9M 0 0 70 396.0M 0 152.7k 1:02:34 44:15 18:19 138.2k 70 559.9M 0 0 70 396.2M 0 152.7k 1:02:34 44:16 18:18 145.7k 70 559.9M 0 0 70 396.4M 0 152.7k 1:02:34 44:17 18:17 149.9k 70 559.9M 0 0 70 396.6M 0 152.7k 1:02:34 44:19 18:15 153.0k 70 559.9M 0 0 70 396.8M 0 152.7k 1:02:35 44:20 18:15 143.0k 70 559.9M 0 0 70 396.9M 0 152.6k 1:02:35 44:22 18:13 135.2k 70 559.9M 0 0 70 397.1M 0 152.6k 1:02:35 44:23 18:12 137.4k 70 559.9M 0 0 70 397.4M 0 152.7k 1:02:34 44:24 18:10 160.3k 71 559.9M 0 0 71 397.6M 0 152.7k 1:02:33 44:25 18:08 169.5k 71 559.9M 0 0 71 397.8M 0 152.7k 1:02:33 44:26 18:07 175.2k 71 559.9M 0 0 71 398.0M 0 152.7k 1:02:33 44:27 18:06 184.6k 71 559.9M 0 0 71 398.1M 0 152.7k 1:02:33 44:29 18:04 181.7k 71 559.9M 0 0 71 398.3M 0 152.7k 1:02:33 44:30 18:03 158.9k 71 559.9M 0 0 71 398.5M 0 152.7k 1:02:33 44:31 18:02 156.5k 71 559.9M 0 0 71 398.7M 0 152.7k 1:02:33 44:32 18:01 159.5k 71 559.9M 0 0 71 398.9M 0 152.7k 1:02:33 44:33 18:00 164.2k 71 559.9M 0 0 71 399.1M 0 152.8k 1:02:32 44:34 17:58 174.5k 71 559.9M 0 0 71 399.4M 0 152.8k 1:02:31 44:36 17:55 188.6k 71 559.9M 0 0 71 399.6M 0 152.8k 1:02:31 44:37 17:54 189.2k 71 559.9M 0 0 71 399.8M 0 152.8k 1:02:31 44:38 17:53 190.2k 71 559.9M 0 0 71 400.0M 0 152.8k 1:02:31 44:39 17:52 191.6k 71 559.9M 0 0 71 400.1M 0 152.8k 1:02:31 44:40 17:51 178.2k 71 559.9M 0 0 71 400.3M 0 152.8k 1:02:31 44:42 17:49 158.8k 71 559.9M 0 0 71 400.5M 0 152.8k 1:02:31 44:43 17:48 159.5k 71 559.9M 0 0 71 400.7M 0 152.8k 1:02:31 44:44 17:47 159.4k 71 559.9M 0 0 71 401.0M 0 152.8k 1:02:30 44:45 17:45 167.2k 71 559.9M 0 0 71 401.1M 0 152.8k 1:02:30 44:47 17:43 160.6k 71 559.9M 0 0 71 401.3M 0 152.8k 1:02:30 44:48 17:42 166.6k 71 559.9M 0 0 71 401.5M 0 152.8k 1:02:30 44:49 17:41 162.4k 71 559.9M 0 0 71 401.7M 0 152.8k 1:02:31 44:51 17:40 156.3k 71 559.9M 0 0 71 401.8M 0 152.8k 1:02:31 44:52 17:39 139.6k 71 559.9M 0 0 71 402.0M 0 152.8k 1:02:31 44:53 17:38 138.7k 71 559.9M 0 0 71 402.1M 0 152.8k 1:02:32 44:54 17:38 129.4k 71 559.9M 0 0 71 402.2M 0 152.8k 1:02:32 44:55 17:37 122.2k 71 559.9M 0 0 71 402.4M 0 152.8k 1:02:32 44:56 17:36 130.3k 71 559.9M 0 0 71 402.6M 0 152.8k 1:02:32 44:57 17:35 129.5k 71 559.9M 0 0 71 402.8M 0 152.8k 1:02:32 44:59 17:33 131.7k 71 559.9M 0 0 71 403.0M 0 152.7k 1:02:32 45:00 17:32 136.6k 71 559.9M 0 0 71 403.1M 0 152.7k 1:02:32 45:02 17:30 143.8k 72 559.9M 0 0 72 403.4M 0 152.8k 1:02:32 45:03 17:29 150.7k 72 559.9M 0 0 72 403.6M 0 152.8k 1:02:31 45:04 17:27 163.2k 72 559.9M 0 0 72 403.8M 0 152.8k 1:02:31 45:05 17:26 167.2k 72 559.9M 0 0 72 404.0M 0 152.8k 1:02:31 45:06 17:25 174.5k 72 559.9M 0 0 72 404.2M 0 152.8k 1:02:31 45:08 17:23 179.0k 72 559.9M 0 0 72 404.4M 0 152.8k 1:02:31 45:09 17:22 168.3k 72 559.9M 0 0 72 404.6M 0 152.8k 1:02:31 45:10 17:21 160.5k 72 559.9M 0 0 72 404.7M 0 152.8k 1:02:32 45:11 17:21 149.8k 72 559.9M 0 0 72 404.8M 0 152.8k 1:02:32 45:12 17:20 142.3k 72 559.9M 0 0 72 405.0M 0 152.8k 1:02:32 45:14 17:18 130.5k 72 559.9M 0 0 72 405.1M 0 152.7k 1:02:33 45:15 17:18 123.4k 72 559.9M 0 0 72 405.3M 0 152.7k 1:02:33 45:17 17:16 117.8k 72 559.9M 0 0 72 405.5M 0 152.7k 1:02:34 45:18 17:16 117.9k 72 559.9M 0 0 72 405.6M 0 152.7k 1:02:34 45:19 17:15 122.8k 72 559.9M 0 0 72 405.8M 0 152.7k 1:02:34 45:21 17:13 122.9k 72 559.9M 0 0 72 406.0M 0 152.7k 1:02:34 45:22 17:12 129.1k 72 559.9M 0 0 72 406.2M 0 152.7k 1:02:34 45:23 17:11 137.6k 72 559.9M 0 0 72 406.4M 0 152.7k 1:02:34 45:25 17:09 144.1k 72 559.9M 0 0 72 406.5M 0 152.7k 1:02:34 45:26 17:08 139.9k 72 559.9M 0 0 72 406.7M 0 152.7k 1:02:35 45:27 17:08 143.1k 72 559.9M 0 0 72 406.9M 0 152.7k 1:02:35 45:28 17:07 142.6k 72 559.9M 0 0 72 407.1M 0 152.6k 1:02:35 45:30 17:05 136.3k 72 559.9M 0 0 72 407.3M 0 152.6k 1:02:35 45:31 17:04 141.1k 72 559.9M 0 0 72 407.5M 0 152.6k 1:02:35 45:32 17:03 142.5k 72 559.9M 0 0 72 407.6M 0 152.6k 1:02:35 45:34 17:01 144.5k 72 559.9M 0 0 72 407.8M 0 152.6k 1:02:35 45:35 17:00 138.4k 72 559.9M 0 0 72 408.0M 0 152.6k 1:02:36 45:36 17:00 140.9k 72 559.9M 0 0 72 408.1M 0 152.6k 1:02:36 45:37 16:59 138.8k 72 559.9M 0 0 72 408.4M 0 152.6k 1:02:35 45:38 16:57 157.1k 72 559.9M 0 0 72 408.6M 0 152.7k 1:02:34 45:39 16:55 163.7k 73 559.9M 0 0 73 408.8M 0 152.7k 1:02:34 45:41 16:53 176.4k 73 559.9M 0 0 73 409.0M 0 152.7k 1:02:34 45:42 16:52 177.1k 73 559.9M 0 0 73 409.1M 0 152.7k 1:02:34 45:43 16:51 179.8k 73 559.9M 0 0 73 409.3M 0 152.7k 1:02:35 45:45 16:50 157.7k 73 559.9M 0 0 73 409.5M 0 152.6k 1:02:35 45:46 16:49 138.4k 73 559.9M 0 0 73 409.6M 0 152.6k 1:02:36 45:47 16:49 127.3k 73 559.9M 0 0 73 409.8M 0 152.6k 1:02:36 45:48 16:48 127.4k 73 559.9M 0 0 73 410.0M 0 152.6k 1:02:36 45:50 16:46 130.0k 73 559.9M 0 0 73 410.1M 0 152.6k 1:02:36 45:51 16:45 135.6k 73 559.9M 0 0 73 410.3M 0 152.6k 1:02:36 45:52 16:44 134.0k 73 559.9M 0 0 73 410.5M 0 152.6k 1:02:37 45:54 16:43 137.9k 73 559.9M 0 0 73 410.6M 0 152.6k 1:02:36 45:55 16:41 144.9k 73 559.9M 0 0 73 410.8M 0 152.6k 1:02:36 45:56 16:40 146.1k 73 559.9M 0 0 73 411.0M 0 152.6k 1:02:37 45:57 16:40 133.5k 73 559.9M 0 0 73 411.1M 0 152.6k 1:02:37 45:58 16:39 136.1k 73 559.9M 0 0 73 411.3M 0 152.6k 1:02:37 45:59 16:38 142.5k 73 559.9M 0 0 73 411.5M 0 152.6k 1:02:36 46:01 16:35 148.2k 73 559.9M 0 0 73 411.7M 0 152.6k 1:02:36 46:02 16:34 146.6k 73 559.9M 0 0 73 411.9M 0 152.6k 1:02:36 46:03 16:33 155.1k 73 559.9M 0 0 73 412.0M 0 152.6k 1:02:37 46:04 16:33 157.0k 73 559.9M 0 0 73 412.1M 0 152.5k 1:02:37 46:06 16:31 145.9k 73 559.9M 0 0 73 412.3M 0 152.5k 1:02:38 46:07 16:31 130.8k 73 559.9M 0 0 73 412.5M 0 152.5k 1:02:38 46:09 16:29 120.9k 73 559.9M 0 0 73 412.6M 0 152.5k 1:02:38 46:10 16:28 117.5k 73 559.9M 0 0 73 412.8M 0 152.5k 1:02:38 46:11 16:27 128.3k 73 559.9M 0 0 73 413.1M 0 152.5k 1:02:38 46:12 16:26 143.0k 73 559.9M 0 0 73 413.2M 0 152.5k 1:02:39 46:14 16:25 136.2k 73 559.9M 0 0 73 413.4M 0 152.5k 1:02:39 46:15 16:24 142.0k 73 559.9M 0 0 73 413.6M 0 152.5k 1:02:39 46:16 16:23 151.0k 73 559.9M 0 0 73 413.8M 0 152.5k 1:02:38 46:17 16:21 161.0k 73 559.9M 0 0 73 414.0M 0 152.5k 1:02:38 46:19 16:19 150.4k 73 559.9M 0 0 73 414.3M 0 152.5k 1:02:38 46:20 16:18 172.0k 74 559.9M 0 0 74 414.6M 0 152.6k 1:02:36 46:21 16:15 197.6k 74 559.9M 0 0 74 414.8M 0 152.6k 1:02:36 46:23 16:13 191.5k 74 559.9M 0 0 74 415.0M 0 152.6k 1:02:36 46:24 16:12 178.8k 74 559.9M 0 0 74 415.2M 0 152.6k 1:02:37 46:25 16:12 178.8k 74 559.9M 0 0 74 415.3M 0 152.6k 1:02:37 46:27 16:10 163.9k 74 559.9M 0 0 74 415.5M 0 152.6k 1:02:37 46:28 16:09 139.2k 74 559.9M 0 0 74 415.7M 0 152.5k 1:02:37 46:29 16:08 135.3k 74 559.9M 0 0 74 416.0M 0 152.6k 1:02:37 46:31 16:06 140.4k 74 559.9M 0 0 74 416.1M 0 152.5k 1:02:38 46:32 16:06 134.2k 74 559.9M 0 0 74 416.2M 0 152.5k 1:02:38 46:33 16:05 135.8k 74 559.9M 0 0 74 416.5M 0 152.5k 1:02:37 46:34 16:03 148.8k 74 559.9M 0 0 74 416.6M 0 152.6k 1:02:37 46:36 16:01 154.8k 74 559.9M 0 0 74 416.8M 0 152.6k 1:02:37 46:37 16:00 157.2k 74 559.9M 0 0 74 417.1M 0 152.6k 1:02:36 46:38 15:58 180.4k 74 559.9M 0 0 74 417.3M 0 152.6k 1:02:36 46:39 15:57 192.6k 74 559.9M 0 0 74 417.5M 0 152.6k 1:02:36 46:40 15:56 188.2k 74 559.9M 0 0 74 417.7M 0 152.6k 1:02:36 46:42 15:54 179.9k 74 559.9M 0 0 74 417.9M 0 152.6k 1:02:36 46:43 15:53 176.4k 74 559.9M 0 0 74 418.1M 0 152.6k 1:02:36 46:44 15:52 166.3k 74 559.9M 0 0 74 418.4M 0 152.7k 1:02:34 46:45 15:49 180.0k 74 559.9M 0 0 74 418.6M 0 152.7k 1:02:33 46:46 15:47 193.1k 74 559.9M 0 0 74 418.9M 0 152.7k 1:02:33 46:47 15:46 209.2k 74 559.9M 0 0 74 419.1M 0 152.7k 1:02:33 46:49 15:44 194.4k 74 559.9M 0 0 74 419.2M 0 152.7k 1:02:34 46:50 15:44 185.8k 74 559.9M 0 0 74 419.4M 0 152.7k 1:02:34 46:52 15:42 160.4k 74 559.9M 0 0 74 419.6M 0 152.7k 1:02:34 46:53 15:41 141.0k 74 559.9M 0 0 74 419.8M 0 152.7k 1:02:34 46:54 15:40 132.5k 75 559.9M 0 0 75 420.0M 0 152.7k 1:02:34 46:55 15:39 142.5k 75 559.9M 0 0 75 420.1M 0 152.7k 1:02:34 46:56 15:38 156.0k 75 559.9M 0 0 75 420.4M 0 152.7k 1:02:33 46:57 15:36 171.2k 75 559.9M 0 0 75 420.6M 0 152.8k 1:02:32 46:59 15:33 208.8k 75 559.9M 0 0 75 420.6M 0 152.8k 1:02:32 46:59 15:33 152.8k 75 559.9M 0 0 75 420.9M 0 152.8k 1:02:32 47:00 15:32 211.2k 75 559.9M 0 0 75 421.1M 0 152.8k 1:02:32 47:01 15:31 177.7k 75 559.9M 0 0 75 421.3M 0 152.8k 1:02:32 47:02 15:30 170.9k 75 559.9M 0 0 75 421.5M 0 152.8k 1:02:32 47:04 15:28 165.1k 75 559.9M 0 0 75 421.6M 0 152.7k 1:02:32 47:05 15:27 148.2k 75 559.9M 0 0 75 421.7M 0 152.7k 1:02:33 47:07 15:26 121.2k 75 559.9M 0 0 75 421.8M 0 152.7k 1:02:34 47:08 15:26 112.3k 75 559.9M 0 0 75 422.0M 0 152.7k 1:02:35 47:09 15:26 100.5k 75 559.9M 0 0 75 422.1M 0 152.6k 1:02:35 47:11 15:24 98.18k 75 559.9M 0 0 75 422.3M 0 152.6k 1:02:35 47:12 15:23 103.0k 75 559.9M 0 0 75 422.5M 0 152.6k 1:02:36 47:13 15:23 115.3k 75 559.9M 0 0 75 422.6M 0 152.6k 1:02:36 47:14 15:22 119.4k 75 559.9M 0 0 75 422.8M 0 152.6k 1:02:36 47:16 15:20 129.6k 75 559.9M 0 0 75 423.0M 0 152.6k 1:02:36 47:17 15:19 139.7k 75 559.9M 0 0 75 423.1M 0 152.6k 1:02:36 47:18 15:18 150.7k 75 559.9M 0 0 75 423.3M 0 152.6k 1:02:36 47:19 15:17 149.6k 75 559.9M 0 0 75 423.4M 0 152.6k 1:02:36 47:20 15:16 143.2k 75 559.9M 0 0 75 423.6M 0 152.6k 1:02:37 47:22 15:15 141.3k 75 559.9M 0 0 75 423.8M 0 152.6k 1:02:37 47:23 15:14 136.0k 75 559.9M 0 0 75 423.9M 0 152.6k 1:02:37 47:24 15:13 126.8k 75 559.9M 0 0 75 424.0M 0 152.5k 1:02:38 47:25 15:13 121.0k 75 559.9M 0 0 75 424.2M 0 152.5k 1:02:38 47:27 15:11 127.1k 75 559.9M 0 0 75 424.4M 0 152.5k 1:02:38 47:28 15:10 128.5k 75 559.9M 0 0 75 424.5M 0 152.5k 1:02:38 47:29 15:09 119.3k 75 559.9M 0 0 75 424.7M 0 152.5k 1:02:39 47:31 15:08 123.1k 75 559.9M 0 0 75 424.9M 0 152.5k 1:02:38 47:32 15:06 136.6k 75 559.9M 0 0 75 425.1M 0 152.5k 1:02:38 47:33 15:05 150.7k 75 559.9M 0 0 75 425.4M 0 152.5k 1:02:37 47:34 15:03 163.5k 76 559.9M 0 0 76 425.6M 0 152.6k 1:02:37 47:36 15:01 182.0k 76 559.9M 0 0 76 425.8M 0 152.5k 1:02:37 47:37 15:00 173.3k 76 559.9M 0 0 76 426.0M 0 152.5k 1:02:38 47:39 14:59 160.6k 76 559.9M 0 0 76 426.1M 0 152.5k 1:02:38 47:40 14:58 152.3k 76 559.9M 0 0 76 426.3M 0 152.5k 1:02:38 47:41 14:57 148.0k 76 559.9M 0 0 76 426.5M 0 152.5k 1:02:37 47:42 14:55 143.5k 76 559.9M 0 0 76 426.7M 0 152.5k 1:02:37 47:43 14:54 152.3k 76 559.9M 0 0 76 426.9M 0 152.6k 1:02:37 47:44 14:53 167.1k 76 559.9M 0 0 76 427.0M 0 152.5k 1:02:37 47:45 14:52 162.7k 76 559.9M 0 0 76 427.2M 0 152.5k 1:02:38 47:47 14:51 153.5k 76 559.9M 0 0 76 427.5M 0 152.6k 1:02:37 47:48 14:49 162.5k 76 559.9M 0 0 76 427.6M 0 152.6k 1:02:37 47:49 14:48 167.4k 76 559.9M 0 0 76 427.8M 0 152.6k 1:02:37 47:50 14:47 152.8k 76 559.9M 0 0 76 427.9M 0 152.5k 1:02:38 47:51 14:47 148.3k 76 559.9M 0 0 76 428.0M 0 152.5k 1:02:38 47:53 14:45 136.8k 76 559.9M 0 0 76 428.1M 0 152.5k 1:02:39 47:54 14:45 109.1k 76 559.9M 0 0 76 428.3M 0 152.5k 1:02:40 47:55 14:45 98.56k 76 559.9M 0 0 76 428.5M 0 152.5k 1:02:40 47:57 14:43 108.5k 76 559.9M 0 0 76 428.6M 0 152.5k 1:02:40 47:58 14:42 117.8k 76 559.9M 0 0 76 428.8M 0 152.5k 1:02:40 47:59 14:41 132.0k 76 559.9M 0 0 76 429.0M 0 152.5k 1:02:39 48:00 14:39 149.6k 76 559.9M 0 0 76 429.1M 0 152.5k 1:02:40 48:01 14:39 153.5k 76 559.9M 0 0 76 429.3M 0 152.5k 1:02:39 48:02 14:37 160.2k 76 559.9M 0 0 76 429.6M 0 152.5k 1:02:38 48:03 14:35 183.6k 76 559.9M 0 0 76 429.9M 0 152.5k 1:02:37 48:05 14:32 198.5k 76 559.9M 0 0 76 430.1M 0 152.6k 1:02:37 48:06 14:31 207.7k 76 559.9M 0 0 76 430.3M 0 152.6k 1:02:37 48:07 14:30 215.2k 76 559.9M 0 0 76 430.5M 0 152.6k 1:02:36 48:08 14:28 212.5k 76 559.9M 0 0 76 430.8M 0 152.6k 1:02:36 48:09 14:27 193.9k 76 559.9M 0 0 76 431.0M 0 152.6k 1:02:36 48:11 14:25 175.7k 76 559.9M 0 0 76 431.1M 0 152.6k 1:02:36 48:12 14:24 163.1k 77 559.9M 0 0 77 431.3M 0 152.6k 1:02:37 48:13 14:24 152.2k 77 559.9M 0 0 77 431.5M 0 152.6k 1:02:36 48:14 14:22 151.8k 77 559.9M 0 0 77 431.7M 0 152.6k 1:02:36 48:16 14:20 156.6k 77 559.9M 0 0 77 432.0M 0 152.6k 1:02:35 48:17 14:18 168.8k 77 559.9M 0 0 77 432.2M 0 152.7k 1:02:35 48:18 14:17 181.4k 77 559.9M 0 0 77 432.4M 0 152.7k 1:02:35 48:19 14:16 193.6k 77 559.9M 0 0 77 432.5M 0 152.7k 1:02:35 48:20 14:15 184.0k 77 559.9M 0 0 77 432.7M 0 152.6k 1:02:35 48:22 14:13 165.9k 77 559.9M 0 0 77 432.8M 0 152.6k 1:02:35 48:23 14:12 149.3k 77 559.9M 0 0 77 433.0M 0 152.6k 1:02:36 48:24 14:12 131.7k 77 559.9M 0 0 77 433.1M 0 152.6k 1:02:36 48:25 14:11 131.9k 77 559.9M 0 0 77 433.4M 0 152.6k 1:02:35 48:26 14:09 149.9k 77 559.9M 0 0 77 433.6M 0 152.7k 1:02:34 48:28 14:06 166.2k 77 559.9M 0 0 77 433.9M 0 152.7k 1:02:34 48:29 14:05 178.7k 77 559.9M 0 0 77 434.1M 0 152.7k 1:02:34 48:30 14:04 190.0k 77 559.9M 0 0 77 434.3M 0 152.7k 1:02:34 48:31 14:03 183.1k 77 559.9M 0 0 77 434.5M 0 152.7k 1:02:34 48:32 14:02 176.9k 77 559.9M 0 0 77 434.6M 0 152.7k 1:02:34 48:33 14:01 171.0k 77 559.9M 0 0 77 434.8M 0 152.7k 1:02:34 48:35 13:59 165.5k 77 559.9M 0 0 77 435.0M 0 152.7k 1:02:33 48:36 13:57 162.6k 77 559.9M 0 0 77 435.2M 0 152.7k 1:02:33 48:37 13:56 167.7k 77 559.9M 0 0 77 435.4M 0 152.7k 1:02:33 48:38 13:55 161.6k 77 559.9M 0 0 77 435.5M 0 152.7k 1:02:34 48:39 13:55 151.7k 77 559.9M 0 0 77 435.6M 0 152.7k 1:02:34 48:41 13:53 143.2k 77 559.9M 0 0 77 435.8M 0 152.7k 1:02:34 48:42 13:52 132.2k 77 559.9M 0 0 77 436.0M 0 152.7k 1:02:34 48:43 13:51 130.7k 77 559.9M 0 0 77 436.1M 0 152.7k 1:02:34 48:44 13:50 134.5k 77 559.9M 0 0 77 436.3M 0 152.7k 1:02:34 48:45 13:49 135.3k 77 559.9M 0 0 77 436.4M 0 152.7k 1:02:35 48:46 13:49 137.2k 77 559.9M 0 0 77 436.6M 0 152.6k 1:02:35 48:48 13:47 139.6k 78 559.9M 0 0 78 436.8M 0 152.6k 1:02:35 48:49 13:46 135.5k 78 559.9M 0 0 78 437.0M 0 152.6k 1:02:35 48:50 13:45 131.2k 78 559.9M 0 0 78 437.1M 0 152.6k 1:02:35 48:52 13:43 139.4k 78 559.9M 0 0 78 437.3M 0 152.6k 1:02:35 48:53 13:42 148.4k 78 559.9M 0 0 78 437.5M 0 152.6k 1:02:35 48:54 13:41 150.6k 78 559.9M 0 0 78 437.7M 0 152.6k 1:02:35 48:55 13:40 156.0k 78 559.9M 0 0 78 437.9M 0 152.6k 1:02:35 48:57 13:38 155.9k 78 559.9M 0 0 78 438.1M 0 152.6k 1:02:35 48:58 13:37 158.2k 78 559.9M 0 0 78 438.3M 0 152.6k 1:02:35 48:59 13:36 154.7k 78 559.9M 0 0 78 438.5M 0 152.6k 1:02:35 49:00 13:35 153.9k 78 559.9M 0 0 78 438.6M 0 152.6k 1:02:35 49:02 13:33 151.8k 78 559.9M 0 0 78 438.8M 0 152.6k 1:02:35 49:03 13:32 147.8k 78 559.9M 0 0 78 439.0M 0 152.6k 1:02:36 49:04 13:32 140.2k 78 559.9M 0 0 78 439.1M 0 152.6k 1:02:36 49:05 13:31 132.6k 78 559.9M 0 0 78 439.2M 0 152.6k 1:02:36 49:06 13:30 128.5k 78 559.9M 0 0 78 439.3M 0 152.6k 1:02:37 49:07 13:30 118.7k 78 559.9M 0 0 78 439.5M 0 152.6k 1:02:37 49:09 13:28 121.9k 78 559.9M 0 0 78 439.7M 0 152.6k 1:02:37 49:10 13:27 121.5k 78 559.9M 0 0 78 439.9M 0 152.5k 1:02:37 49:12 13:25 124.4k 78 559.9M 0 0 78 440.1M 0 152.6k 1:02:37 49:13 13:24 136.4k 78 559.9M 0 0 78 440.2M 0 152.5k 1:02:38 49:14 13:24 137.9k 78 559.9M 0 0 78 440.3M 0 152.5k 1:02:38 49:15 13:23 128.0k 78 559.9M 0 0 78 440.5M 0 152.5k 1:02:39 49:16 13:23 123.9k 78 559.9M 0 0 78 440.6M 0 152.5k 1:02:39 49:18 13:21 125.4k 78 559.9M 0 0 78 440.8M 0 152.5k 1:02:39 49:19 13:20 117.8k 78 559.9M 0 0 78 441.0M 0 152.5k 1:02:39 49:20 13:19 118.6k 78 559.9M 0 0 78 441.1M 0 152.4k 1:02:40 49:22 13:18 124.4k 78 559.9M 0 0 78 441.3M 0 152.4k 1:02:41 49:24 13:17 116.9k 78 559.9M 0 0 78 441.4M 0 152.4k 1:02:41 49:25 13:16 111.4k 78 559.9M 0 0 78 441.6M 0 152.4k 1:02:41 49:26 13:15 110.0k 78 559.9M 0 0 78 441.7M 0 152.4k 1:02:42 49:27 13:15 109.1k 78 559.9M 0 0 78 441.8M 0 152.3k 1:02:43 49:29 13:14 103.5k 78 559.9M 0 0 78 442.0M 0 152.3k 1:02:43 49:30 13:13 111.6k 78 559.9M 0 0 78 442.1M 0 152.3k 1:02:43 49:31 13:12 112.9k 78 559.9M 0 0 78 442.2M 0 152.3k 1:02:44 49:32 13:12 105.1k 78 559.9M 0 0 78 442.3M 0 152.3k 1:02:44 49:34 13:10 102.4k 79 559.9M 0 0 79 442.5M 0 152.3k 1:02:45 49:35 13:10 113.4k 79 559.9M 0 0 79 442.7M 0 152.3k 1:02:45 49:36 13:09 119.6k 79 559.9M 0 0 79 442.8M 0 152.2k 1:02:45 49:37 13:08 119.1k 79 559.9M 0 0 79 443.0M 0 152.2k 1:02:45 49:39 13:06 129.6k 79 559.9M 0 0 79 443.1M 0 152.2k 1:02:46 49:40 13:06 125.3k 79 559.9M 0 0 79 443.3M 0 152.2k 1:02:47 49:42 13:05 111.3k 79 559.9M 0 0 79 443.4M 0 152.1k 1:02:48 49:43 13:05 101.1k 79 559.9M 0 0 79 443.5M 0 152.1k 1:02:48 49:44 13:04 102.0k 79 559.9M 0 0 79 443.6M 0 152.1k 1:02:48 49:45 13:03 99492 79 559.9M 0 0 79 443.8M 0 152.1k 1:02:48 49:47 13:01 110.5k 79 559.9M 0 0 79 444.1M 0 152.1k 1:02:48 49:48 13:00 139.4k 79 559.9M 0 0 79 444.3M 0 152.1k 1:02:48 49:49 12:59 153.2k 79 559.9M 0 0 79 444.5M 0 152.1k 1:02:47 49:50 12:57 162.5k 79 559.9M 0 0 79 444.7M 0 152.2k 1:02:47 49:52 12:55 174.5k 79 559.9M 0 0 79 444.9M 0 152.2k 1:02:47 49:53 12:54 177.6k 79 559.9M 0 0 79 445.1M 0 152.2k 1:02:47 49:54 12:53 166.7k 79 559.9M 0 0 79 445.3M 0 152.2k 1:02:46 49:55 12:51 178.7k 79 559.9M 0 0 79 445.5M 0 152.2k 1:02:47 49:57 12:50 166.8k 79 559.9M 0 0 79 445.7M 0 152.2k 1:02:47 49:58 12:49 156.3k 79 559.9M 0 0 79 445.9M 0 152.2k 1:02:47 49:59 12:48 155.9k 79 559.9M 0 0 79 446.0M 0 152.2k 1:02:47 50:00 12:47 149.3k 79 559.9M 0 0 79 446.1M 0 152.1k 1:02:47 50:02 12:45 129.6k 79 559.9M 0 0 79 446.3M 0 152.1k 1:02:48 50:03 12:45 131.2k 79 559.9M 0 0 79 446.5M 0 152.1k 1:02:48 50:04 12:44 132.2k 79 559.9M 0 0 79 446.6M 0 152.1k 1:02:48 50:05 12:43 132.2k 79 559.9M 0 0 79 446.8M 0 152.1k 1:02:48 50:06 12:42 140.0k 79 559.9M 0 0 79 447.0M 0 152.1k 1:02:48 50:08 12:40 145.7k 79 559.9M 0 0 79 447.1M 0 152.1k 1:02:48 50:09 12:39 145.6k 79 559.9M 0 0 79 447.3M 0 152.1k 1:02:48 50:10 12:38 140.9k 79 559.9M 0 0 79 447.4M 0 152.1k 1:02:49 50:11 12:38 126.8k 79 559.9M 0 0 79 447.5M 0 152.1k 1:02:49 50:12 12:37 119.6k 79 559.9M 0 0 79 447.7M 0 152.1k 1:02:49 50:14 12:35 119.6k 79 559.9M 0 0 79 447.9M 0 152.0k 1:02:50 50:15 12:35 119.6k 80 559.9M 0 0 80 448.0M 0 152.0k 1:02:50 50:16 12:34 120.0k 80 559.9M 0 0 80 448.1M 0 152.0k 1:02:50 50:17 12:33 124.6k 80 559.9M 0 0 80 448.3M 0 152.0k 1:02:51 50:19 12:32 120.4k 80 559.9M 0 0 80 448.5M 0 152.0k 1:02:51 50:20 12:31 119.3k 80 559.9M 0 0 80 448.6M 0 152.0k 1:02:51 50:21 12:30 123.2k 80 559.9M 0 0 80 448.8M 0 152.0k 1:02:52 50:23 12:29 120.6k 80 559.9M 0 0 80 449.0M 0 152.0k 1:02:51 50:24 12:27 132.9k 80 559.9M 0 0 80 449.1M 0 152.0k 1:02:51 50:25 12:26 139.8k 80 559.9M 0 0 80 449.3M 0 152.0k 1:02:52 50:26 12:26 134.5k 80 559.9M 0 0 80 449.4M 0 151.9k 1:02:52 50:27 12:25 128.7k 80 559.9M 0 0 80 449.6M 0 151.9k 1:02:53 50:29 12:24 133.3k 80 559.9M 0 0 80 449.8M 0 151.9k 1:02:52 50:30 12:22 129.6k 80 559.9M 0 0 80 450.0M 0 151.9k 1:02:53 50:31 12:22 131.6k 80 559.9M 0 0 80 450.1M 0 151.9k 1:02:53 50:33 12:20 126.4k 80 559.9M 0 0 80 450.2M 0 151.9k 1:02:54 50:34 12:20 124.8k 80 559.9M 0 0 80 450.3M 0 151.9k 1:02:54 50:35 12:19 121.5k 80 559.9M 0 0 80 450.5M 0 151.9k 1:02:54 50:36 12:18 123.5k 80 559.9M 0 0 80 450.7M 0 151.9k 1:02:54 50:38 12:16 122.9k 80 559.9M 0 0 80 450.8M 0 151.9k 1:02:54 50:39 12:15 132.0k 80 559.9M 0 0 80 451.0M 0 151.9k 1:02:54 50:40 12:14 143.6k 80 559.9M 0 0 80 451.3M 0 151.9k 1:02:54 50:41 12:13 162.4k 80 559.9M 0 0 80 451.5M 0 151.9k 1:02:54 50:42 12:12 159.5k 80 559.9M 0 0 80 451.6M 0 151.9k 1:02:53 50:43 12:10 164.9k 80 559.9M 0 0 80 451.8M 0 151.9k 1:02:54 50:45 12:09 163.9k 80 559.9M 0 0 80 452.0M 0 151.9k 1:02:54 50:46 12:08 160.2k 80 559.9M 0 0 80 452.3M 0 151.9k 1:02:53 50:47 12:06 171.8k 80 559.9M 0 0 80 452.5M 0 151.9k 1:02:53 50:49 12:04 165.1k 80 559.9M 0 0 80 452.6M 0 151.9k 1:02:53 50:50 12:03 157.3k 80 559.9M 0 0 80 452.8M 0 151.9k 1:02:53 50:51 12:02 171.0k 80 559.9M 0 0 80 453.1M 0 152.0k 1:02:52 50:52 12:00 185.8k 80 559.9M 0 0 80 453.3M 0 152.0k 1:02:52 50:53 11:59 172.8k 80 559.9M 0 0 80 453.5M 0 152.0k 1:02:52 50:54 11:58 174.6k 81 559.9M 0 0 81 453.6M 0 152.0k 1:02:52 50:56 11:56 177.8k 81 559.9M 0 0 81 453.8M 0 152.0k 1:02:52 50:57 11:55 169.8k 81 559.9M 0 0 81 454.0M 0 152.0k 1:02:52 50:58 11:54 157.4k 81 559.9M 0 0 81 454.2M 0 152.0k 1:02:52 50:59 11:53 151.7k 81 559.9M 0 0 81 454.4M 0 152.0k 1:02:51 51:00 11:51 158.9k 81 559.9M 0 0 81 454.6M 0 152.0k 1:02:51 51:02 11:49 164.7k 81 559.9M 0 0 81 454.8M 0 152.0k 1:02:51 51:03 11:48 164.5k 81 559.9M 0 0 81 454.9M 0 152.0k 1:02:51 51:04 11:47 159.2k 81 559.9M 0 0 81 455.0M 0 152.0k 1:02:52 51:05 11:47 141.8k 81 559.9M 0 0 81 455.2M 0 151.9k 1:02:52 51:07 11:45 136.0k 81 559.9M 0 0 81 455.4M 0 151.9k 1:02:52 51:08 11:44 133.5k 81 559.9M 0 0 81 455.5M 0 151.9k 1:02:52 51:09 11:43 127.7k 81 559.9M 0 0 81 455.6M 0 151.9k 1:02:53 51:10 11:43 119.0k 81 559.9M 0 0 81 455.8M 0 151.9k 1:02:53 51:12 11:41 127.8k 81 559.9M 0 0 81 456.0M 0 151.9k 1:02:53 51:13 11:40 133.3k 81 559.9M 0 0 81 456.1M 0 151.9k 1:02:53 51:14 11:39 125.4k 81 559.9M 0 0 81 456.3M 0 151.9k 1:02:53 51:15 11:38 130.4k 81 559.9M 0 0 81 456.5M 0 151.9k 1:02:53 51:16 11:37 147.8k 81 559.9M 0 0 81 456.8M 0 151.9k 1:02:53 51:17 11:36 164.2k 81 559.9M 0 0 81 457.0M 0 151.9k 1:02:53 51:19 11:34 156.4k 81 559.9M 0 0 81 457.1M 0 151.9k 1:02:53 51:20 11:33 159.9k 81 559.9M 0 0 81 457.3M 0 151.9k 1:02:53 51:21 11:32 167.0k 81 559.9M 0 0 81 457.5M 0 151.9k 1:02:53 51:23 11:30 164.4k 81 559.9M 0 0 81 457.7M 0 151.9k 1:02:53 51:24 11:29 148.2k 81 559.9M 0 0 81 457.8M 0 151.9k 1:02:53 51:25 11:28 144.0k 81 559.9M 0 0 81 458.0M 0 151.9k 1:02:53 51:26 11:27 148.4k 81 559.9M 0 0 81 458.2M 0 151.9k 1:02:53 51:27 11:26 148.1k 81 559.9M 0 0 81 458.3M 0 151.9k 1:02:54 51:29 11:25 135.1k 81 559.9M 0 0 81 458.5M 0 151.9k 1:02:54 51:30 11:24 122.3k 81 559.9M 0 0 81 458.6M 0 151.8k 1:02:55 51:32 11:23 119.1k 81 559.9M 0 0 81 458.8M 0 151.8k 1:02:55 51:33 11:22 112.1k 81 559.9M 0 0 81 458.9M 0 151.8k 1:02:56 51:34 11:22 102.1k 81 559.9M 0 0 81 459.0M 0 151.8k 1:02:56 51:36 11:20 102.3k 82 559.9M 0 0 82 459.2M 0 151.8k 1:02:57 51:37 11:20 113.7k 82 559.9M 0 0 82 459.3M 0 151.8k 1:02:57 51:38 11:19 117.3k 82 559.9M 0 0 82 459.5M 0 151.7k 1:02:57 51:39 11:18 113.4k 82 559.9M 0 0 82 459.6M 0 151.7k 1:02:58 51:40 11:18 114.0k 82 559.9M 0 0 82 459.8M 0 151.7k 1:02:57 51:42 11:15 128.1k 82 559.9M 0 0 82 460.0M 0 151.7k 1:02:57 51:43 11:14 137.6k 82 559.9M 0 0 82 460.2M 0 151.8k 1:02:56 51:44 11:12 162.2k 82 559.9M 0 0 82 460.5M 0 151.8k 1:02:56 51:45 11:11 191.2k 82 559.9M 0 0 82 460.7M 0 151.8k 1:02:55 51:46 11:09 208.8k 82 559.9M 0 0 82 460.9M 0 151.8k 1:02:55 51:47 11:08 207.4k 82 559.9M 0 0 82 461.0M 0 151.8k 1:02:55 51:48 11:07 194.7k 82 559.9M 0 0 82 461.3M 0 151.8k 1:02:55 51:49 11:06 187.1k 82 559.9M 0 0 82 461.4M 0 151.8k 1:02:55 51:51 11:04 161.8k 82 559.9M 0 0 82 461.5M 0 151.8k 1:02:56 51:52 11:04 139.1k 82 559.9M 0 0 82 461.6M 0 151.8k 1:02:56 51:53 11:03 126.2k 82 559.9M 0 0 82 461.8M 0 151.8k 1:02:56 51:54 11:02 132.9k 82 559.9M 0 0 82 462.0M 0 151.8k 1:02:56 51:55 11:01 128.0k 82 559.9M 0 0 82 462.3M 0 151.8k 1:02:55 51:57 10:58 149.1k 82 559.9M 0 0 82 462.5M 0 151.8k 1:02:55 51:58 10:57 165.9k 82 559.9M 0 0 82 462.6M 0 151.8k 1:02:55 51:59 10:56 173.7k 82 559.9M 0 0 82 462.8M 0 151.8k 1:02:55 52:01 10:54 165.3k 82 559.9M 0 0 82 463.0M 0 151.8k 1:02:56 52:02 10:54 155.8k 82 559.9M 0 0 82 463.1M 0 151.8k 1:02:56 52:03 10:53 146.5k 82 559.9M 0 0 82 463.3M 0 151.8k 1:02:55 52:04 10:51 146.2k 82 559.9M 0 0 82 463.6M 0 151.8k 1:02:55 52:05 10:50 161.6k 82 559.9M 0 0 82 463.8M 0 151.9k 1:02:55 52:06 10:49 172.1k 82 559.9M 0 0 82 464.0M 0 151.9k 1:02:55 52:07 10:48 177.1k 82 559.9M 0 0 82 464.1M 0 151.8k 1:02:55 52:09 10:46 166.0k 82 559.9M 0 0 82 464.3M 0 151.8k 1:02:55 52:10 10:45 153.7k 82 559.9M 0 0 82 464.4M 0 151.8k 1:02:56 52:11 10:45 134.4k 82 559.9M 0 0 82 464.5M 0 151.8k 1:02:56 52:12 10:44 122.7k 82 559.9M 0 0 82 464.6M 0 151.8k 1:02:57 52:14 10:43 105.9k 82 559.9M 0 0 82 464.6M 0 151.8k 1:02:57 52:14 10:43 151.8k 83 559.9M 0 0 83 464.8M 0 151.8k 1:02:56 52:15 10:41 161.6k 83 559.9M 0 0 83 465.0M 0 151.8k 1:02:57 52:16 10:41 138.7k 83 559.9M 0 0 83 465.1M 0 151.7k 1:02:57 52:18 10:39 130.9k 83 559.9M 0 0 83 465.3M 0 151.7k 1:02:58 52:19 10:39 116.9k 83 559.9M 0 0 83 465.4M 0 151.7k 1:02:58 52:20 10:38 114.6k 83 559.9M 0 0 83 465.5M 0 151.7k 1:02:59 52:22 10:37 101.6k 83 559.9M 0 0 83 465.7M 0 151.7k 1:02:59 52:23 10:36 107.1k 83 559.9M 0 0 83 466.0M 0 151.7k 1:02:58 52:24 10:34 126.4k 83 559.9M 0 0 83 466.1M 0 151.7k 1:02:59 52:25 10:34 141.4k 83 559.9M 0 0 83 466.3M 0 151.7k 1:02:58 52:27 10:31 154.0k 83 559.9M 0 0 83 466.5M 0 151.7k 1:02:58 52:28 10:30 173.2k 83 559.9M 0 0 83 466.7M 0 151.7k 1:02:58 52:29 10:29 175.7k 83 559.9M 0 0 83 466.9M 0 151.7k 1:02:58 52:30 10:28 165.0k 83 559.9M 0 0 83 467.1M 0 151.7k 1:02:57 52:31 10:26 174.7k 83 559.9M 0 0 83 467.3M 0 151.7k 1:02:58 52:32 10:26 163.4k 83 559.9M 0 0 83 467.4M 0 151.7k 1:02:58 52:34 10:24 146.2k 83 559.9M 0 0 83 467.5M 0 151.7k 1:02:59 52:35 10:24 133.9k 83 559.9M 0 0 83 467.6M 0 151.7k 1:03:00 52:36 10:24 118.9k 83 559.9M 0 0 83 467.8M 0 151.6k 1:03:00 52:38 10:22 101.1k 83 559.9M 0 0 83 467.9M 0 151.6k 1:03:00 52:39 10:21 99.68k 83 559.9M 0 0 83 468.1M 0 151.6k 1:03:00 52:40 10:20 115.7k 83 559.9M 0 0 83 468.3M 0 151.6k 1:03:00 52:41 10:19 123.3k 83 559.9M 0 0 83 468.4M 0 151.6k 1:03:01 52:43 10:18 123.6k 83 559.9M 0 0 83 468.6M 0 151.6k 1:03:01 52:44 10:17 132.0k 83 559.9M 0 0 83 468.8M 0 151.6k 1:03:01 52:45 10:16 143.0k 83 559.9M 0 0 83 469.0M 0 151.6k 1:03:01 52:46 10:15 142.0k 83 559.9M 0 0 83 469.1M 0 151.6k 1:03:00 52:47 10:13 149.3k 83 559.9M 0 0 83 469.3M 0 151.6k 1:03:00 52:48 10:12 163.9k 83 559.9M 0 0 83 469.5M 0 151.6k 1:03:01 52:50 10:11 158.9k 83 559.9M 0 0 83 469.6M 0 151.6k 1:03:01 52:51 10:10 159.2k 83 559.9M 0 0 83 469.8M 0 151.6k 1:03:00 52:52 10:08 159.3k 83 559.9M 0 0 83 470.0M 0 151.6k 1:03:00 52:53 10:07 159.3k 83 559.9M 0 0 83 470.3M 0 151.7k 1:02:59 52:54 10:05 174.6k 84 559.9M 0 0 84 470.5M 0 151.7k 1:02:59 52:55 10:04 176.6k 84 559.9M 0 0 84 470.6M 0 151.6k 1:03:00 52:56 10:04 168.4k 84 559.9M 0 0 84 470.7M 0 151.6k 1:03:00 52:58 10:02 157.0k 84 559.9M 0 0 84 470.9M 0 151.6k 1:03:00 52:59 10:01 154.9k 84 559.9M 0 0 84 471.1M 0 151.6k 1:03:00 53:00 10:00 145.6k 84 559.9M 0 0 84 471.2M 0 151.6k 1:03:00 53:01 09:59 132.2k 84 559.9M 0 0 84 471.3M 0 151.6k 1:03:01 53:02 09:59 129.1k 84 559.9M 0 0 84 471.6M 0 151.6k 1:03:00 53:04 09:56 146.2k 84 559.9M 0 0 84 471.8M 0 151.6k 1:03:00 53:05 09:55 145.9k 84 559.9M 0 0 84 472.0M 0 151.6k 1:03:00 53:06 09:54 139.3k 84 559.9M 0 0 84 472.2M 0 151.6k 1:03:00 53:07 09:53 168.0k 84 559.9M 0 0 84 472.4M 0 151.7k 1:02:59 53:08 09:51 182.4k 84 559.9M 0 0 84 472.6M 0 151.7k 1:02:59 53:10 09:49 173.7k 84 559.9M 0 0 84 472.9M 0 151.7k 1:02:58 53:11 09:47 192.7k 84 559.9M 0 0 84 473.1M 0 151.7k 1:02:58 53:12 09:46 204.8k 84 559.9M 0 0 84 473.3M 0 151.7k 1:02:58 53:13 09:45 187.6k 84 559.9M 0 0 84 473.5M 0 151.7k 1:02:58 53:14 09:44 185.9k 84 559.9M 0 0 84 473.6M 0 151.7k 1:02:58 53:16 09:42 180.9k 84 559.9M 0 0 84 473.8M 0 151.7k 1:02:58 53:17 09:41 165.8k 84 559.9M 0 0 84 474.0M 0 151.7k 1:02:57 53:18 09:39 159.6k 84 559.9M 0 0 84 474.3M 0 151.8k 1:02:57 53:19 09:38 174.6k 84 559.9M 0 0 84 474.5M 0 151.8k 1:02:57 53:20 09:37 175.8k 84 559.9M 0 0 84 474.6M 0 151.8k 1:02:57 53:21 09:36 176.1k 84 559.9M 0 0 84 474.8M 0 151.8k 1:02:57 53:23 09:34 171.9k 84 559.9M 0 0 84 475.0M 0 151.8k 1:02:57 53:24 09:33 168.8k 84 559.9M 0 0 84 475.2M 0 151.7k 1:02:57 53:25 09:32 147.3k 84 559.9M 0 0 84 475.3M 0 151.7k 1:02:58 53:26 09:32 129.8k 84 559.9M 0 0 84 475.4M 0 151.7k 1:02:58 53:28 09:30 122.8k 84 559.9M 0 0 84 475.6M 0 151.7k 1:02:58 53:29 09:29 123.1k 84 559.9M 0 0 84 475.8M 0 151.7k 1:02:58 53:30 09:28 122.5k 85 559.9M 0 0 85 476.0M 0 151.7k 1:02:58 53:31 09:27 137.2k 85 559.9M 0 0 85 476.1M 0 151.7k 1:02:58 53:32 09:26 154.0k 85 559.9M 0 0 85 476.3M 0 151.7k 1:02:58 53:33 09:25 165.4k 85 559.9M 0 0 85 476.5M 0 151.7k 1:02:57 53:34 09:23 167.3k 85 559.9M 0 0 85 476.7M 0 151.7k 1:02:57 53:36 09:21 172.9k 85 559.9M 0 0 85 476.9M 0 151.8k 1:02:57 53:37 09:20 171.9k 85 559.9M 0 0 85 477.1M 0 151.7k 1:02:57 53:38 09:19 162.7k 85 559.9M 0 0 85 477.2M 0 151.7k 1:02:58 53:39 09:19 152.1k 85 559.9M 0 0 85 477.3M 0 151.7k 1:02:58 53:40 09:18 140.3k 85 559.9M 0 0 85 477.5M 0 151.7k 1:02:59 53:42 09:17 122.2k 85 559.9M 0 0 85 477.6M 0 151.7k 1:02:59 53:43 09:16 111.0k 85 559.9M 0 0 85 477.8M 0 151.7k 1:02:59 53:44 09:15 119.5k 85 559.9M 0 0 85 478.0M 0 151.7k 1:02:59 53:45 09:14 130.1k 85 559.9M 0 0 85 478.1M 0 151.7k 1:02:59 53:46 09:13 131.2k 85 559.9M 0 0 85 478.2M 0 151.7k 1:02:59 53:47 09:12 141.1k 85 559.9M 0 0 85 478.4M 0 151.7k 1:02:59 53:49 09:10 145.7k 85 559.9M 0 0 85 478.5M 0 151.7k 1:02:59 53:50 09:09 136.2k 85 559.9M 0 0 85 478.6M 0 151.6k 1:03:00 53:51 09:09 125.5k 85 559.9M 0 0 85 478.8M 0 151.6k 1:03:00 53:52 09:08 122.2k 85 559.9M 0 0 85 479.0M 0 151.6k 1:03:00 53:53 09:07 123.7k 85 559.9M 0 0 85 479.1M 0 151.6k 1:03:01 53:55 09:06 120.5k 85 559.9M 0 0 85 479.3M 0 151.6k 1:03:01 53:56 09:05 126.3k 85 559.9M 0 0 85 479.5M 0 151.6k 1:03:01 53:57 09:04 130.1k 85 559.9M 0 0 85 479.6M 0 151.6k 1:03:01 53:58 09:03 132.6k 85 559.9M 0 0 85 479.7M 0 151.6k 1:03:01 53:59 09:02 128.0k 85 559.9M 0 0 85 479.8M 0 151.6k 1:03:02 54:01 09:01 126.7k 85 559.9M 0 0 85 480.0M 0 151.6k 1:03:02 54:02 09:00 123.2k 85 559.9M 0 0 85 480.2M 0 151.5k 1:03:02 54:04 08:58 119.6k 85 559.9M 0 0 85 480.4M 0 151.5k 1:03:03 54:05 08:58 123.0k 85 559.9M 0 0 85 480.6M 0 151.5k 1:03:03 54:06 08:57 129.3k 85 559.9M 0 0 85 480.8M 0 151.5k 1:03:03 54:08 08:55 133.5k 85 559.9M 0 0 85 481.0M 0 151.5k 1:03:03 54:09 08:54 138.9k 85 559.9M 0 0 85 481.1M 0 151.5k 1:03:03 54:10 08:53 141.7k 85 559.9M 0 0 85 481.3M 0 151.5k 1:03:03 54:11 08:52 147.6k 85 559.9M 0 0 85 481.5M 0 151.5k 1:03:02 54:12 08:50 155.6k 86 559.9M 0 0 86 481.7M 0 151.6k 1:03:02 54:13 08:49 170.7k 86 559.9M 0 0 86 482.0M 0 151.6k 1:03:01 54:15 08:46 186.8k 86 559.9M 0 0 86 482.2M 0 151.6k 1:03:01 54:16 08:45 190.4k 86 559.9M 0 0 86 482.5M 0 151.6k 1:03:00 54:17 08:43 199.9k 86 559.9M 0 0 86 482.7M 0 151.6k 1:03:00 54:18 08:42 208.2k 86 559.9M 0 0 86 483.0M 0 151.7k 1:02:59 54:19 08:40 213.8k 86 559.9M 0 0 86 483.2M 0 151.7k 1:02:59 54:21 08:38 204.0k 86 559.9M 0 0 86 483.4M 0 151.7k 1:02:59 54:22 08:37 202.8k 86 559.9M 0 0 86 483.6M 0 151.7k 1:02:58 54:23 08:35 202.1k 86 559.9M 0 0 86 483.8M 0 151.7k 1:02:58 54:24 08:34 187.5k 86 559.9M 0 0 86 484.1M 0 151.7k 1:02:58 54:26 08:32 179.3k 86 559.9M 0 0 86 484.3M 0 151.7k 1:02:58 54:27 08:31 172.2k 86 559.9M 0 0 86 484.5M 0 151.7k 1:02:58 54:28 08:30 176.1k 86 559.9M 0 0 86 484.6M 0 151.7k 1:02:57 54:29 08:28 165.9k 86 559.9M 0 0 86 484.8M 0 151.7k 1:02:57 54:31 08:26 166.7k 86 559.9M 0 0 86 485.0M 0 151.7k 1:02:58 54:32 08:26 154.5k 86 559.9M 0 0 86 485.1M 0 151.7k 1:02:58 54:33 08:25 152.8k 86 559.9M 0 0 86 485.3M 0 151.7k 1:02:58 54:34 08:24 149.8k 86 559.9M 0 0 86 485.5M 0 151.7k 1:02:58 54:35 08:23 143.9k 86 559.9M 0 0 86 485.6M 0 151.7k 1:02:58 54:36 08:22 143.3k 86 559.9M 0 0 86 485.8M 0 151.7k 1:02:58 54:38 08:20 148.4k 86 559.9M 0 0 86 486.0M 0 151.7k 1:02:58 54:39 08:19 142.4k 86 559.9M 0 0 86 486.1M 0 151.7k 1:02:59 54:41 08:18 129.1k 86 559.9M 0 0 86 486.3M 0 151.7k 1:02:59 54:42 08:17 122.2k 86 559.9M 0 0 86 486.4M 0 151.6k 1:03:00 54:43 08:17 111.2k 86 559.9M 0 0 86 486.5M 0 151.6k 1:03:00 54:44 08:16 104.1k 86 559.9M 0 0 86 486.7M 0 151.6k 1:03:00 54:46 08:14 109.0k 86 559.9M 0 0 86 486.9M 0 151.6k 1:03:00 54:47 08:13 120.9k 86 559.9M 0 0 86 487.1M 0 151.6k 1:03:00 54:48 08:12 130.7k 87 559.9M 0 0 87 487.3M 0 151.6k 1:03:01 54:50 08:11 137.7k 87 559.9M 0 0 87 487.4M 0 151.6k 1:03:01 54:51 08:10 136.4k 87 559.9M 0 0 87 487.5M 0 151.6k 1:03:01 54:52 08:09 125.1k 87 559.9M 0 0 87 487.7M 0 151.6k 1:03:01 54:53 08:08 130.3k 87 559.9M 0 0 87 487.8M 0 151.6k 1:03:02 54:54 08:08 125.2k 87 559.9M 0 0 87 488.0M 0 151.6k 1:03:02 54:56 08:06 124.5k 87 559.9M 0 0 87 488.1M 0 151.6k 1:03:02 54:57 08:05 127.4k 87 559.9M 0 0 87 488.3M 0 151.5k 1:03:03 54:59 08:04 130.5k 87 559.9M 0 0 87 488.5M 0 151.5k 1:03:03 55:00 08:03 120.2k 87 559.9M 0 0 87 488.7M 0 151.5k 1:03:02 55:01 08:01 139.4k 87 559.9M 0 0 87 489.0M 0 151.6k 1:03:01 55:02 07:59 171.3k 87 559.9M 0 0 87 489.3M 0 151.6k 1:03:01 55:03 07:58 184.2k 87 559.9M 0 0 87 489.5M 0 151.6k 1:03:00 55:04 07:56 200.7k 87 559.9M 0 0 87 489.6M 0 151.6k 1:03:01 55:06 07:55 200.7k 87 559.9M 0 0 87 489.8M 0 151.6k 1:03:01 55:07 07:54 180.7k 87 559.9M 0 0 87 490.0M 0 151.6k 1:03:01 55:08 07:53 147.1k 87 559.9M 0 0 87 490.1M 0 151.6k 1:03:01 55:10 07:51 137.5k 87 559.9M 0 0 87 490.3M 0 151.6k 1:03:01 55:11 07:50 132.3k 87 559.9M 0 0 87 490.5M 0 151.6k 1:03:01 55:12 07:49 136.0k 87 559.9M 0 0 87 490.7M 0 151.6k 1:03:01 55:13 07:48 146.0k 87 559.9M 0 0 87 490.9M 0 151.6k 1:03:01 55:14 07:47 160.0k 87 559.9M 0 0 87 491.1M 0 151.6k 1:03:00 55:16 07:44 172.2k 87 559.9M 0 0 87 491.4M 0 151.6k 1:03:00 55:17 07:43 188.9k 87 559.9M 0 0 87 491.7M 0 151.7k 1:02:59 55:18 07:41 210.0k 87 559.9M 0 0 87 491.9M 0 151.7k 1:02:59 55:19 07:40 206.8k 87 559.9M 0 0 87 492.0M 0 151.7k 1:02:59 55:20 07:39 195.9k 87 559.9M 0 0 87 492.2M 0 151.7k 1:02:59 55:22 07:37 186.3k 87 559.9M 0 0 87 492.4M 0 151.7k 1:02:59 55:23 07:36 173.9k 87 559.9M 0 0 87 492.6M 0 151.7k 1:02:59 55:24 07:35 150.1k 88 559.9M 0 0 88 492.8M 0 151.7k 1:02:58 55:25 07:33 157.4k 88 559.9M 0 0 88 493.0M 0 151.7k 1:02:59 55:27 07:32 153.9k 88 559.9M 0 0 88 493.1M 0 151.7k 1:03:00 55:29 07:31 137.0k 88 559.9M 0 0 88 493.3M 0 151.6k 1:03:00 55:30 07:30 129.3k 88 559.9M 0 0 88 493.4M 0 151.6k 1:03:01 55:31 07:30 117.0k 88 559.9M 0 0 88 493.5M 0 151.6k 1:03:01 55:33 07:28 98807 88 559.9M 0 0 88 493.6M 0 151.6k 1:03:02 55:34 07:28 97364 88 559.9M 0 0 88 493.8M 0 151.6k 1:03:02 55:35 07:27 102.5k 88 559.9M 0 0 88 494.0M 0 151.6k 1:03:02 55:36 07:26 113.2k 88 559.9M 0 0 88 494.1M 0 151.6k 1:03:02 55:37 07:25 129.9k 88 559.9M 0 0 88 494.3M 0 151.6k 1:03:02 55:38 07:24 135.6k 88 559.9M 0 0 88 494.4M 0 151.5k 1:03:03 55:40 07:23 126.6k 88 559.9M 0 0 88 494.6M 0 151.5k 1:03:03 55:41 07:22 135.2k 88 559.9M 0 0 88 494.8M 0 151.5k 1:03:02 55:42 07:20 135.5k 88 559.9M 0 0 88 495.0M 0 151.5k 1:03:02 55:43 07:19 135.4k 88 559.9M 0 0 88 495.3M 0 151.6k 1:03:01 55:45 07:16 164.1k 88 559.9M 0 0 88 495.5M 0 151.6k 1:03:02 55:46 07:16 175.3k 88 559.9M 0 0 88 495.6M 0 151.5k 1:03:02 55:47 07:15 158.2k 88 559.9M 0 0 88 495.7M 0 151.5k 1:03:02 55:48 07:14 150.5k 88 559.9M 0 0 88 495.9M 0 151.5k 1:03:02 55:50 07:12 149.7k 88 559.9M 0 0 88 496.1M 0 151.5k 1:03:02 55:51 07:11 132.9k 88 559.9M 0 0 88 496.2M 0 151.5k 1:03:03 55:52 07:11 128.4k 88 559.9M 0 0 88 496.4M 0 151.5k 1:03:03 55:53 07:10 143.4k 88 559.9M 0 0 88 496.6M 0 151.5k 1:03:03 55:55 07:08 141.7k 88 559.9M 0 0 88 496.8M 0 151.5k 1:03:03 55:56 07:07 138.4k 88 559.9M 0 0 88 497.0M 0 151.5k 1:03:03 55:57 07:06 138.2k 88 559.9M 0 0 88 497.1M 0 151.5k 1:03:03 55:58 07:05 147.8k 88 559.9M 0 0 88 497.3M 0 151.5k 1:03:03 56:00 07:03 142.0k 88 559.9M 0 0 88 497.5M 0 151.5k 1:03:04 56:01 07:03 135.6k 88 559.9M 0 0 88 497.6M 0 151.5k 1:03:04 56:03 07:01 127.0k 88 559.9M 0 0 88 497.8M 0 151.5k 1:03:04 56:04 07:00 125.9k 88 559.9M 0 0 88 498.0M 0 151.5k 1:03:04 56:05 06:59 133.9k 88 559.9M 0 0 88 498.3M 0 151.5k 1:03:03 56:06 06:57 151.4k 89 559.9M 0 0 89 498.5M 0 151.5k 1:03:02 56:07 06:55 180.7k 89 559.9M 0 0 89 498.7M 0 151.5k 1:03:02 56:08 06:54 201.0k 89 559.9M 0 0 89 498.8M 0 151.5k 1:03:02 56:10 06:52 195.2k 89 559.9M 0 0 89 499.0M 0 151.5k 1:03:02 56:11 06:51 191.3k 89 559.9M 0 0 89 499.2M 0 151.5k 1:03:02 56:12 06:50 170.7k 89 559.9M 0 0 89 499.3M 0 151.5k 1:03:03 56:13 06:50 147.8k 89 559.9M 0 0 89 499.5M 0 151.5k 1:03:03 56:14 06:49 142.4k 89 559.9M 0 0 89 499.7M 0 151.5k 1:03:03 56:16 06:47 147.7k 89 559.9M 0 0 89 499.8M 0 151.5k 1:03:03 56:17 06:46 136.3k 89 559.9M 0 0 89 500.0M 0 151.5k 1:03:03 56:18 06:45 133.7k 89 559.9M 0 0 89 500.1M 0 151.5k 1:03:03 56:19 06:44 133.0k 89 559.9M 0 0 89 500.3M 0 151.5k 1:03:04 56:20 06:44 125.6k 89 559.9M 0 0 89 500.4M 0 151.5k 1:03:04 56:22 06:42 114.8k 89 559.9M 0 0 89 500.5M 0 151.4k 1:03:05 56:23 06:42 112.3k 89 559.9M 0 0 89 500.7M 0 151.5k 1:03:05 56:24 06:41 119.4k 89 559.9M 0 0 89 500.9M 0 151.5k 1:03:04 56:25 06:39 128.6k 89 559.9M 0 0 89 501.1M 0 151.5k 1:03:04 56:27 06:37 134.5k 89 559.9M 0 0 89 501.3M 0 151.5k 1:03:04 56:28 06:36 156.1k 89 559.9M 0 0 89 501.6M 0 151.5k 1:03:04 56:29 06:35 174.1k 89 559.9M 0 0 89 501.8M 0 151.5k 1:03:03 56:30 06:33 178.7k 89 559.9M 0 0 89 502.0M 0 151.5k 1:03:03 56:31 06:32 182.8k 89 559.9M 0 0 89 502.1M 0 151.5k 1:03:03 56:32 06:31 187.8k 89 559.9M 0 0 89 502.4M 0 151.5k 1:03:02 56:33 06:29 194.9k 89 559.9M 0 0 89 502.7M 0 151.6k 1:03:01 56:35 06:26 213.2k 89 559.9M 0 0 89 503.0M 0 151.6k 1:03:01 56:36 06:25 220.0k 89 559.9M 0 0 89 503.2M 0 151.6k 1:03:00 56:37 06:23 228.4k 89 559.9M 0 0 89 503.5M 0 151.7k 1:02:59 56:38 06:21 245.4k 89 559.9M 0 0 89 503.7M 0 151.7k 1:02:59 56:39 06:20 235.2k 89 559.9M 0 0 89 503.8M 0 151.7k 1:02:59 56:40 06:19 203.6k 90 559.9M 0 0 90 504.0M 0 151.7k 1:02:59 56:41 06:18 188.7k 90 559.9M 0 0 90 504.2M 0 151.7k 1:02:59 56:43 06:16 178.4k 90 559.9M 0 0 90 504.3M 0 151.7k 1:02:59 56:44 06:15 148.3k 90 559.9M 0 0 90 504.5M 0 151.7k 1:02:59 56:45 06:14 138.3k 90 559.9M 0 0 90 504.7M 0 151.7k 1:02:59 56:46 06:13 143.9k 90 559.9M 0 0 90 504.8M 0 151.7k 1:03:00 56:47 06:13 140.0k 90 559.9M 0 0 90 505.0M 0 151.6k 1:03:00 56:49 06:11 117.6k 90 559.9M 0 0 90 505.1M 0 151.6k 1:03:01 56:50 06:11 122.5k 90 559.9M 0 0 90 505.2M 0 151.6k 1:03:01 56:51 06:10 111.1k 90 559.9M 0 0 90 505.3M 0 151.6k 1:03:02 56:53 06:09 102.1k 90 559.9M 0 0 90 505.5M 0 151.6k 1:03:02 56:54 06:08 104.4k 90 559.9M 0 0 90 505.7M 0 151.6k 1:03:02 56:55 06:07 122.3k 90 559.9M 0 0 90 505.9M 0 151.5k 1:03:02 56:57 06:05 119.1k 90 559.9M 0 0 90 506.0M 0 151.5k 1:03:03 56:58 06:05 122.1k 90 559.9M 0 0 90 506.1M 0 151.5k 1:03:03 56:59 06:04 124.7k 90 559.9M 0 0 90 506.3M 0 151.5k 1:03:03 57:01 06:02 121.8k 90 559.9M 0 0 90 506.5M 0 151.5k 1:03:04 57:02 06:02 115.2k 90 559.9M 0 0 90 506.6M 0 151.5k 1:03:03 57:03 06:00 126.9k 90 559.9M 0 0 90 506.8M 0 151.5k 1:03:04 57:04 06:00 128.7k 90 559.9M 0 0 90 507.0M 0 151.5k 1:03:04 57:06 05:58 121.5k 90 559.9M 0 0 90 507.0M 0 151.4k 1:03:05 57:07 05:58 113.2k 90 559.9M 0 0 90 507.2M 0 151.4k 1:03:05 57:08 05:57 119.4k 90 559.9M 0 0 90 507.3M 0 151.4k 1:03:05 57:10 05:55 110.2k 90 559.9M 0 0 90 507.5M 0 151.4k 1:03:05 57:11 05:54 111.7k 90 559.9M 0 0 90 507.6M 0 151.4k 1:03:06 57:12 05:54 117.9k 90 559.9M 0 0 90 507.8M 0 151.4k 1:03:05 57:13 05:52 146.9k 90 559.9M 0 0 90 508.1M 0 151.5k 1:03:05 57:14 05:51 164.2k 90 559.9M 0 0 90 508.3M 0 151.5k 1:03:04 57:15 05:49 177.4k 90 559.9M 0 0 90 508.4M 0 151.5k 1:03:04 57:16 05:48 177.3k 90 559.9M 0 0 90 508.5M 0 151.4k 1:03:05 57:17 05:48 179.0k 90 559.9M 0 0 90 508.7M 0 151.5k 1:03:04 57:18 05:46 172.8k 90 559.9M 0 0 90 508.8M 0 151.4k 1:03:05 57:19 05:46 144.5k 90 559.9M 0 0 90 509.0M 0 151.4k 1:03:05 57:21 05:44 137.1k 90 559.9M 0 0 90 509.1M 0 151.4k 1:03:06 57:22 05:44 127.8k 90 559.9M 0 0 90 509.3M 0 151.4k 1:03:05 57:23 05:42 133.6k 90 559.9M 0 0 90 509.5M 0 151.4k 1:03:06 57:25 05:41 115.9k 91 559.9M 0 0 91 509.6M 0 151.4k 1:03:07 57:26 05:41 112.1k 91 559.9M 0 0 91 509.6M 0 151.4k 1:03:07 57:26 05:41 151.4k 91 559.9M 0 0 91 509.7M 0 151.3k 1:03:07 57:27 05:40 94228 91 559.9M 0 0 91 509.9M 0 151.3k 1:03:08 57:29 05:39 110.1k 91 559.9M 0 0 91 510.0M 0 151.3k 1:03:08 57:30 05:38 109.3k 91 559.9M 0 0 91 510.2M 0 151.3k 1:03:08 57:31 05:37 117.0k 91 559.9M 0 0 91 510.4M 0 151.3k 1:03:08 57:33 05:35 123.3k 91 559.9M 0 0 91 510.6M 0 151.3k 1:03:08 57:34 05:34 139.0k 91 559.9M 0 0 91 510.8M 0 151.3k 1:03:08 57:35 05:33 142.6k 91 559.9M 0 0 91 511.0M 0 151.3k 1:03:08 57:37 05:31 147.4k 91 559.9M 0 0 91 511.1M 0 151.3k 1:03:09 57:38 05:31 137.7k 91 559.9M 0 0 91 511.3M 0 151.3k 1:03:09 57:39 05:30 136.9k 91 559.9M 0 0 91 511.5M 0 151.3k 1:03:08 57:40 05:28 138.8k 91 559.9M 0 0 91 511.6M 0 151.3k 1:03:09 57:41 05:28 135.7k 91 559.9M 0 0 91 511.8M 0 151.3k 1:03:08 57:42 05:26 141.8k 91 559.9M 0 0 91 511.9M 0 151.3k 1:03:09 57:44 05:25 148.4k 91 559.9M 0 0 91 512.1M 0 151.3k 1:03:09 57:45 05:24 150.6k 91 559.9M 0 0 91 512.3M 0 151.3k 1:03:09 57:46 05:23 144.0k 91 559.9M 0 0 91 512.5M 0 151.3k 1:03:09 57:47 05:22 147.0k 91 559.9M 0 0 91 512.6M 0 151.3k 1:03:09 57:48 05:21 149.7k 91 559.9M 0 0 91 512.8M 0 151.3k 1:03:08 57:50 05:18 160.4k 91 559.9M 0 0 91 513.0M 0 151.3k 1:03:08 57:51 05:17 161.9k 91 559.9M 0 0 91 513.3M 0 151.3k 1:03:08 57:52 05:16 177.0k 91 559.9M 0 0 91 513.5M 0 151.3k 1:03:07 57:53 05:14 193.5k 91 559.9M 0 0 91 513.7M 0 151.4k 1:03:07 57:54 05:13 189.4k 91 559.9M 0 0 91 513.9M 0 151.4k 1:03:07 57:55 05:12 187.5k 91 559.9M 0 0 91 514.1M 0 151.4k 1:03:07 57:57 05:10 181.5k 91 559.9M 0 0 91 514.3M 0 151.4k 1:03:07 57:58 05:09 174.6k 91 559.9M 0 0 91 514.5M 0 151.4k 1:03:07 57:59 05:08 163.2k 91 559.9M 0 0 91 514.8M 0 151.4k 1:03:06 58:01 05:05 169.3k 91 559.9M 0 0 91 515.0M 0 151.4k 1:03:06 58:02 05:04 172.8k 91 559.9M 0 0 91 515.1M 0 151.4k 1:03:06 58:03 05:03 170.7k 92 559.9M 0 0 92 515.3M 0 151.4k 1:03:06 58:05 05:01 155.1k 92 559.9M 0 0 92 515.5M 0 151.4k 1:03:07 58:06 05:01 142.5k 92 559.9M 0 0 92 515.6M 0 151.3k 1:03:07 58:07 05:00 127.0k 92 559.9M 0 0 92 515.7M 0 151.3k 1:03:08 58:08 05:00 113.8k 92 559.9M 0 0 92 515.8M 0 151.3k 1:03:08 58:10 04:58 107.6k 92 559.9M 0 0 92 516.0M 0 151.3k 1:03:08 58:11 04:57 104.1k 92 559.9M 0 0 92 516.0M 0 151.3k 1:03:09 58:12 04:57 99.48k 92 559.9M 0 0 92 516.1M 0 151.2k 1:03:10 58:13 04:57 99699 92 559.9M 0 0 92 516.3M 0 151.2k 1:03:10 58:14 04:56 97928 92 559.9M 0 0 92 516.4M 0 151.2k 1:03:10 58:15 04:55 99.68k 92 559.9M 0 0 92 516.5M 0 151.2k 1:03:11 58:17 04:54 98.86k 92 559.9M 0 0 92 516.6M 0 151.2k 1:03:11 58:18 04:53 108.1k 92 559.9M 0 0 92 516.8M 0 151.2k 1:03:11 58:19 04:52 111.9k 92 559.9M 0 0 92 517.0M 0 151.2k 1:03:11 58:20 04:51 122.7k 92 559.9M 0 0 92 517.2M 0 151.2k 1:03:11 58:21 04:50 142.6k 92 559.9M 0 0 92 517.4M 0 151.2k 1:03:10 58:22 04:48 157.5k 92 559.9M 0 0 92 517.6M 0 151.2k 1:03:10 58:24 04:46 162.5k 92 559.9M 0 0 92 517.8M 0 151.2k 1:03:11 58:25 04:46 165.3k 92 559.9M 0 0 92 518.0M 0 151.2k 1:03:11 58:26 04:45 164.2k 92 559.9M 0 0 92 518.1M 0 151.2k 1:03:11 58:28 04:43 142.7k 92 559.9M 0 0 92 518.2M 0 151.2k 1:03:11 58:29 04:42 129.6k 92 559.9M 0 0 92 518.4M 0 151.2k 1:03:11 58:30 04:41 130.2k 92 559.9M 0 0 92 518.6M 0 151.2k 1:03:11 58:31 04:40 136.2k 92 559.9M 0 0 92 518.8M 0 151.2k 1:03:11 58:33 04:38 133.6k 92 559.9M 0 0 92 518.9M 0 151.2k 1:03:12 58:34 04:38 133.3k 92 559.9M 0 0 92 519.1M 0 151.2k 1:03:12 58:35 04:37 145.5k 92 559.9M 0 0 92 519.3M 0 151.2k 1:03:12 58:36 04:36 149.8k 92 559.9M 0 0 92 519.5M 0 151.2k 1:03:12 58:37 04:35 141.5k 92 559.9M 0 0 92 519.6M 0 151.2k 1:03:12 58:39 04:33 150.7k 92 559.9M 0 0 92 519.8M 0 151.2k 1:03:11 58:40 04:31 162.0k 92 559.9M 0 0 92 520.0M 0 151.2k 1:03:11 58:41 04:30 162.3k 92 559.9M 0 0 92 520.1M 0 151.2k 1:03:11 58:42 04:29 152.8k 92 559.9M 0 0 92 520.3M 0 151.2k 1:03:12 58:43 04:29 153.6k 92 559.9M 0 0 92 520.5M 0 151.1k 1:03:12 58:45 04:27 136.1k 92 559.9M 0 0 92 520.6M 0 151.1k 1:03:12 58:46 04:26 127.2k 92 559.9M 0 0 92 520.7M 0 151.1k 1:03:13 58:47 04:26 111.7k 93 559.9M 0 0 93 520.8M 0 151.1k 1:03:13 58:48 04:25 111.9k 93 559.9M 0 0 93 521.0M 0 151.1k 1:03:13 58:49 04:24 117.9k 93 559.9M 0 0 93 521.2M 0 151.1k 1:03:13 58:50 04:23 135.5k 93 559.9M 0 0 93 521.5M 0 151.1k 1:03:12 58:51 04:21 155.0k 93 559.9M 0 0 93 521.6M 0 151.1k 1:03:12 58:53 04:19 163.7k 93 559.9M 0 0 93 521.8M 0 151.1k 1:03:12 58:54 04:18 170.4k 93 559.9M 0 0 93 522.0M 0 151.2k 1:03:12 58:55 04:17 181.2k 93 559.9M 0 0 93 522.2M 0 151.2k 1:03:12 58:56 04:16 172.1k 93 559.9M 0 0 93 522.4M 0 151.2k 1:03:12 58:57 04:15 163.1k 93 559.9M 0 0 93 522.6M 0 151.2k 1:03:12 58:59 04:13 171.6k 93 559.9M 0 0 93 522.8M 0 151.2k 1:03:11 59:00 04:11 180.3k 93 559.9M 0 0 93 523.0M 0 151.2k 1:03:11 59:01 04:10 161.1k 93 559.9M 0 0 93 523.1M 0 151.2k 1:03:12 59:03 04:09 153.6k 93 559.9M 0 0 93 523.3M 0 151.1k 1:03:12 59:04 04:08 142.5k 93 559.9M 0 0 93 523.4M 0 151.1k 1:03:12 59:05 04:07 136.1k 93 559.9M 0 0 93 523.6M 0 151.1k 1:03:12 59:06 04:06 123.7k 93 559.9M 0 0 93 523.8M 0 151.1k 1:03:13 59:07 04:06 122.4k 93 559.9M 0 0 93 524.0M 0 151.1k 1:03:13 59:09 04:04 132.3k 93 559.9M 0 0 93 524.1M 0 151.1k 1:03:12 59:10 04:02 143.6k 93 559.9M 0 0 93 524.3M 0 151.1k 1:03:12 59:11 04:01 147.9k 93 559.9M 0 0 93 524.5M 0 151.1k 1:03:13 59:12 04:01 138.0k 93 559.9M 0 0 93 524.6M 0 151.1k 1:03:13 59:14 03:59 136.7k 93 559.9M 0 0 93 524.8M 0 151.1k 1:03:13 59:15 03:58 133.2k 93 559.9M 0 0 93 525.0M 0 151.1k 1:03:14 59:17 03:57 125.2k 93 559.9M 0 0 93 525.1M 0 151.1k 1:03:14 59:18 03:56 124.1k 93 559.9M 0 0 93 525.4M 0 151.1k 1:03:13 59:19 03:54 146.2k 93 559.9M 0 0 93 525.7M 0 151.2k 1:03:12 59:20 03:52 176.4k 93 559.9M 0 0 93 526.0M 0 151.2k 1:03:12 59:22 03:50 188.2k 93 559.9M 0 0 93 526.1M 0 151.2k 1:03:12 59:23 03:49 197.4k 93 559.9M 0 0 93 526.3M 0 151.2k 1:03:12 59:24 03:48 196.0k 94 559.9M 0 0 94 526.5M 0 151.2k 1:03:12 59:25 03:47 180.3k 94 559.9M 0 0 94 526.7M 0 151.2k 1:03:12 59:27 03:45 152.9k 94 559.9M 0 0 94 526.9M 0 151.2k 1:03:12 59:28 03:44 151.2k 94 559.9M 0 0 94 527.1M 0 151.2k 1:03:12 59:29 03:43 150.6k 94 559.9M 0 0 94 527.2M 0 151.2k 1:03:12 59:30 03:42 147.7k 94 559.9M 0 0 94 527.3M 0 151.1k 1:03:12 59:31 03:41 145.8k 94 559.9M 0 0 94 527.5M 0 151.2k 1:03:12 59:32 03:40 153.7k 94 559.9M 0 0 94 527.8M 0 151.2k 1:03:12 59:34 03:38 155.2k 94 559.9M 0 0 94 527.9M 0 151.2k 1:03:12 59:35 03:37 148.4k 94 559.9M 0 0 94 528.1M 0 151.1k 1:03:12 59:36 03:36 143.9k 94 559.9M 0 0 94 528.2M 0 151.1k 1:03:13 59:38 03:35 137.4k 94 559.9M 0 0 94 528.4M 0 151.1k 1:03:13 59:39 03:34 136.5k 94 559.9M 0 0 94 528.6M 0 151.1k 1:03:12 59:40 03:32 134.1k 94 559.9M 0 0 94 528.7M 0 151.1k 1:03:13 59:41 03:32 133.2k 94 559.9M 0 0 94 528.9M 0 151.1k 1:03:12 59:42 03:30 148.1k 94 559.9M 0 0 94 529.1M 0 151.1k 1:03:13 59:43 03:30 155.1k 94 559.9M 0 0 94 529.3M 0 151.1k 1:03:13 59:45 03:28 146.9k 94 559.9M 0 0 94 529.4M 0 151.1k 1:03:13 59:46 03:27 134.4k 94 559.9M 0 0 94 529.5M 0 151.1k 1:03:13 59:47 03:26 133.8k 94 559.9M 0 0 94 529.6M 0 151.1k 1:03:14 59:48 03:26 119.9k 94 559.9M 0 0 94 529.8M 0 151.1k 1:03:14 59:50 03:24 125.4k 94 559.9M 0 0 94 530.1M 0 151.1k 1:03:13 59:51 03:22 142.6k 94 559.9M 0 0 94 530.3M 0 151.1k 1:03:13 59:52 03:21 151.1k 94 559.9M 0 0 94 530.4M 0 151.1k 1:03:13 59:53 03:20 151.0k 94 559.9M 0 0 94 530.6M 0 151.1k 1:03:14 59:55 03:19 153.3k 94 559.9M 0 0 94 530.7M 0 151.1k 1:03:14 59:56 03:18 146.9k 94 559.9M 0 0 94 530.9M 0 151.1k 1:03:14 59:57 03:17 136.5k 94 559.9M 0 0 94 531.1M 0 151.1k 1:03:14 59:58 03:16 135.5k 94 559.9M 0 0 94 531.3M 0 151.1k 1:03:14 1:00:00 03:14 137.1k 94 559.9M 0 0 94 531.4M 0 151.1k 1:03:14 1:00:01 03:13 136.6k 94 559.9M 0 0 94 531.6M 0 151.1k 1:03:14 1:00:02 03:12 148.1k 94 559.9M 0 0 94 531.8M 0 151.1k 1:03:14 1:00:03 03:11 142.9k 94 559.9M 0 0 94 531.9M 0 151.0k 1:03:15 1:00:04 03:11 131.3k 95 559.9M 0 0 95 532.1M 0 151.0k 1:03:15 1:00:06 03:09 134.6k 95 559.9M 0 0 95 532.3M 0 151.0k 1:03:15 1:00:07 03:08 141.1k 95 559.9M 0 0 95 532.5M 0 151.0k 1:03:15 1:00:08 03:07 136.6k 95 559.9M 0 0 95 532.6M 0 151.0k 1:03:15 1:00:10 03:05 135.3k 95 559.9M 0 0 95 532.8M 0 151.0k 1:03:15 1:00:11 03:04 144.5k 95 559.9M 0 0 95 533.0M 0 151.0k 1:03:15 1:00:12 03:03 144.8k 95 559.9M 0 0 95 533.1M 0 151.0k 1:03:15 1:00:14 03:01 136.1k 95 559.9M 0 0 95 533.3M 0 151.0k 1:03:15 1:00:15 03:00 136.8k 95 559.9M 0 0 95 533.6M 0 151.0k 1:03:15 1:00:16 02:59 146.8k 95 559.9M 0 0 95 533.8M 0 151.0k 1:03:15 1:00:18 02:57 157.5k 95 559.9M 0 0 95 534.0M 0 151.0k 1:03:15 1:00:19 02:56 158.3k 95 559.9M 0 0 95 534.2M 0 151.1k 1:03:14 1:00:20 02:54 173.2k 95 559.9M 0 0 95 534.4M 0 151.1k 1:03:14 1:00:21 02:53 171.2k 95 559.9M 0 0 95 534.6M 0 151.1k 1:03:14 1:00:22 02:52 171.9k 95 559.9M 0 0 95 534.8M 0 151.1k 1:03:14 1:00:24 02:50 158.2k 95 559.9M 0 0 95 535.0M 0 151.1k 1:03:14 1:00:25 02:49 158.3k 95 559.9M 0 0 95 535.1M 0 151.1k 1:03:14 1:00:26 02:48 158.1k 95 559.9M 0 0 95 535.3M 0 151.1k 1:03:14 1:00:27 02:47 157.4k 95 559.9M 0 0 95 535.5M 0 151.1k 1:03:14 1:00:28 02:46 145.9k 95 559.9M 0 0 95 535.6M 0 151.0k 1:03:15 1:00:29 02:46 143.8k 95 559.9M 0 0 95 535.7M 0 151.0k 1:03:15 1:00:31 02:44 135.3k 95 559.9M 0 0 95 535.8M 0 151.0k 1:03:15 1:00:32 02:43 120.6k 95 559.9M 0 0 95 536.0M 0 151.0k 1:03:16 1:00:33 02:43 114.9k 95 559.9M 0 0 95 536.1M 0 151.0k 1:03:16 1:00:34 02:42 110.2k 95 559.9M 0 0 95 536.2M 0 151.0k 1:03:17 1:00:36 02:41 103.6k 95 559.9M 0 0 95 536.4M 0 151.0k 1:03:17 1:00:37 02:40 112.0k 95 559.9M 0 0 95 536.6M 0 151.0k 1:03:17 1:00:38 02:39 118.6k 95 559.9M 0 0 95 536.7M 0 151.0k 1:03:17 1:00:39 02:38 118.0k 95 559.9M 0 0 95 536.8M 0 150.9k 1:03:18 1:00:41 02:37 116.9k 95 559.9M 0 0 95 537.0M 0 150.9k 1:03:18 1:00:42 02:36 112.9k 95 559.9M 0 0 95 537.1M 0 150.9k 1:03:18 1:00:44 02:34 112.8k 95 559.9M 0 0 95 537.3M 0 150.9k 1:03:18 1:00:45 02:33 119.0k 96 559.9M 0 0 96 537.6M 0 150.9k 1:03:18 1:00:46 02:32 137.0k 96 559.9M 0 0 96 537.8M 0 150.9k 1:03:18 1:00:47 02:31 148.1k 96 559.9M 0 0 96 538.0M 0 150.9k 1:03:17 1:00:48 02:29 178.0k 96 559.9M 0 0 96 538.1M 0 150.9k 1:03:17 1:00:50 02:27 175.2k 96 559.9M 0 0 96 538.3M 0 150.9k 1:03:17 1:00:51 02:26 175.7k 96 559.9M 0 0 96 538.5M 0 150.9k 1:03:17 1:00:52 02:25 156.2k 96 559.9M 0 0 96 538.6M 0 150.9k 1:03:18 1:00:53 02:25 145.6k 96 559.9M 0 0 96 538.7M 0 150.9k 1:03:18 1:00:54 02:24 126.9k 96 559.9M 0 0 96 538.8M 0 150.9k 1:03:18 1:00:55 02:23 124.9k 96 559.9M 0 0 96 539.0M 0 150.9k 1:03:18 1:00:56 02:22 120.7k 96 559.9M 0 0 96 539.2M 0 150.9k 1:03:18 1:00:57 02:21 132.3k 96 559.9M 0 0 96 539.4M 0 150.9k 1:03:18 1:00:59 02:19 142.3k 96 559.9M 0 0 96 539.6M 0 150.9k 1:03:18 1:01:00 02:18 153.6k 96 559.9M 0 0 96 539.8M 0 150.9k 1:03:17 1:01:01 02:16 175.2k 96 559.9M 0 0 96 540.0M 0 150.9k 1:03:18 1:01:02 02:16 173.6k 96 559.9M 0 0 96 540.1M 0 150.9k 1:03:18 1:01:03 02:15 159.6k 96 559.9M 0 0 96 540.3M 0 150.9k 1:03:18 1:01:05 02:13 158.5k 96 559.9M 0 0 96 540.5M 0 150.9k 1:03:18 1:01:06 02:12 156.3k 96 559.9M 0 0 96 540.8M 0 150.9k 1:03:17 1:01:07 02:10 152.1k 96 559.9M 0 0 96 541.0M 0 150.9k 1:03:17 1:01:09 02:08 151.3k 96 559.9M 0 0 96 541.1M 0 150.9k 1:03:18 1:01:10 02:08 148.8k 96 559.9M 0 0 96 541.2M 0 150.9k 1:03:18 1:01:11 02:07 143.9k 96 559.9M 0 0 96 541.4M 0 150.9k 1:03:18 1:01:12 02:06 143.7k 96 559.9M 0 0 96 541.6M 0 150.9k 1:03:18 1:01:13 02:05 135.4k 96 559.9M 0 0 96 541.8M 0 150.9k 1:03:18 1:01:15 02:03 137.9k 96 559.9M 0 0 96 542.0M 0 150.9k 1:03:18 1:01:16 02:02 149.3k 96 559.9M 0 0 96 542.1M 0 150.9k 1:03:18 1:01:17 02:01 158.0k 96 559.9M 0 0 96 542.3M 0 150.9k 1:03:18 1:01:19 01:59 153.2k 96 559.9M 0 0 96 542.6M 0 150.9k 1:03:18 1:01:20 01:58 161.1k 96 559.9M 0 0 96 542.8M 0 151.0k 1:03:17 1:01:21 01:56 172.8k 96 559.9M 0 0 96 543.0M 0 150.9k 1:03:17 1:01:22 01:55 170.5k 97 559.9M 0 0 97 543.2M 0 151.0k 1:03:17 1:01:23 01:54 174.7k 97 559.9M 0 0 97 543.4M 0 151.0k 1:03:17 1:01:24 01:53 187.0k 97 559.9M 0 0 97 543.6M 0 151.0k 1:03:16 1:01:25 01:51 182.3k 97 559.9M 0 0 97 543.8M 0 151.0k 1:03:17 1:01:27 01:50 162.6k 97 559.9M 0 0 97 543.9M 0 151.0k 1:03:17 1:01:28 01:49 158.5k 97 559.9M 0 0 97 544.1M 0 151.0k 1:03:17 1:01:29 01:48 147.0k 97 559.9M 0 0 97 544.3M 0 151.0k 1:03:17 1:01:31 01:46 151.2k 97 559.9M 0 0 97 544.5M 0 151.0k 1:03:17 1:01:32 01:45 148.8k 97 559.9M 0 0 97 544.6M 0 150.9k 1:03:17 1:01:33 01:44 138.0k 97 559.9M 0 0 97 544.8M 0 150.9k 1:03:17 1:01:34 01:43 136.0k 97 559.9M 0 0 97 545.0M 0 150.9k 1:03:18 1:01:36 01:42 139.8k 97 559.9M 0 0 97 545.1M 0 150.9k 1:03:18 1:01:37 01:41 127.9k 97 559.9M 0 0 97 545.3M 0 150.9k 1:03:18 1:01:38 01:40 119.3k 97 559.9M 0 0 97 545.5M 0 150.9k 1:03:18 1:01:40 01:38 134.1k 97 559.9M 0 0 97 545.6M 0 150.9k 1:03:18 1:01:41 01:37 146.1k 97 559.9M 0 0 97 545.8M 0 150.9k 1:03:18 1:01:42 01:36 151.2k 97 559.9M 0 0 97 546.1M 0 151.0k 1:03:17 1:01:43 01:34 168.2k 97 559.9M 0 0 97 546.3M 0 151.0k 1:03:16 1:01:44 01:32 192.7k 97 559.9M 0 0 97 546.5M 0 151.0k 1:03:16 1:01:45 01:31 194.1k 97 559.9M 0 0 97 546.8M 0 151.0k 1:03:16 1:01:46 01:30 203.2k 97 559.9M 0 0 97 547.0M 0 151.0k 1:03:15 1:01:47 01:28 216.4k 97 559.9M 0 0 97 547.2M 0 151.0k 1:03:15 1:01:49 01:26 202.5k 97 559.9M 0 0 97 547.4M 0 151.0k 1:03:15 1:01:50 01:25 192.0k 97 559.9M 0 0 97 547.6M 0 151.0k 1:03:15 1:01:51 01:24 186.3k 97 559.9M 0 0 97 547.8M 0 151.0k 1:03:15 1:01:53 01:22 158.1k 97 559.9M 0 0 97 547.9M 0 151.0k 1:03:16 1:01:54 01:22 133.0k 97 559.9M 0 0 97 548.1M 0 151.0k 1:03:16 1:01:55 01:21 131.1k 97 559.9M 0 0 97 548.3M 0 151.0k 1:03:16 1:01:57 01:19 128.4k 97 559.9M 0 0 97 548.5M 0 151.0k 1:03:16 1:01:58 01:18 134.4k 97 559.9M 0 0 97 548.6M 0 151.0k 1:03:16 1:01:59 01:17 143.2k 98 559.9M 0 0 98 548.8M 0 151.0k 1:03:16 1:02:00 01:16 152.1k 98 559.9M 0 0 98 549.0M 0 151.0k 1:03:16 1:02:02 01:14 154.2k 98 559.9M 0 0 98 549.3M 0 151.0k 1:03:15 1:02:03 01:12 167.9k 98 559.9M 0 0 98 549.5M 0 151.0k 1:03:15 1:02:04 01:11 168.8k 98 559.9M 0 0 98 549.6M 0 151.0k 1:03:15 1:02:05 01:10 164.6k 98 559.9M 0 0 98 549.8M 0 151.0k 1:03:15 1:02:07 01:08 166.6k 98 559.9M 0 0 98 550.0M 0 151.0k 1:03:16 1:02:08 01:08 156.6k 98 559.9M 0 0 98 550.1M 0 151.0k 1:03:16 1:02:09 01:07 135.9k 98 559.9M 0 0 98 550.3M 0 151.0k 1:03:16 1:02:11 01:05 129.9k 98 559.9M 0 0 98 550.5M 0 151.0k 1:03:16 1:02:12 01:04 141.5k 98 559.9M 0 0 98 550.6M 0 151.0k 1:03:16 1:02:13 01:03 136.5k 98 559.9M 0 0 98 550.8M 0 151.0k 1:03:16 1:02:14 01:02 129.3k 98 559.9M 0 0 98 550.9M 0 151.0k 1:03:17 1:02:15 01:02 126.2k 98 559.9M 0 0 98 551.1M 0 151.0k 1:03:17 1:02:17 01:00 121.6k 98 559.9M 0 0 98 551.2M 0 150.9k 1:03:17 1:02:18 00:59 110.1k 98 559.9M 0 0 98 551.3M 0 150.9k 1:03:18 1:02:19 00:59 110.1k 98 559.9M 0 0 98 551.5M 0 150.9k 1:03:18 1:02:20 00:58 121.2k 98 559.9M 0 0 98 551.7M 0 150.9k 1:03:18 1:02:22 00:56 133.1k 98 559.9M 0 0 98 551.9M 0 150.9k 1:03:18 1:02:23 00:55 137.7k 98 559.9M 0 0 98 552.1M 0 150.9k 1:03:18 1:02:24 00:54 142.1k 98 559.9M 0 0 98 552.2M 0 150.9k 1:03:18 1:02:25 00:53 140.4k 98 559.9M 0 0 98 552.4M 0 150.9k 1:03:18 1:02:26 00:52 148.4k 98 559.9M 0 0 98 552.6M 0 150.9k 1:03:17 1:02:28 00:49 159.3k 98 559.9M 0 0 98 552.8M 0 150.9k 1:03:17 1:02:29 00:48 154.7k 98 559.9M 0 0 98 553.0M 0 150.9k 1:03:17 1:02:30 00:47 156.9k 98 559.9M 0 0 98 553.1M 0 150.9k 1:03:18 1:02:32 00:46 156.6k 98 559.9M 0 0 98 553.3M 0 150.9k 1:03:18 1:02:33 00:45 147.6k 98 559.9M 0 0 98 553.5M 0 150.9k 1:03:18 1:02:34 00:44 134.8k 98 559.9M 0 0 98 553.6M 0 150.9k 1:03:18 1:02:35 00:43 134.3k 98 559.9M 0 0 98 553.8M 0 150.9k 1:03:18 1:02:37 00:41 130.6k 98 559.9M 0 0 98 554.0M 0 150.9k 1:03:19 1:02:38 00:41 132.3k 98 559.9M 0 0 98 554.1M 0 150.9k 1:03:19 1:02:39 00:40 133.0k 98 559.9M 0 0 98 554.3M 0 150.9k 1:03:19 1:02:41 00:38 133.8k 98 559.9M 0 0 98 554.3M 0 150.9k 1:03:19 1:02:41 00:38 150.9k 99 559.9M 0 0 99 554.5M 0 150.9k 1:03:19 1:02:42 00:37 136.2k 99 559.9M 0 0 99 554.6M 0 150.9k 1:03:19 1:02:43 00:36 132.7k 99 559.9M 0 0 99 554.8M 0 150.9k 1:03:19 1:02:44 00:35 135.8k 99 559.9M 0 0 99 555.0M 0 150.9k 1:03:19 1:02:45 00:34 133.3k 99 559.9M 0 0 99 555.1M 0 150.9k 1:03:20 1:02:47 00:33 132.5k 99 559.9M 0 0 99 555.3M 0 150.8k 1:03:20 1:02:48 00:32 121.9k 99 559.9M 0 0 99 555.5M 0 150.8k 1:03:20 1:02:50 00:30 122.0k 99 559.9M 0 0 99 555.6M 0 150.8k 1:03:21 1:02:51 00:30 117.8k 99 559.9M 0 0 99 555.8M 0 150.8k 1:03:20 1:02:52 00:28 127.2k 99 559.9M 0 0 99 556.0M 0 150.8k 1:03:20 1:02:53 00:27 128.1k 99 559.9M 0 0 99 556.1M 0 150.8k 1:03:21 1:02:55 00:26 140.7k 99 559.9M 0 0 99 556.3M 0 150.8k 1:03:20 1:02:56 00:24 147.5k 99 559.9M 0 0 99 556.5M 0 150.8k 1:03:20 1:02:57 00:23 152.5k 99 559.9M 0 0 99 556.7M 0 150.8k 1:03:21 1:02:59 00:22 140.5k 99 559.9M 0 0 99 556.9M 0 150.8k 1:03:21 1:03:00 00:21 140.2k 99 559.9M 0 0 99 557.1M 0 150.8k 1:03:21 1:03:02 00:19 138.8k 99 559.9M 0 0 99 557.3M 0 150.8k 1:03:21 1:03:03 00:18 135.3k 99 559.9M 0 0 99 557.4M 0 150.8k 1:03:21 1:03:04 00:17 128.8k 99 559.9M 0 0 99 557.5M 0 150.8k 1:03:22 1:03:05 00:17 129.6k 99 559.9M 0 0 99 557.7M 0 150.8k 1:03:22 1:03:07 00:15 128.8k 99 559.9M 0 0 99 557.8M 0 150.7k 1:03:22 1:03:08 00:14 119.6k 99 559.9M 0 0 99 558.0M 0 150.7k 1:03:23 1:03:10 00:13 104.9k 99 559.9M 0 0 99 558.1M 0 150.7k 1:03:23 1:03:11 00:12 109.7k 99 559.9M 0 0 99 558.3M 0 150.7k 1:03:24 1:03:12 00:12 109.9k 99 559.9M 0 0 99 558.5M 0 150.7k 1:03:24 1:03:14 00:10 109.7k 99 559.9M 0 0 99 558.6M 0 150.7k 1:03:24 1:03:15 00:09 112.8k 99 559.9M 0 0 99 558.7M 0 150.7k 1:03:24 1:03:16 00:08 123.8k 99 559.9M 0 0 99 558.8M 0 150.7k 1:03:25 1:03:17 00:08 121.8k 99 559.9M 0 0 99 559.0M 0 150.6k 1:03:25 1:03:18 00:07 119.9k 99 559.9M 0 0 99 559.1M 0 150.7k 1:03:25 1:03:19 00:06 127.9k 99 559.9M 0 0 99 559.4M 0 150.7k 1:03:24 1:03:20 00:04 151.4k 99 559.9M 0 0 99 559.6M 0 150.7k 1:03:24 1:03:22 00:02 159.0k 99 559.9M 0 0 99 559.8M 0 150.7k 1:03:24 1:03:23 00:01 177.2k* upload completely sent off: 587198893 bytes 100 559.9M 0 0 100 559.9M 0 150.7k 1:03:24 1:03:24 161.5k 100 559.9M 0 0 100 559.9M 0 150.6k 1:03:25 1:03:25 133.7k 100 559.9M 0 0 100 559.9M 0 150.6k 1:03:26 1:03:26 96741 100 559.9M 0 0 100 559.9M 0 150.5k 1:03:27 1:03:27 66863{ [5 bytes data] < HTTP/1.1 200 OK < x-amz-id-2: rx/x1RMbfB2UkeSdDJYIbOJCLjZi/Uite8rGetLZ+lwEUN+yvIphYJ5YC7WO+9y1KAk/yS7gMvE= < x-amz-request-id: X55616CAA9G3HPTY < Date: Sun, 17 May 2026 02:21:02 GMT < x-amz-server-side-encryption: AES256 < ETag: "6c7e96c89821d55a6122125d5e1caae6" < x-amz-checksum-crc64nvme: m+NLlWIOkzE= < x-amz-checksum-type: FULL_OBJECT < Content-Length: 0 < Server: AmazonS3 < Connection: close < 100 559.9M 0 0 100 559.9M 0 150.5k 1:03:27 1:03:27 66863 100 559.9M 0 0 100 559.9M 0 150.5k 1:03:27 1:03:27 66863 100 559.9M 0 0 100 559.9M 0 150.5k 1:03:27 1:03:27 66863 * shutting down connection #0 took: 3855.44 seconds no out.png (QPSChart)! heaps: (155759088, 166303416, 158358036.8, 2132963.1464263042) [2026-05-16 23:24:36.601008] RUN: tar cjf logs.tar.bz2 --exclude=*.pk * [2026-05-16 23:25:43.323711] took 66.7 sec /l/logs.nightly/2026.05.15.14.49.32/logs.tar.bz2: fixed index size 125222.02 MB /l/logs.nightly/2026.05.15.14.49.32/logs.tar.bz2: fixed index time 40300.3s, bytes 25526799676 (from log) [2026-05-16 23:26:25.659852] done: total time 1 day, 8:36:53.190612 stored: 2021.10.28.07.03.29, 2021-10-28 07:03:29.455588 stored: 2021.11.04.08.14.20, 2021-11-04 08:14:20.226758 stored: 2021.11.04.18.04.32, 2021-11-04 18:04:32.679673 stored: 2021.11.05.18.04.30, 2021-11-05 18:04:30.080343 stored: 2021.11.06.18.04.39, 2021-11-06 18:04:39.550844 stored: 2021.11.07.18.04.36, 2021-11-07 18:04:36.657551 stored: 2021.11.08.18.04.00, 2021-11-08 18:04:00.994911 stored: 2021.11.09.18.04.20, 2021-11-09 18:04:20.109951 stored: 2021.11.10.18.03.54, 2021-11-10 18:03:54.222418 stored: 2021.11.11.18.03.57, 2021-11-11 18:03:57.523108 stored: 2021.11.12.18.04.06, 2021-11-12 18:04:06.704620 stored: 2021.11.13.18.03.52, 2021-11-13 18:03:52.601836 stored: 2021.11.14.18.03.58, 2021-11-14 18:03:58.888657 stored: 2021.11.15.18.04.03, 2021-11-15 18:04:03.246773 stored: 2021.11.16.18.04.11, 2021-11-16 18:04:11.243090 stored: 2021.11.21.07.10.06, 2021-11-21 07:10:06.045829 stored: 2021.11.21.18.03.53, 2021-11-21 18:03:53.490910 stored: 2021.11.24.18.04.23, 2021-11-24 18:04:23.532303 stored: 2021.11.25.18.03.48, 2021-11-25 18:03:48.813023 stored: 2021.11.26.18.03.56, 2021-11-26 18:03:56.783023 stored: 2021.11.27.18.03.48, 2021-11-27 18:03:48.676827 stored: 2021.11.28.18.04.03, 2021-11-28 18:04:03.888523 stored: 2021.11.30.07.32.39, 2021-11-30 07:32:39.551397 stored: 2021.11.30.18.02.53, 2021-11-30 18:02:53.210136 stored: 2021.12.01.18.02.55, 2021-12-01 18:02:55.259860 stored: 2021.12.02.18.03.01, 2021-12-02 18:03:01.423573 stored: 2021.12.03.18.03.07, 2021-12-03 18:03:07.491405 stored: 2021.12.05.18.02.56, 2021-12-05 18:02:56.805659 stored: 2021.12.06.18.02.47, 2021-12-06 18:02:47.787420 stored: 2021.12.07.18.02.52, 2021-12-07 18:02:52.822450 stored: 2021.12.08.18.02.42, 2021-12-08 18:02:42.731446 stored: 2021.12.10.18.02.40, 2021-12-10 18:02:40.132823 stored: 2021.12.11.18.02.37, 2021-12-11 18:02:37.827254 stored: 2021.12.12.18.02.40, 2021-12-12 18:02:40.436487 stored: 2021.12.13.18.02.38, 2021-12-13 18:02:38.296226 stored: 2021.12.14.18.02.37, 2021-12-14 18:02:37.558732 stored: 2021.12.15.18.02.39, 2021-12-15 18:02:39.006679 stored: 2021.12.16.18.02.33, 2021-12-16 18:02:33.312126 stored: 2021.12.17.18.02.37, 2021-12-17 18:02:37.875521 stored: 2021.12.18.18.02.30, 2021-12-18 18:02:30.413818 stored: 2021.12.19.18.02.38, 2021-12-19 18:02:38.838903 stored: 2021.12.20.18.02.38, 2021-12-20 18:02:38.697312 stored: 2022.01.01.18.17.43, 2022-01-01 18:17:43.282858 stored: 2022.01.02.18.03.14, 2022-01-02 18:03:14.180760 stored: 2022.01.03.18.03.13, 2022-01-03 18:03:13.115413 stored: 2022.01.04.18.03.13, 2022-01-04 18:03:13.678645 stored: 2022.01.05.18.03.14, 2022-01-05 18:03:14.479346 stored: 2022.01.06.18.03.20, 2022-01-06 18:03:20.894516 stored: 2022.01.07.18.03.19, 2022-01-07 18:03:19.289337 stored: 2022.01.08.18.03.14, 2022-01-08 18:03:14.173607 stored: 2022.01.09.18.03.19, 2022-01-09 18:03:19.993633 stored: 2022.01.10.18.03.12, 2022-01-10 18:03:12.149096 stored: 2022.01.11.18.03.18, 2022-01-11 18:03:18.149751 stored: 2022.01.12.18.03.17, 2022-01-12 18:03:17.100414 stored: 2022.01.13.18.03.24, 2022-01-13 18:03:24.390526 stored: 2022.01.14.18.03.18, 2022-01-14 18:03:18.213643 stored: 2022.01.15.18.03.15, 2022-01-15 18:03:15.659939 stored: 2022.01.16.18.03.22, 2022-01-16 18:03:22.620035 stored: 2022.01.17.18.03.16, 2022-01-17 18:03:16.817740 stored: 2022.01.19.10.17.11, 2022-01-19 10:17:11.082836 stored: 2022.01.20.18.03.13, 2022-01-20 18:03:13.241737 stored: 2022.01.21.18.02.45, 2022-01-21 18:02:45.803123 stored: 2022.01.22.18.02.40, 2022-01-22 18:02:40.750450 stored: 2022.01.23.18.03.17, 2022-01-23 18:03:17.307031 stored: 2022.01.26.18.03.08, 2022-01-26 18:03:08.854761 stored: 2022.01.27.18.02.43, 2022-01-27 18:02:43.999643 stored: 2022.01.28.18.03.15, 2022-01-28 18:03:15.360164 stored: 2022.01.29.18.02.44, 2022-01-29 18:02:44.395479 stored: 2022.01.30.18.02.48, 2022-01-30 18:02:48.161000 stored: 2022.01.31.18.03.10, 2022-01-31 18:03:10.904959 stored: 2022.02.01.18.02.43, 2022-02-01 18:02:43.496433 stored: 2022.02.02.18.02.46, 2022-02-02 18:02:46.350857 stored: 2022.02.03.18.03.02, 2022-02-03 18:03:02.092885 stored: 2022.02.04.18.02.45, 2022-02-04 18:02:45.187430 stored: 2022.02.09.18.31.03, 2022-02-09 18:31:03.246074 stored: 2022.02.18.07.54.59, 2022-02-18 07:54:59.694179 stored: 2022.02.18.18.02.47, 2022-02-18 18:02:47.068530 stored: 2022.02.19.18.02.45, 2022-02-19 18:02:45.734838 stored: 2022.02.20.18.03.09, 2022-02-20 18:03:09.236364 stored: 2022.02.21.18.02.40, 2022-02-21 18:02:40.593799 stored: 2022.02.22.18.03.13, 2022-02-22 18:03:13.109429 stored: 2022.02.23.18.02.43, 2022-02-23 18:02:43.345842 stored: 2022.02.24.18.02.43, 2022-02-24 18:02:43.877807 stored: 2022.02.25.18.03.10, 2022-02-25 18:03:10.143495 stored: 2022.02.26.18.02.43, 2022-02-26 18:02:43.966247 stored: 2022.02.27.18.02.42, 2022-02-27 18:02:42.669502 stored: 2022.02.28.18.03.18, 2022-02-28 18:03:18.265343 stored: 2022.03.01.18.02.46, 2022-03-01 18:02:46.525887 stored: 2022.03.02.18.03.14, 2022-03-02 18:03:14.970684 stored: 2022.03.03.18.03.10, 2022-03-03 18:03:10.964372 stored: 2022.03.04.18.02.43, 2022-03-04 18:02:43.385113 stored: 2022.03.05.18.03.13, 2022-03-05 18:03:13.831560 stored: 2022.03.06.18.02.41, 2022-03-06 18:02:41.743793 stored: 2022.03.07.18.02.50, 2022-03-07 18:02:50.024173 stored: 2022.03.08.18.03.11, 2022-03-08 18:03:11.246520 stored: 2022.03.09.18.03.05, 2022-03-09 18:03:05.565553 stored: 2022.03.10.18.03.14, 2022-03-10 18:03:14.219741 stored: 2022.03.11.18.03.10, 2022-03-11 18:03:10.828184 stored: 2022.03.12.18.03.12, 2022-03-12 18:03:12.634204 stored: 2022.03.13.18.03.03, 2022-03-13 18:03:03.282738 stored: 2022.03.14.18.03.09, 2022-03-14 18:03:09.756518 stored: 2022.03.15.18.02.55, 2022-03-15 18:02:55.449989 stored: 2022.03.16.18.03.03, 2022-03-16 18:03:03.602354 stored: 2022.03.17.18.03.02, 2022-03-17 18:03:02.060290 stored: 2022.03.18.18.02.57, 2022-03-18 18:02:57.471094 stored: 2022.03.19.18.02.54, 2022-03-19 18:02:54.357434 stored: 2022.03.20.18.03.00, 2022-03-20 18:03:00.033975 stored: 2022.03.21.18.02.58, 2022-03-21 18:02:58.169196 stored: 2022.03.22.18.02.59, 2022-03-22 18:02:59.643690 stored: 2022.03.23.18.03.07, 2022-03-23 18:03:07.211772 stored: 2022.03.24.18.03.04, 2022-03-24 18:03:04.900816 stored: 2022.03.25.18.02.58, 2022-03-25 18:02:58.251937 stored: 2022.03.26.18.02.54, 2022-03-26 18:02:54.760987 stored: 2022.03.27.18.02.58, 2022-03-27 18:02:58.523452 stored: 2022.03.28.18.02.54, 2022-03-28 18:02:54.758276 stored: 2022.03.29.18.03.00, 2022-03-29 18:03:00.746316 stored: 2022.03.30.18.02.58, 2022-03-30 18:02:58.752598 stored: 2022.03.31.18.03.00, 2022-03-31 18:03:00.597065 stored: 2022.04.01.18.02.57, 2022-04-01 18:02:57.424492 stored: 2022.04.02.18.02.57, 2022-04-02 18:02:57.955852 stored: 2022.04.05.18.03.04, 2022-04-05 18:03:04.798447 stored: 2022.04.06.18.02.58, 2022-04-06 18:02:58.576892 stored: 2022.04.07.18.02.59, 2022-04-07 18:02:59.742062 stored: 2022.04.08.18.03.02, 2022-04-08 18:03:02.736752 stored: 2022.04.09.18.02.57, 2022-04-09 18:02:57.307297 stored: 2022.04.10.18.02.56, 2022-04-10 18:02:56.174384 stored: 2022.04.11.18.02.59, 2022-04-11 18:02:59.941170 stored: 2022.04.12.18.02.56, 2022-04-12 18:02:56.118596 stored: 2022.04.13.18.03.00, 2022-04-13 18:03:00.318774 stored: 2022.04.14.18.03.03, 2022-04-14 18:03:03.549003 stored: 2022.04.15.18.02.57, 2022-04-15 18:02:57.675674 stored: 2022.04.16.18.03.02, 2022-04-16 18:03:02.676051 stored: 2022.04.17.18.03.01, 2022-04-17 18:03:01.686635 stored: 2022.04.18.18.02.56, 2022-04-18 18:02:56.782626 stored: 2022.04.20.06.04.42, 2022-04-20 06:04:42.713956 stored: 2022.04.20.18.03.06, 2022-04-20 18:03:06.153503 stored: 2022.04.21.18.03.04, 2022-04-21 18:03:04.336656 stored: 2022.04.22.18.02.56, 2022-04-22 18:02:56.793190 stored: 2022.04.23.18.02.58, 2022-04-23 18:02:58.455267 stored: 2022.04.24.18.03.02, 2022-04-24 18:03:02.685044 stored: 2022.04.25.18.02.57, 2022-04-25 18:02:57.816439 stored: 2022.04.26.18.02.55, 2022-04-26 18:02:55.232329 stored: 2022.04.27.18.03.00, 2022-04-27 18:03:00.544766 stored: 2022.04.28.18.02.55, 2022-04-28 18:02:55.501720 stored: 2022.04.29.18.03.00, 2022-04-29 18:03:00.357389 stored: 2022.04.30.18.02.59, 2022-04-30 18:02:59.451627 stored: 2022.05.01.18.03.02, 2022-05-01 18:03:02.039547 stored: 2022.05.02.18.03.04, 2022-05-02 18:03:04.271047 stored: 2022.05.03.18.02.58, 2022-05-03 18:02:58.299703 stored: 2022.05.06.06.33.00, 2022-05-06 06:33:00.689368 stored: 2022.05.06.18.02.45, 2022-05-06 18:02:45.471320 stored: 2022.05.07.18.02.52, 2022-05-07 18:02:52.792526 stored: 2022.05.08.18.02.55, 2022-05-08 18:02:55.087351 stored: 2022.05.09.18.02.53, 2022-05-09 18:02:53.611427 stored: 2022.05.12.18.02.51, 2022-05-12 18:02:51.721813 stored: 2022.05.13.18.02.47, 2022-05-13 18:02:47.751226 stored: 2022.05.14.18.02.46, 2022-05-14 18:02:46.450758 stored: 2022.05.15.18.02.44, 2022-05-15 18:02:44.576069 stored: 2022.05.17.18.02.46, 2022-05-17 18:02:46.431282 stored: 2022.05.18.18.02.30, 2022-05-18 18:02:30.693172 stored: 2022.05.19.18.02.49, 2022-05-19 18:02:49.827154 stored: 2022.05.20.18.02.44, 2022-05-20 18:02:44.789891 stored: 2022.05.21.18.02.48, 2022-05-21 18:02:48.256156 stored: 2022.05.22.18.02.49, 2022-05-22 18:02:49.529612 stored: 2022.05.23.18.02.48, 2022-05-23 18:02:48.350989 stored: 2022.05.24.18.02.52, 2022-05-24 18:02:52.461013 stored: 2022.05.25.18.02.45, 2022-05-25 18:02:45.563084 stored: 2022.05.31.09.54.10, 2022-05-31 09:54:10.787369 stored: 2022.06.01.08.15.21, 2022-06-01 08:15:21.254066 stored: 2022.06.01.18.02.49, 2022-06-01 18:02:49.750461 stored: 2022.06.02.07.59.04, 2022-06-02 07:59:04.212824 stored: 2022.06.02.18.02.47, 2022-06-02 18:02:47.420772 stored: 2022.06.03.18.02.44, 2022-06-03 18:02:44.764715 stored: 2022.06.04.18.02.47, 2022-06-04 18:02:47.749276 stored: 2022.06.05.18.02.46, 2022-06-05 18:02:46.506575 stored: 2022.06.06.18.02.49, 2022-06-06 18:02:49.276502 stored: 2022.06.07.18.02.50, 2022-06-07 18:02:50.324813 stored: 2022.06.08.18.02.48, 2022-06-08 18:02:48.096195 stored: 2022.06.09.18.02.51, 2022-06-09 18:02:51.423498 stored: 2022.06.10.18.02.48, 2022-06-10 18:02:48.377319 stored: 2022.06.11.18.02.52, 2022-06-11 18:02:52.105637 stored: 2022.06.12.18.02.52, 2022-06-12 18:02:52.834410 stored: 2022.06.13.18.02.51, 2022-06-13 18:02:51.295977 stored: 2022.06.14.18.02.54, 2022-06-14 18:02:54.374967 stored: 2022.06.15.06.49.59, 2022-06-15 06:49:59.130434 stored: 2022.06.15.18.02.44, 2022-06-15 18:02:44.449539 stored: 2022.06.16.18.02.48, 2022-06-16 18:02:48.229346 stored: 2022.06.17.18.02.45, 2022-06-17 18:02:45.522032 stored: 2022.06.18.18.02.46, 2022-06-18 18:02:46.704598 stored: 2022.06.19.18.02.48, 2022-06-19 18:02:48.745174 stored: 2022.06.20.18.02.56, 2022-06-20 18:02:56.708037 stored: 2022.06.21.18.02.47, 2022-06-21 18:02:47.342532 stored: 2022.06.22.18.02.52, 2022-06-22 18:02:52.298425 stored: 2022.06.23.18.02.48, 2022-06-23 18:02:48.882837 stored: 2022.06.24.18.02.51, 2022-06-24 18:02:51.083754 stored: 2022.06.25.18.02.48, 2022-06-25 18:02:48.038873 stored: 2022.06.26.18.02.50, 2022-06-26 18:02:50.595081 stored: 2022.06.27.18.02.51, 2022-06-27 18:02:51.448267 stored: 2022.06.28.18.02.49, 2022-06-28 18:02:49.760022 stored: 2022.06.29.18.02.48, 2022-06-29 18:02:48.403397 stored: 2022.06.30.18.02.49, 2022-06-30 18:02:49.036467 stored: 2022.07.01.18.02.47, 2022-07-01 18:02:47.027407 stored: 2022.07.04.07.28.17, 2022-07-04 07:28:17.078865 stored: 2022.07.04.18.02.46, 2022-07-04 18:02:46.546540 stored: 2022.07.05.18.02.46, 2022-07-05 18:02:46.268882 stored: 2022.07.06.18.02.47, 2022-07-06 18:02:47.538912 stored: 2022.07.08.18.02.52, 2022-07-08 18:02:52.275476 stored: 2022.07.09.18.02.52, 2022-07-09 18:02:52.126154 stored: 2022.07.10.18.02.49, 2022-07-10 18:02:49.552148 stored: 2022.07.11.18.02.47, 2022-07-11 18:02:47.780614 stored: 2022.07.12.18.02.50, 2022-07-12 18:02:50.319222 stored: 2022.07.13.18.02.33, 2022-07-13 18:02:33.427271 stored: 2022.07.14.18.02.45, 2022-07-14 18:02:45.401174 stored: 2022.07.15.18.03.00, 2022-07-15 18:03:00.442758 stored: 2022.07.16.18.02.59, 2022-07-16 18:02:59.145436 stored: 2022.07.17.18.02.59, 2022-07-17 18:02:59.565565 stored: 2022.07.18.18.02.48, 2022-07-18 18:02:48.825419 stored: 2022.07.22.06.55.43, 2022-07-22 06:55:43.082318 stored: 2022.07.23.06.00.31, 2022-07-23 06:00:31.572717 stored: 2022.07.23.18.02.56, 2022-07-23 18:02:56.236469 stored: 2022.07.24.18.02.59, 2022-07-24 18:02:59.822205 stored: 2022.07.25.18.02.58, 2022-07-25 18:02:58.206960 stored: 2022.07.26.18.03.00, 2022-07-26 18:03:00.552749 stored: 2022.07.27.18.02.41, 2022-07-27 18:02:41.491561 stored: 2022.07.28.18.03.00, 2022-07-28 18:03:00.184449 stored: 2022.07.29.05.32.17, 2022-07-29 05:32:17.907522 stored: 2022.07.30.07.27.11, 2022-07-30 07:27:11.127080 stored: 2022.07.30.18.02.50, 2022-07-30 18:02:50.793370 stored: 2022.07.31.18.02.55, 2022-07-31 18:02:55.879812 stored: 2022.08.01.18.02.51, 2022-08-01 18:02:51.991168 stored: 2022.08.02.18.03.02, 2022-08-02 18:03:02.518477 stored: 2022.08.03.18.02.51, 2022-08-03 18:02:51.936040 stored: 2022.08.04.18.02.46, 2022-08-04 18:02:46.472359 stored: 2022.08.05.18.02.52, 2022-08-05 18:02:52.029197 stored: 2022.08.06.18.02.53, 2022-08-06 18:02:53.164107 stored: 2022.08.07.18.02.49, 2022-08-07 18:02:49.580148 stored: 2022.08.09.19.23.56, 2022-08-09 19:23:56.749349 stored: 2022.08.10.18.02.52, 2022-08-10 18:02:52.982299 stored: 2022.08.17.08.16.28, 2022-08-17 08:16:28.335487 stored: 2022.08.17.18.02.54, 2022-08-17 18:02:54.825221 stored: 2022.08.18.18.03.23, 2022-08-18 18:03:23.299833 stored: 2022.08.19.18.02.47, 2022-08-19 18:02:47.000292 stored: 2022.08.20.18.02.55, 2022-08-20 18:02:55.121126 stored: 2022.08.21.18.02.51, 2022-08-21 18:02:51.203643 stored: 2022.08.22.06.06.49, 2022-08-22 06:06:49.119870 stored: 2022.08.30.06.35.38, 2022-08-30 06:35:38.108548 stored: 2022.08.31.06.12.53, 2022-08-31 06:12:53.980950 stored: 2022.08.31.18.02.53, 2022-08-31 18:02:53.812614 stored: 2022.09.01.09.41.04, 2022-09-01 09:41:04.560256 stored: 2022.09.02.12.08.06, 2022-09-02 12:08:06.094646 stored: 2022.09.04.11.46.23, 2022-09-04 11:46:23.775863 stored: 2022.09.05.05.45.12, 2022-09-05 05:45:12.571696 stored: 2022.09.05.18.02.55, 2022-09-05 18:02:55.821046 stored: 2022.09.06.18.02.52, 2022-09-06 18:02:52.785120 stored: 2022.09.07.18.02.57, 2022-09-07 18:02:57.625782 stored: 2022.09.08.18.03.21, 2022-09-08 18:03:21.079514 stored: 2022.09.09.18.02.55, 2022-09-09 18:02:55.904538 stored: 2022.09.10.18.02.55, 2022-09-10 18:02:55.529806 stored: 2022.09.11.18.02.56, 2022-09-11 18:02:56.085669 stored: 2022.09.12.18.03.45, 2022-09-12 18:03:45.709203 stored: 2022.09.13.18.02.58, 2022-09-13 18:02:58.352570 stored: 2022.09.14.18.02.54, 2022-09-14 18:02:54.230050 stored: 2022.09.15.18.02.54, 2022-09-15 18:02:54.238296 stored: 2022.09.16.18.02.52, 2022-09-16 18:02:52.110429 stored: 2022.09.17.18.03.01, 2022-09-17 18:03:01.434150 stored: 2022.09.18.18.02.56, 2022-09-18 18:02:56.353910 stored: 2022.09.19.18.03.00, 2022-09-19 18:03:00.079408 stored: 2022.09.20.18.02.57, 2022-09-20 18:02:57.492326 stored: 2022.09.21.18.02.56, 2022-09-21 18:02:56.353960 stored: 2022.09.22.18.02.56, 2022-09-22 18:02:56.474854 stored: 2022.09.23.18.02.57, 2022-09-23 18:02:57.669188 stored: 2022.09.24.18.02.59, 2022-09-24 18:02:59.806205 stored: 2022.09.25.18.02.59, 2022-09-25 18:02:59.190830 stored: 2022.09.26.18.03.52, 2022-09-26 18:03:52.848909 stored: 2022.09.27.18.02.37, 2022-09-27 18:02:37.827659 stored: 2022.09.28.18.02.55, 2022-09-28 18:02:55.002146 stored: 2022.09.29.18.02.57, 2022-09-29 18:02:57.758005 stored: 2022.09.30.18.05.25, 2022-09-30 18:05:25.962638 stored: 2022.10.01.18.02.27, 2022-10-01 18:02:27.927861 stored: 2022.10.02.18.02.35, 2022-10-02 18:02:35.935875 stored: 2022.10.03.18.03.01, 2022-10-03 18:03:01.310740 stored: 2022.10.04.18.02.36, 2022-10-04 18:02:36.857038 stored: 2022.10.06.07.28.42, 2022-10-06 07:28:42.386172 stored: 2022.10.06.18.02.31, 2022-10-06 18:02:31.476235 stored: 2022.10.07.18.02.31, 2022-10-07 18:02:31.541305 stored: 2022.10.09.05.36.17, 2022-10-09 05:36:17.828744 stored: 2022.10.09.18.02.42, 2022-10-09 18:02:42.183627 stored: 2022.10.10.18.02.49, 2022-10-10 18:02:49.335348 stored: 2022.10.11.18.02.38, 2022-10-11 18:02:38.100132 stored: 2022.10.12.18.03.32, 2022-10-12 18:03:32.783997 stored: 2022.10.13.18.02.37, 2022-10-13 18:02:37.667391 stored: 2022.10.14.18.03.19, 2022-10-14 18:03:19.219738 stored: 2022.10.15.18.02.55, 2022-10-15 18:02:55.025395 stored: 2022.10.16.18.02.39, 2022-10-16 18:02:39.231821 stored: 2022.10.17.18.03.25, 2022-10-17 18:03:25.211219 stored: 2022.10.18.18.02.36, 2022-10-18 18:02:36.597499 stored: 2022.10.19.18.02.28, 2022-10-19 18:02:28.428784 stored: 2022.10.20.18.03.04, 2022-10-20 18:03:04.596975 stored: 2022.10.21.18.03.01, 2022-10-21 18:03:01.365348 stored: 2022.10.22.18.02.59, 2022-10-22 18:02:59.461611 stored: 2022.10.23.18.03.00, 2022-10-23 18:03:00.062912 stored: 2022.10.24.18.02.38, 2022-10-24 18:02:38.586168 stored: 2022.10.25.18.02.58, 2022-10-25 18:02:58.014045 stored: 2022.10.26.18.02.32, 2022-10-26 18:02:32.094910 stored: 2022.10.27.18.02.44, 2022-10-27 18:02:44.427713 stored: 2022.10.28.18.02.24, 2022-10-28 18:02:24.237438 stored: 2022.10.29.18.02.21, 2022-10-29 18:02:21.301497 stored: 2022.10.30.18.02.22, 2022-10-30 18:02:22.909685 stored: 2022.11.01.18.02.22, 2022-11-01 18:02:22.633110 stored: 2022.11.03.18.02.24, 2022-11-03 18:02:24.631208 stored: 2022.11.04.18.03.06, 2022-11-04 18:03:06.986892 stored: 2022.11.05.18.02.27, 2022-11-05 18:02:27.807238 stored: 2022.11.06.18.02.21, 2022-11-06 18:02:21.002408 stored: 2022.11.07.18.02.27, 2022-11-07 18:02:27.660064 stored: 2022.11.08.18.02.24, 2022-11-08 18:02:24.159608 stored: 2022.11.09.18.02.22, 2022-11-09 18:02:22.797916 stored: 2022.11.10.18.02.21, 2022-11-10 18:02:21.076510 stored: 2022.11.11.18.02.20, 2022-11-11 18:02:20.124465 stored: 2022.11.12.18.02.45, 2022-11-12 18:02:45.121886 stored: 2022.11.13.18.02.20, 2022-11-13 18:02:20.710555 stored: 2022.11.14.18.02.24, 2022-11-14 18:02:24.052841 stored: 2022.11.15.18.03.06, 2022-11-15 18:03:06.319538 stored: 2022.11.16.18.02.58, 2022-11-16 18:02:58.789458 stored: 2022.11.17.18.02.59, 2022-11-17 18:02:59.449212 stored: 2022.11.18.18.02.32, 2022-11-18 18:02:32.485443 stored: 2022.11.19.18.02.42, 2022-11-19 18:02:42.800702 stored: 2022.11.20.18.02.39, 2022-11-20 18:02:39.576362 stored: 2022.11.21.18.02.43, 2022-11-21 18:02:43.597391 stored: 2022.11.24.18.03.11, 2022-11-24 18:03:11.804363 stored: 2022.11.25.18.03.10, 2022-11-25 18:03:10.111683 stored: 2022.11.26.18.03.13, 2022-11-26 18:03:13.809206 stored: 2022.11.27.18.02.44, 2022-11-27 18:02:44.345627 stored: 2022.11.28.18.02.44, 2022-11-28 18:02:44.990767 stored: 2022.11.29.18.03.08, 2022-11-29 18:03:08.807634 stored: 2022.11.30.18.02.48, 2022-11-30 18:02:48.715894 stored: 2022.12.01.18.03.11, 2022-12-01 18:03:11.452949 stored: 2022.12.02.18.03.38, 2022-12-02 18:03:38.626955 stored: 2022.12.04.18.03.20, 2022-12-04 18:03:20.985614 stored: 2022.12.05.18.02.48, 2022-12-05 18:02:48.233512 stored: 2022.12.06.18.03.13, 2022-12-06 18:03:13.037211 stored: 2022.12.12.18.03.10, 2022-12-12 18:03:10.820831 stored: 2022.12.22.18.02.46, 2022-12-22 18:02:46.330108 stored: 2022.12.23.18.03.11, 2022-12-23 18:03:11.906109 stored: 2022.12.24.18.02.52, 2022-12-24 18:02:52.078570 stored: 2022.12.25.18.03.12, 2022-12-25 18:03:12.100324 stored: 2022.12.26.18.03.10, 2022-12-26 18:03:10.991373 stored: 2022.12.27.18.02.51, 2022-12-27 18:02:51.655843 stored: 2022.12.28.18.03.11, 2022-12-28 18:03:11.981522 stored: 2022.12.29.18.02.44, 2022-12-29 18:02:44.427874 stored: 2022.12.30.18.03.09, 2022-12-30 18:03:09.929196 stored: 2022.12.31.18.03.10, 2022-12-31 18:03:10.480978 stored: 2023.01.01.18.02.48, 2023-01-01 18:02:48.064500 stored: 2023.01.02.18.03.20, 2023-01-02 18:03:20.772972 stored: 2023.01.03.18.02.50, 2023-01-03 18:02:50.726331 stored: 2023.01.04.18.03.09, 2023-01-04 18:03:09.087177 stored: 2023.01.05.18.02.48, 2023-01-05 18:02:48.734127 stored: 2023.01.06.18.02.48, 2023-01-06 18:02:48.574672 stored: 2023.01.07.18.02.48, 2023-01-07 18:02:48.676663 stored: 2023.01.08.18.03.13, 2023-01-08 18:03:13.388463 stored: 2023.01.09.18.02.48, 2023-01-09 18:02:48.447651 stored: 2023.01.10.18.03.12, 2023-01-10 18:03:12.569315 stored: 2023.01.13.18.03.13, 2023-01-13 18:03:13.722601 stored: 2023.01.14.18.02.52, 2023-01-14 18:02:52.020315 stored: 2023.01.15.18.02.51, 2023-01-15 18:02:51.126604 stored: 2023.01.16.18.03.14, 2023-01-16 18:03:14.738254 stored: 2023.01.17.18.02.54, 2023-01-17 18:02:54.906602 stored: 2023.01.18.18.03.00, 2023-01-18 18:03:00.519133 stored: 2023.01.20.18.02.55, 2023-01-20 18:02:55.915399 stored: 2023.01.21.18.02.52, 2023-01-21 18:02:52.181189 stored: 2023.01.22.18.02.48, 2023-01-22 18:02:48.490828 stored: 2023.02.01.18.02.51, 2023-02-01 18:02:51.659498 stored: 2023.02.02.18.02.50, 2023-02-02 18:02:50.262733 stored: 2023.02.03.18.03.04, 2023-02-03 18:03:04.824955 stored: 2023.02.04.18.02.52, 2023-02-04 18:02:52.867295 stored: 2023.02.05.18.02.49, 2023-02-05 18:02:49.321193 stored: 2023.02.06.18.02.53, 2023-02-06 18:02:53.366101 stored: 2023.02.11.21.48.33, 2023-02-11 21:48:33.009660 stored: 2023.02.12.18.02.51, 2023-02-12 18:02:51.019289 stored: 2023.02.13.18.02.51, 2023-02-13 18:02:51.123155 stored: 2023.02.14.18.02.49, 2023-02-14 18:02:49.186730 stored: 2023.02.15.18.02.53, 2023-02-15 18:02:53.231070 stored: 2023.02.16.18.02.50, 2023-02-16 18:02:50.030876 stored: 2023.02.17.18.02.51, 2023-02-17 18:02:51.040544 stored: 2023.02.18.18.02.54, 2023-02-18 18:02:54.112568 stored: 2023.02.19.18.02.50, 2023-02-19 18:02:50.743898 stored: 2023.02.20.18.02.50, 2023-02-20 18:02:50.294935 stored: 2023.02.21.18.02.51, 2023-02-21 18:02:51.598234 stored: 2023.02.22.18.02.49, 2023-02-22 18:02:49.492952 stored: 2023.02.23.18.02.55, 2023-02-23 18:02:55.217474 stored: 2023.02.24.18.02.50, 2023-02-24 18:02:50.959222 stored: 2023.02.25.18.02.48, 2023-02-25 18:02:48.974183 stored: 2023.02.26.18.02.52, 2023-02-26 18:02:52.916271 stored: 2023.03.01.18.02.48, 2023-03-01 18:02:48.399530 stored: 2023.03.02.18.02.49, 2023-03-02 18:02:49.389318 stored: 2023.03.03.18.02.51, 2023-03-03 18:02:51.085153 stored: 2023.03.04.18.02.48, 2023-03-04 18:02:48.478806 stored: 2023.03.05.18.02.48, 2023-03-05 18:02:48.529432 stored: 2023.03.06.18.02.47, 2023-03-06 18:02:47.983059 stored: 2023.03.07.18.02.50, 2023-03-07 18:02:50.718890 stored: 2023.03.08.18.02.48, 2023-03-08 18:02:48.812577 stored: 2023.03.09.18.02.51, 2023-03-09 18:02:51.010400 stored: 2023.03.10.18.02.45, 2023-03-10 18:02:45.741286 stored: 2023.03.11.18.02.47, 2023-03-11 18:02:47.906678 stored: 2023.03.12.18.02.49, 2023-03-12 18:02:49.049639 stored: 2023.03.13.18.02.48, 2023-03-13 18:02:48.972625 stored: 2023.03.14.18.02.49, 2023-03-14 18:02:49.459646 stored: 2023.03.15.18.02.48, 2023-03-15 18:02:48.415725 stored: 2023.03.16.18.02.48, 2023-03-16 18:02:48.710826 stored: 2023.03.17.18.02.55, 2023-03-17 18:02:55.633506 stored: 2023.03.18.18.02.50, 2023-03-18 18:02:50.292493 stored: 2023.03.19.18.02.47, 2023-03-19 18:02:47.604863 stored: 2023.03.20.18.02.51, 2023-03-20 18:02:51.153325 stored: 2023.03.21.18.03.17, 2023-03-21 18:03:17.562903 stored: 2023.03.22.18.03.13, 2023-03-22 18:03:13.794706 stored: 2023.03.23.18.03.10, 2023-03-23 18:03:10.053263 stored: 2023.03.27.18.02.48, 2023-03-27 18:02:48.690184 stored: 2023.03.28.18.02.49, 2023-03-28 18:02:49.404816 stored: 2023.03.29.18.03.17, 2023-03-29 18:03:17.395232 stored: 2023.03.30.18.03.16, 2023-03-30 18:03:16.164812 stored: 2023.03.31.18.03.20, 2023-03-31 18:03:20.603284 stored: 2023.04.01.18.02.45, 2023-04-01 18:02:45.813346 stored: 2023.04.02.18.03.13, 2023-04-02 18:03:13.352889 stored: 2023.04.03.18.03.18, 2023-04-03 18:03:18.635774 stored: 2023.04.04.18.03.12, 2023-04-04 18:03:12.185983 stored: 2023.04.05.18.02.48, 2023-04-05 18:02:48.400723 stored: 2023.04.06.18.03.13, 2023-04-06 18:03:13.565552 stored: 2023.04.07.18.02.49, 2023-04-07 18:02:49.370785 stored: 2023.04.09.18.03.39, 2023-04-09 18:03:39.856040 stored: 2023.04.10.18.04.05, 2023-04-10 18:04:05.393864 stored: 2023.04.11.18.03.37, 2023-04-11 18:03:37.629185 stored: 2023.04.12.18.03.37, 2023-04-12 18:03:37.044735 stored: 2023.04.13.18.03.38, 2023-04-13 18:03:38.722857 stored: 2023.04.14.18.03.52, 2023-04-14 18:03:52.942429 stored: 2023.04.15.18.03.40, 2023-04-15 18:03:40.703059 stored: 2023.04.16.18.03.36, 2023-04-16 18:03:36.404244 stored: 2023.04.17.18.03.37, 2023-04-17 18:03:37.757309 stored: 2023.04.18.18.03.36, 2023-04-18 18:03:36.668023 stored: 2023.04.19.18.03.37, 2023-04-19 18:03:37.166475 stored: 2023.04.20.18.03.39, 2023-04-20 18:03:39.017059 stored: 2023.04.21.18.03.35, 2023-04-21 18:03:35.509226 stored: 2023.04.22.18.03.35, 2023-04-22 18:03:35.566689 stored: 2023.04.23.18.03.40, 2023-04-23 18:03:40.934133 stored: 2023.04.24.18.03.35, 2023-04-24 18:03:35.996931 stored: 2023.04.25.18.03.36, 2023-04-25 18:03:36.374314 stored: 2023.04.26.18.03.37, 2023-04-26 18:03:37.673262 stored: 2023.04.27.18.03.37, 2023-04-27 18:03:37.404011 stored: 2023.04.28.18.03.38, 2023-04-28 18:03:38.606505 stored: 2023.04.29.18.03.36, 2023-04-29 18:03:36.573960 stored: 2023.04.30.18.03.33, 2023-04-30 18:03:33.723898 stored: 2023.05.01.18.03.34, 2023-05-01 18:03:34.994924 stored: 2023.05.02.18.03.36, 2023-05-02 18:03:36.697919 stored: 2023.05.03.18.03.38, 2023-05-03 18:03:38.518918 stored: 2023.05.04.18.03.38, 2023-05-04 18:03:38.214066 stored: 2023.05.05.18.03.37, 2023-05-05 18:03:37.645698 stored: 2023.05.06.18.03.35, 2023-05-06 18:03:35.160028 stored: 2023.05.07.18.03.35, 2023-05-07 18:03:35.614820 stored: 2023.05.11.18.39.30, 2023-05-11 18:39:30.323913 stored: 2023.05.12.18.03.40, 2023-05-12 18:03:40.294857 stored: 2023.05.13.18.03.40, 2023-05-13 18:03:40.841776 stored: 2023.05.14.18.03.41, 2023-05-14 18:03:41.994925 stored: 2023.05.15.18.03.41, 2023-05-15 18:03:41.639299 stored: 2023.05.19.13.18.11, 2023-05-19 13:18:11.876292 stored: 2023.05.20.18.03.41, 2023-05-20 18:03:41.713358 stored: 2023.05.21.18.03.42, 2023-05-21 18:03:42.774563 stored: 2023.05.22.18.03.03, 2023-05-22 18:03:03.024871 stored: 2023.05.23.18.02.52, 2023-05-23 18:02:52.982836 stored: 2023.05.24.18.02.55, 2023-05-24 18:02:55.537684 stored: 2023.05.29.18.02.53, 2023-05-29 18:02:53.519424 stored: 2023.05.30.18.02.54, 2023-05-30 18:02:54.980216 stored: 2023.05.31.18.02.53, 2023-05-31 18:02:53.478837 stored: 2023.06.05.18.02.55, 2023-06-05 18:02:55.982891 stored: 2023.06.06.18.02.53, 2023-06-06 18:02:53.347753 stored: 2023.06.07.18.02.57, 2023-06-07 18:02:57.950534 stored: 2023.06.08.18.02.55, 2023-06-08 18:02:55.043650 stored: 2023.06.09.18.02.56, 2023-06-09 18:02:56.591625 stored: 2023.06.10.18.02.57, 2023-06-10 18:02:57.811317 stored: 2023.06.11.18.02.59, 2023-06-11 18:02:59.421683 stored: 2023.06.12.18.03.01, 2023-06-12 18:03:01.331828 stored: 2023.06.13.18.02.53, 2023-06-13 18:02:53.765644 stored: 2023.06.14.18.02.59, 2023-06-14 18:02:59.356301 stored: 2023.06.15.18.03.01, 2023-06-15 18:03:01.682785 stored: 2023.06.16.18.02.54, 2023-06-16 18:02:54.841140 stored: 2023.06.17.18.02.56, 2023-06-17 18:02:56.927480 stored: 2023.06.18.18.02.58, 2023-06-18 18:02:58.820408 stored: 2023.06.19.18.02.56, 2023-06-19 18:02:56.118429 stored: 2023.06.21.08.31.56, 2023-06-21 08:31:56.311364 stored: 2023.06.21.20.35.50, 2023-06-21 20:35:50.224539 stored: 2023.06.22.18.02.59, 2023-06-22 18:02:59.335848 stored: 2023.06.23.18.02.56, 2023-06-23 18:02:56.786328 stored: 2023.06.24.18.03.02, 2023-06-24 18:03:02.121679 stored: 2023.06.25.18.02.58, 2023-06-25 18:02:58.250080 stored: 2023.06.26.18.02.59, 2023-06-26 18:02:59.549799 stored: 2023.06.27.18.03.02, 2023-06-27 18:03:02.460645 stored: 2023.06.28.18.03.07, 2023-06-28 18:03:07.889541 stored: 2023.07.04.18.28.24, 2023-07-04 18:28:24.105418 stored: 2023.07.05.18.02.59, 2023-07-05 18:02:59.998767 stored: 2023.07.06.18.03.26, 2023-07-06 18:03:26.519721 stored: 2023.07.07.18.03.09, 2023-07-07 18:03:09.891667 stored: 2023.07.08.18.03.01, 2023-07-08 18:03:01.106664 stored: 2023.07.09.18.02.54, 2023-07-09 18:02:54.696232 stored: 2023.07.10.18.03.24, 2023-07-10 18:03:24.169698 stored: 2023.07.11.18.02.59, 2023-07-11 18:02:59.786215 stored: 2023.07.12.18.02.58, 2023-07-12 18:02:58.134567 stored: 2023.07.13.18.02.58, 2023-07-13 18:02:58.715657 stored: 2023.07.14.18.03.01, 2023-07-14 18:03:01.072278 stored: 2023.07.15.18.02.56, 2023-07-15 18:02:56.886608 stored: 2023.07.16.18.03.00, 2023-07-16 18:03:00.616418 stored: 2023.07.17.18.02.56, 2023-07-17 18:02:56.472619 stored: 2023.07.20.03.19.56, 2023-07-20 03:19:56.500148 stored: 2023.07.20.22.16.01, 2023-07-20 22:16:01.182100 stored: 2023.07.21.18.02.58, 2023-07-21 18:02:58.870027 stored: 2023.07.22.18.03.01, 2023-07-22 18:03:01.228460 stored: 2023.07.23.18.02.59, 2023-07-23 18:02:59.430320 stored: 2023.07.24.18.02.57, 2023-07-24 18:02:57.506516 stored: 2023.07.27.07.22.36, 2023-07-27 07:22:36.396470 stored: 2023.07.28.08.28.23, 2023-07-28 08:28:23.525196 stored: 2023.07.29.07.22.29, 2023-07-29 07:22:29.903881 stored: 2023.08.01.10.38.44, 2023-08-01 10:38:44.873749 stored: 2023.08.02.05.14.55, 2023-08-02 05:14:55.510107 stored: 2023.08.03.06.31.03, 2023-08-03 06:31:03.889780 stored: 2023.08.04.05.12.34, 2023-08-04 05:12:34.222106 stored: 2023.08.04.21.16.30, 2023-08-04 21:16:30.648062 stored: 2023.08.05.18.03.48, 2023-08-05 18:03:48.092629 stored: 2023.08.06.18.03.56, 2023-08-06 18:03:56.928292 stored: 2023.08.07.18.03.42, 2023-08-07 18:03:42.961969 stored: 2023.08.08.18.03.37, 2023-08-08 18:03:37.072704 stored: 2023.08.09.18.03.47, 2023-08-09 18:03:47.161942 stored: 2023.08.10.18.03.49, 2023-08-10 18:03:49.633521 stored: 2023.08.11.18.03.52, 2023-08-11 18:03:52.254250 stored: 2023.08.12.18.03.57, 2023-08-12 18:03:57.596125 stored: 2023.08.13.18.03.51, 2023-08-13 18:03:51.210287 stored: 2023.08.14.18.03.49, 2023-08-14 18:03:49.370754 stored: 2023.08.15.18.03.47, 2023-08-15 18:03:47.851867 stored: 2023.08.16.18.03.43, 2023-08-16 18:03:43.139600 stored: 2023.08.17.18.03.46, 2023-08-17 18:03:46.098171 stored: 2023.08.18.18.03.47, 2023-08-18 18:03:47.484420 stored: 2023.08.19.18.03.53, 2023-08-19 18:03:53.128263 stored: 2023.08.20.18.03.55, 2023-08-20 18:03:55.169790 stored: 2023.08.21.18.03.58, 2023-08-21 18:03:58.454804 stored: 2023.08.22.18.04.02, 2023-08-22 18:04:02.258733 stored: 2023.08.23.18.03.50, 2023-08-23 18:03:50.361656 stored: 2023.08.24.18.03.46, 2023-08-24 18:03:46.984915 stored: 2023.08.25.18.03.59, 2023-08-25 18:03:59.755380 stored: 2023.08.26.18.03.56, 2023-08-26 18:03:56.872742 stored: 2023.08.27.18.03.49, 2023-08-27 18:03:49.344336 stored: 2023.08.28.18.03.50, 2023-08-28 18:03:50.087338 stored: 2023.08.29.18.03.56, 2023-08-29 18:03:56.990775 stored: 2023.08.30.18.04.15, 2023-08-30 18:04:15.646694 stored: 2023.08.31.18.03.48, 2023-08-31 18:03:48.048550 stored: 2023.09.01.18.03.49, 2023-09-01 18:03:49.706833 stored: 2023.09.02.18.03.51, 2023-09-02 18:03:51.379428 stored: 2023.09.03.18.03.39, 2023-09-03 18:03:39.238573 stored: 2023.09.04.18.03.46, 2023-09-04 18:03:46.122098 stored: 2023.09.05.18.03.51, 2023-09-05 18:03:51.070295 stored: 2023.09.06.18.03.36, 2023-09-06 18:03:36.439874 stored: 2023.09.07.18.03.50, 2023-09-07 18:03:50.183842 stored: 2023.09.08.18.03.46, 2023-09-08 18:03:46.802345 stored: 2023.09.09.18.03.36, 2023-09-09 18:03:36.322788 stored: 2023.09.10.18.03.39, 2023-09-10 18:03:39.246513 stored: 2023.09.11.18.03.41, 2023-09-11 18:03:41.049337 stored: 2023.09.14.10.35.59, 2023-09-14 10:35:59.284082 stored: 2023.09.15.10.29.53, 2023-09-15 10:29:53.665628 stored: 2023.09.16.02.26.36, 2023-09-16 02:26:36.006501 stored: 2023.09.16.18.08.17, 2023-09-16 18:08:17.666203 stored: 2023.09.17.18.03.42, 2023-09-17 18:03:42.270582 stored: 2023.09.18.18.03.38, 2023-09-18 18:03:38.484209 stored: 2023.09.19.18.03.48, 2023-09-19 18:03:48.564055 stored: 2023.09.20.18.03.40, 2023-09-20 18:03:40.572726 stored: 2023.09.21.18.04.00, 2023-09-21 18:04:00.224593 stored: 2023.09.22.18.03.43, 2023-09-22 18:03:43.622668 stored: 2023.09.23.18.03.41, 2023-09-23 18:03:41.679925 stored: 2023.09.24.18.03.43, 2023-09-24 18:03:43.956728 stored: 2023.09.27.16.04.52, 2023-09-27 16:04:52.401461 stored: 2023.09.28.12.07.38, 2023-09-28 12:07:38.570017 stored: 2023.09.29.03.49.42, 2023-09-29 03:49:42.531761 stored: 2023.09.29.19.45.07, 2023-09-29 19:45:07.467027 stored: 2023.09.30.18.03.37, 2023-09-30 18:03:37.562561 stored: 2023.10.01.18.03.48, 2023-10-01 18:03:48.302668 stored: 2023.10.02.18.03.34, 2023-10-02 18:03:34.427885 stored: 2023.10.03.18.03.47, 2023-10-03 18:03:47.008201 stored: 2023.10.04.18.03.40, 2023-10-04 18:03:40.326694 stored: 2023.10.06.18.03.41, 2023-10-06 18:03:41.841201 stored: 2023.10.07.18.03.40, 2023-10-07 18:03:40.391074 stored: 2023.10.08.18.04.26, 2023-10-08 18:04:26.590692 stored: 2023.10.09.18.03.50, 2023-10-09 18:03:50.559378 stored: 2023.10.10.18.03.55, 2023-10-10 18:03:55.107168 stored: 2023.10.11.18.03.49, 2023-10-11 18:03:49.722394 stored: 2023.10.12.18.03.50, 2023-10-12 18:03:50.858025 stored: 2023.10.13.18.03.44, 2023-10-13 18:03:44.782153 stored: 2023.10.14.18.03.49, 2023-10-14 18:03:49.852081 stored: 2023.10.15.18.03.43, 2023-10-15 18:03:43.844616 stored: 2023.10.16.18.03.45, 2023-10-16 18:03:45.489984 stored: 2023.10.17.18.03.14, 2023-10-17 18:03:14.888678 stored: 2023.10.18.18.03.17, 2023-10-18 18:03:17.154727 stored: 2023.10.19.18.03.18, 2023-10-19 18:03:18.586008 stored: 2023.10.20.18.03.18, 2023-10-20 18:03:18.577604 stored: 2023.10.21.18.03.18, 2023-10-21 18:03:18.060510 stored: 2023.10.22.18.03.16, 2023-10-22 18:03:16.941409 stored: 2023.10.23.18.04.08, 2023-10-23 18:04:08.900421 stored: 2023.10.27.07.53.48, 2023-10-27 07:53:48.210958 stored: 2023.10.28.05.46.04, 2023-10-28 05:46:04.741565 stored: 2023.10.28.21.41.32, 2023-10-28 21:41:32.295311 stored: 2023.10.29.18.03.19, 2023-10-29 18:03:19.143575 stored: 2023.11.01.05.37.30, 2023-11-01 05:37:30.724089 stored: 2023.11.02.04.38.40, 2023-11-02 04:38:40.535128 stored: 2023.11.04.11.23.32, 2023-11-04 11:23:32.010429 stored: 2023.11.05.18.03.22, 2023-11-05 18:03:22.086698 stored: 2023.11.07.05.05.26, 2023-11-07 05:05:26.153916 stored: 2023.11.07.18.03.21, 2023-11-07 18:03:21.888039 stored: 2023.11.09.18.02.58, 2023-11-09 18:02:58.251109 stored: 2023.11.10.05.28.56, 2023-11-10 05:28:56.027068 stored: 2023.11.10.18.03.23, 2023-11-10 18:03:23.871960 stored: 2023.11.12.06.06.42, 2023-11-12 06:06:42.349680 stored: 2023.11.12.18.03.28, 2023-11-12 18:03:28.326974 stored: 2023.11.13.18.03.47, 2023-11-13 18:03:47.095269 stored: 2023.11.14.18.03.47, 2023-11-14 18:03:47.676830 stored: 2023.11.15.18.03.21, 2023-11-15 18:03:21.711083 stored: 2023.11.16.18.03.58, 2023-11-16 18:03:58.828942 stored: 2023.11.17.18.03.27, 2023-11-17 18:03:27.104369 stored: 2023.11.18.18.03.53, 2023-11-18 18:03:53.867968 stored: 2023.11.19.18.03.19, 2023-11-19 18:03:19.039251 stored: 2023.11.20.18.03.55, 2023-11-20 18:03:55.236280 stored: 2023.11.21.18.03.20, 2023-11-21 18:03:20.481444 stored: 2023.11.22.18.03.59, 2023-11-22 18:03:59.054773 stored: 2023.11.23.18.03.20, 2023-11-23 18:03:20.905336 stored: 2023.11.24.18.03.58, 2023-11-24 18:03:58.070627 stored: 2023.11.25.18.03.32, 2023-11-25 18:03:32.794569 stored: 2023.11.26.18.04.04, 2023-11-26 18:04:04.921087 stored: 2023.11.27.18.03.20, 2023-11-27 18:03:20.405207 stored: 2023.11.28.18.03.59, 2023-11-28 18:03:59.851956 stored: 2023.11.29.18.03.30, 2023-11-29 18:03:30.081496 stored: 2023.11.30.18.03.58, 2023-11-30 18:03:58.530410 stored: 2023.12.01.18.03.27, 2023-12-01 18:03:27.447085 stored: 2023.12.02.18.04.08, 2023-12-02 18:04:08.596469 stored: 2023.12.03.18.03.22, 2023-12-03 18:03:22.421165 stored: 2023.12.04.18.04.01, 2023-12-04 18:04:01.388571 stored: 2023.12.05.18.03.26, 2023-12-05 18:03:26.212587 stored: 2023.12.06.18.04.02, 2023-12-06 18:04:02.423424 stored: 2023.12.07.18.03.24, 2023-12-07 18:03:24.934994 stored: 2023.12.08.18.04.07, 2023-12-08 18:04:07.776524 stored: 2023.12.09.18.03.50, 2023-12-09 18:03:50.096462 stored: 2023.12.10.18.04.00, 2023-12-10 18:04:00.727235 stored: 2023.12.11.18.03.30, 2023-12-11 18:03:30.155533 stored: 2023.12.12.18.04.00, 2023-12-12 18:04:00.486177 stored: 2023.12.13.18.03.45, 2023-12-13 18:03:45.118447 stored: 2023.12.14.18.04.38, 2023-12-14 18:04:38.986691 stored: 2023.12.15.18.03.26, 2023-12-15 18:03:26.297394 stored: 2023.12.16.18.04.11, 2023-12-16 18:04:11.748438 stored: 2023.12.17.18.04.03, 2023-12-17 18:04:03.582174 stored: 2023.12.18.18.04.35, 2023-12-18 18:04:35.330333 stored: 2023.12.19.18.03.31, 2023-12-19 18:03:31.045402 stored: 2023.12.20.18.04.32, 2023-12-20 18:04:32.781774 stored: 2023.12.21.18.03.44, 2023-12-21 18:03:44.963557 stored: 2023.12.22.18.04.17, 2023-12-22 18:04:17.444077 stored: 2023.12.23.18.03.29, 2023-12-23 18:03:29.482476 stored: 2023.12.24.18.04.21, 2023-12-24 18:04:21.447537 stored: 2023.12.25.18.03.43, 2023-12-25 18:03:43.082774 stored: 2023.12.26.18.04.39, 2023-12-26 18:04:39.062653 stored: 2023.12.27.18.03.53, 2023-12-27 18:03:53.976808 stored: 2023.12.28.18.04.09, 2023-12-28 18:04:09.011669 stored: 2023.12.29.18.03.31, 2023-12-29 18:03:31.701103 stored: 2023.12.30.18.04.17, 2023-12-30 18:04:17.654615 stored: 2023.12.31.18.03.28, 2023-12-31 18:03:28.706889 stored: 2024.01.01.18.04.05, 2024-01-01 18:04:05.375586 stored: 2024.01.02.18.03.30, 2024-01-02 18:03:30.868344 stored: 2024.01.03.18.04.08, 2024-01-03 18:04:08.180901 stored: 2024.01.04.18.03.36, 2024-01-04 18:03:36.374782 stored: 2024.01.05.18.03.31, 2024-01-05 18:03:31.136465 stored: 2024.01.06.18.03.28, 2024-01-06 18:03:28.561911 stored: 2024.01.07.18.03.33, 2024-01-07 18:03:33.270157 stored: 2024.01.08.18.03.52, 2024-01-08 18:03:52.396001 stored: 2024.01.09.18.03.31, 2024-01-09 18:03:31.633889 stored: 2024.01.10.18.03.29, 2024-01-10 18:03:29.377802 stored: 2024.01.11.18.03.40, 2024-01-11 18:03:40.058174 stored: 2024.01.12.18.03.42, 2024-01-12 18:03:42.329451 stored: 2024.01.13.18.04.07, 2024-01-13 18:04:07.806697 stored: 2024.01.14.18.03.32, 2024-01-14 18:03:32.580443 stored: 2024.01.15.18.04.08, 2024-01-15 18:04:08.547789 stored: 2024.01.16.18.03.31, 2024-01-16 18:03:31.110380 stored: 2024.01.17.18.04.08, 2024-01-17 18:04:08.400883 stored: 2024.01.25.07.47.31, 2024-01-25 07:47:31.364597 stored: 2024.01.25.18.04.24, 2024-01-25 18:04:24.463113 stored: 2024.01.26.18.03.31, 2024-01-26 18:03:31.841914 stored: 2024.01.27.18.04.39, 2024-01-27 18:04:39.318128 stored: 2024.01.28.18.03.39, 2024-01-28 18:03:39.156180 stored: 2024.01.29.18.04.16, 2024-01-29 18:04:16.454744 stored: 2024.01.30.18.04.04, 2024-01-30 18:04:04.490349 stored: 2024.01.31.18.04.51, 2024-01-31 18:04:51.243268 stored: 2024.02.01.18.03.52, 2024-02-01 18:03:52.568942 stored: 2024.02.02.18.04.40, 2024-02-02 18:04:40.758718 stored: 2024.02.03.18.04.05, 2024-02-03 18:04:05.352533 stored: 2024.02.04.18.04.15, 2024-02-04 18:04:15.640570 stored: 2024.02.05.18.03.58, 2024-02-05 18:03:58.660926 stored: 2024.02.06.18.04.12, 2024-02-06 18:04:12.096737 stored: 2024.02.07.18.04.17, 2024-02-07 18:04:17.461053 stored: 2024.02.08.18.04.12, 2024-02-08 18:04:12.917946 stored: 2024.02.09.18.03.57, 2024-02-09 18:03:57.571676 stored: 2024.02.10.18.03.44, 2024-02-10 18:03:44.611405 stored: 2024.02.11.18.04.12, 2024-02-11 18:04:12.699865 stored: 2024.02.12.18.04.21, 2024-02-12 18:04:21.240786 stored: 2024.02.13.18.04.07, 2024-02-13 18:04:07.583684 stored: 2024.02.14.18.04.15, 2024-02-14 18:04:15.479847 stored: 2024.02.15.18.03.33, 2024-02-15 18:03:33.902696 stored: 2024.02.16.18.04.15, 2024-02-16 18:04:15.579528 stored: 2024.02.17.18.04.11, 2024-02-17 18:04:11.378379 stored: 2024.02.18.18.03.31, 2024-02-18 18:03:31.593073 stored: 2024.02.19.18.03.33, 2024-02-19 18:03:33.441411 stored: 2024.02.20.18.03.54, 2024-02-20 18:03:54.708161 stored: 2024.02.21.18.03.46, 2024-02-21 18:03:46.181202 stored: 2024.02.22.18.04.10, 2024-02-22 18:04:10.334308 stored: 2024.02.23.18.04.17, 2024-02-23 18:04:17.168341 stored: 2024.02.24.18.04.01, 2024-02-24 18:04:01.037755 stored: 2024.02.25.18.04.14, 2024-02-25 18:04:14.762871 stored: 2024.02.26.18.03.46, 2024-02-26 18:03:46.032650 stored: 2024.02.27.18.03.35, 2024-02-27 18:03:35.380452 stored: 2024.02.28.18.04.21, 2024-02-28 18:04:21.319028 stored: 2024.02.29.18.04.17, 2024-02-29 18:04:17.382031 stored: 2024.03.01.11.51.27, 2024-03-01 11:51:27.864322 stored: 2024.03.02.18.03.48, 2024-03-02 18:03:48.095426 stored: 2024.03.03.18.04.22, 2024-03-03 18:04:22.542317 stored: 2024.03.04.18.04.16, 2024-03-04 18:04:16.908574 stored: 2024.03.05.18.04.43, 2024-03-05 18:04:43.511287 stored: 2024.03.06.18.04.23, 2024-03-06 18:04:23.133369 stored: 2024.03.07.18.04.24, 2024-03-07 18:04:24.284384 stored: 2024.03.08.18.04.39, 2024-03-08 18:04:39.126761 stored: 2024.03.09.19.04.26, 2024-03-09 19:04:26.299326 stored: 2024.03.11.18.04.29, 2024-03-11 18:04:29.104282 stored: 2024.03.13.10.06.08, 2024-03-13 10:06:08.100179 stored: 2024.03.14.18.04.10, 2024-03-14 18:04:10.495495 stored: 2024.03.21.05.36.54, 2024-03-21 05:36:54.343295 stored: 2024.03.25.14.45.01, 2024-03-25 14:45:01.255571 stored: 2024.03.26.08.24.36, 2024-03-26 08:24:36.827514 stored: 2024.03.26.18.04.49, 2024-03-26 18:04:49.014032 stored: 2024.03.27.18.04.43, 2024-03-27 18:04:43.723538 stored: 2024.03.28.18.04.59, 2024-03-28 18:04:59.974123 stored: 2024.03.29.18.04.47, 2024-03-29 18:04:47.160830 stored: 2024.03.30.18.04.46, 2024-03-30 18:04:46.190314 stored: 2024.03.31.18.04.37, 2024-03-31 18:04:37.571591 stored: 2024.04.01.18.04.48, 2024-04-01 18:04:48.193051 stored: 2024.04.08.18.04.06, 2024-04-08 18:04:06.719116 stored: 2024.04.09.18.04.55, 2024-04-09 18:04:55.028191 stored: 2024.04.10.18.04.42, 2024-04-10 18:04:42.441877 stored: 2024.04.11.18.04.42, 2024-04-11 18:04:42.887368 stored: 2024.04.12.18.04.42, 2024-04-12 18:04:42.437771 stored: 2024.04.13.18.04.48, 2024-04-13 18:04:48.865055 stored: 2024.04.14.18.04.42, 2024-04-14 18:04:42.705675 stored: 2024.04.15.18.04.49, 2024-04-15 18:04:49.659754 stored: 2024.04.16.18.04.41, 2024-04-16 18:04:41.975325 stored: 2024.04.17.18.04.49, 2024-04-17 18:04:49.547007 stored: 2024.04.18.18.04.42, 2024-04-18 18:04:42.451810 stored: 2024.04.19.18.04.42, 2024-04-19 18:04:42.966390 stored: 2024.04.20.18.04.54, 2024-04-20 18:04:54.306767 stored: 2024.04.21.18.04.55, 2024-04-21 18:04:55.917471 stored: 2024.04.22.18.04.53, 2024-04-22 18:04:53.945876 stored: 2024.04.23.18.04.51, 2024-04-23 18:04:51.918096 stored: 2024.04.24.18.04.57, 2024-04-24 18:04:57.906309 stored: 2024.04.25.18.04.53, 2024-04-25 18:04:53.206736 stored: 2024.04.26.18.04.41, 2024-04-26 18:04:41.337053 stored: 2024.04.27.18.04.51, 2024-04-27 18:04:51.160415 stored: 2024.04.28.18.05.03, 2024-04-28 18:05:03.025174 stored: 2024.04.30.18.04.48, 2024-04-30 18:04:48.947989 stored: 2024.05.01.18.04.51, 2024-05-01 18:04:51.835196 stored: 2024.05.02.18.04.58, 2024-05-02 18:04:58.197381 stored: 2024.05.03.18.04.49, 2024-05-03 18:04:49.139787 stored: 2024.05.04.18.04.58, 2024-05-04 18:04:58.496124 stored: 2024.05.05.18.04.50, 2024-05-05 18:04:50.895792 stored: 2024.05.06.18.04.48, 2024-05-06 18:04:48.471433 stored: 2024.05.07.18.04.56, 2024-05-07 18:04:56.382166 stored: 2024.05.08.18.04.48, 2024-05-08 18:04:48.871003 stored: 2024.05.09.18.05.02, 2024-05-09 18:05:02.624753 stored: 2024.05.16.07.59.14, 2024-05-16 07:59:14.267101 stored: 2024.05.16.18.04.25, 2024-05-16 18:04:25.612385 stored: 2024.05.17.18.04.53, 2024-05-17 18:04:53.908938 stored: 2024.05.18.18.04.27, 2024-05-18 18:04:27.957792 stored: 2024.05.19.18.04.47, 2024-05-19 18:04:47.048017 stored: 2024.05.20.18.04.42, 2024-05-20 18:04:42.665907 stored: 2024.05.21.18.04.37, 2024-05-21 18:04:37.372426 stored: 2024.05.22.18.04.54, 2024-05-22 18:04:54.009020 stored: 2024.05.23.18.04.49, 2024-05-23 18:04:49.768181 stored: 2024.05.24.18.04.46, 2024-05-24 18:04:46.500581 stored: 2024.05.25.18.04.53, 2024-05-25 18:04:53.427120 stored: 2024.05.26.18.04.37, 2024-05-26 18:04:37.829545 stored: 2024.05.27.18.04.49, 2024-05-27 18:04:49.186481 stored: 2024.05.28.18.04.22, 2024-05-28 18:04:22.116869 stored: 2024.05.29.18.04.35, 2024-05-29 18:04:35.690509 stored: 2024.05.30.18.04.36, 2024-05-30 18:04:36.585145 stored: 2024.05.31.18.04.20, 2024-05-31 18:04:20.924811 stored: 2024.06.01.18.04.40, 2024-06-01 18:04:40.841522 stored: 2024.06.02.18.04.47, 2024-06-02 18:04:47.305969 stored: 2024.06.03.18.04.43, 2024-06-03 18:04:43.386019 stored: 2024.06.04.18.04.21, 2024-06-04 18:04:21.057006 stored: 2024.06.05.18.04.22, 2024-06-05 18:04:22.401035 stored: 2024.06.07.12.46.00, 2024-06-07 12:46:00.865783 stored: 2024.06.24.18.18.28, 2024-06-24 18:18:28.261776 stored: 2024.06.25.18.04.47, 2024-06-25 18:04:47.991290 stored: 2024.06.28.18.04.49, 2024-06-28 18:04:49.408452 stored: 2024.06.29.18.05.15, 2024-06-29 18:05:15.692298 stored: 2024.06.30.18.04.40, 2024-06-30 18:04:40.833416 stored: 2024.07.01.18.04.59, 2024-07-01 18:04:59.708919 stored: 2024.07.05.14.34.52, 2024-07-05 14:34:52.048005 stored: 2024.07.06.18.05.10, 2024-07-06 18:05:10.575800 stored: 2024.07.07.18.04.46, 2024-07-07 18:04:46.818785 stored: 2024.07.08.18.05.05, 2024-07-08 18:05:05.519390 stored: 2024.07.09.18.04.52, 2024-07-09 18:04:52.335883 stored: 2024.07.10.18.04.33, 2024-07-10 18:04:33.817106 stored: 2024.07.11.18.04.45, 2024-07-11 18:04:45.433228 stored: 2024.07.12.18.04.36, 2024-07-12 18:04:36.444330 stored: 2024.07.13.18.05.09, 2024-07-13 18:05:09.770661 stored: 2024.07.14.18.05.02, 2024-07-14 18:05:02.584529 stored: 2024.07.15.18.04.56, 2024-07-15 18:04:56.278179 stored: 2024.07.19.10.09.41, 2024-07-19 10:09:41.366450 stored: 2024.07.20.18.04.50, 2024-07-20 18:04:50.652503 stored: 2024.07.21.18.04.51, 2024-07-21 18:04:51.784942 stored: 2024.07.22.18.04.55, 2024-07-22 18:04:55.875979 stored: 2024.07.23.18.04.49, 2024-07-23 18:04:49.428200 stored: 2024.07.24.18.04.45, 2024-07-24 18:04:45.099677 stored: 2024.07.25.18.07.26, 2024-07-25 18:07:26.783134 stored: 2024.07.26.18.05.03, 2024-07-26 18:05:03.806166 stored: 2024.07.27.18.04.54, 2024-07-27 18:04:54.861044 stored: 2024.07.28.18.04.52, 2024-07-28 18:04:52.471391 stored: 2024.07.29.18.04.53, 2024-07-29 18:04:53.239266 stored: 2024.07.30.18.04.51, 2024-07-30 18:04:51.391070 stored: 2024.07.31.18.04.51, 2024-07-31 18:04:51.338127 stored: 2024.08.01.18.04.45, 2024-08-01 18:04:45.633638 stored: 2024.08.02.18.04.51, 2024-08-02 18:04:51.958712 stored: 2024.08.03.18.04.39, 2024-08-03 18:04:39.703527 stored: 2024.08.04.18.04.54, 2024-08-04 18:04:54.507015 stored: 2024.08.05.18.04.53, 2024-08-05 18:04:53.701273 stored: 2024.08.06.18.04.41, 2024-08-06 18:04:41.000453 stored: 2024.08.07.18.04.43, 2024-08-07 18:04:43.898084 stored: 2024.08.08.18.05.00, 2024-08-08 18:05:00.921781 stored: 2024.08.09.18.04.50, 2024-08-09 18:04:50.434863 stored: 2024.08.10.18.04.37, 2024-08-10 18:04:37.739388 stored: 2024.08.11.18.04.58, 2024-08-11 18:04:58.602534 stored: 2024.08.12.18.04.57, 2024-08-12 18:04:57.823980 stored: 2024.08.13.18.04.54, 2024-08-13 18:04:54.349862 stored: 2024.08.14.18.04.40, 2024-08-14 18:04:40.342972 stored: 2024.08.15.18.04.44, 2024-08-15 18:04:44.163647 stored: 2024.08.16.18.04.43, 2024-08-16 18:04:43.569258 stored: 2024.08.17.18.05.08, 2024-08-17 18:05:08.131613 stored: 2024.08.18.18.04.38, 2024-08-18 18:04:38.554105 stored: 2024.08.19.18.05.00, 2024-08-19 18:05:00.394914 stored: 2024.08.20.18.04.44, 2024-08-20 18:04:44.553783 stored: 2024.08.21.18.04.48, 2024-08-21 18:04:48.118647 stored: 2024.08.22.18.04.53, 2024-08-22 18:04:53.058467 stored: 2024.08.23.18.04.56, 2024-08-23 18:04:56.798655 stored: 2024.08.24.18.04.57, 2024-08-24 18:04:57.195971 stored: 2024.08.25.21.10.00, 2024-08-25 21:10:00.275062 stored: 2024.08.26.18.04.51, 2024-08-26 18:04:51.058180 stored: 2024.08.28.12.39.54, 2024-08-28 12:39:54.884515 stored: 2024.08.29.10.46.46, 2024-08-29 10:46:46.470600 stored: 2024.08.30.18.05.31, 2024-08-30 18:05:31.972909 stored: 2024.08.31.18.04.57, 2024-08-31 18:04:57.206862 stored: 2024.09.01.18.04.57, 2024-09-01 18:04:57.677691 stored: 2024.09.02.18.04.47, 2024-09-02 18:04:47.844531 stored: 2024.09.03.18.04.43, 2024-09-03 18:04:43.584258 stored: 2024.09.04.18.04.42, 2024-09-04 18:04:42.609037 stored: 2024.09.05.18.09.19, 2024-09-05 18:09:19.298054 stored: 2024.09.07.18.05.01, 2024-09-07 18:05:01.283922 stored: 2024.09.08.18.04.35, 2024-09-08 18:04:35.577708 stored: 2024.09.09.18.10.21, 2024-09-09 18:10:21.900374 stored: 2024.09.11.07.38.47, 2024-09-11 07:38:47.460570 stored: 2024.09.14.10.37.43, 2024-09-14 10:37:43.010193 stored: 2024.09.15.18.04.42, 2024-09-15 18:04:42.073318 stored: 2024.09.16.18.04.32, 2024-09-16 18:04:32.474103 stored: 2024.09.17.18.04.38, 2024-09-17 18:04:38.095228 stored: 2024.09.18.18.04.39, 2024-09-18 18:04:39.675729 stored: 2024.09.19.18.04.36, 2024-09-19 18:04:36.500060 stored: 2024.09.20.18.04.37, 2024-09-20 18:04:37.141045 stored: 2024.09.21.18.04.39, 2024-09-21 18:04:39.650832 stored: 2024.09.22.18.04.42, 2024-09-22 18:04:42.244693 stored: 2024.09.23.18.04.33, 2024-09-23 18:04:33.377788 stored: 2024.09.24.18.04.44, 2024-09-24 18:04:44.022955 stored: 2024.09.25.18.04.39, 2024-09-25 18:04:39.700000 stored: 2024.09.26.18.04.34, 2024-09-26 18:04:34.998437 stored: 2024.09.27.18.04.27, 2024-09-27 18:04:27.188926 stored: 2024.10.03.22.29.23, 2024-10-03 22:29:23.443216 stored: 2024.10.04.18.04.34, 2024-10-04 18:04:34.049732 stored: 2024.10.05.18.04.32, 2024-10-05 18:04:32.525901 stored: 2024.10.06.18.04.35, 2024-10-06 18:04:35.475734 stored: 2024.10.07.18.04.38, 2024-10-07 18:04:38.149213 stored: 2024.10.08.10.50.32, 2024-10-08 10:50:32.994734 stored: 2024.10.09.18.04.30, 2024-10-09 18:04:30.774064 stored: 2024.10.10.18.04.33, 2024-10-10 18:04:33.451163 stored: 2024.10.11.18.04.35, 2024-10-11 18:04:35.085256 stored: 2024.10.12.18.20.19, 2024-10-12 18:20:19.153130 stored: 2024.10.13.18.05.00, 2024-10-13 18:05:00.613255 stored: 2024.10.14.18.04.39, 2024-10-14 18:04:39.033727 stored: 2024.10.15.18.04.39, 2024-10-15 18:04:39.214151 stored: 2024.10.16.18.04.46, 2024-10-16 18:04:46.209962 stored: 2024.10.17.18.04.37, 2024-10-17 18:04:37.294297 stored: 2024.10.18.18.04.35, 2024-10-18 18:04:35.622873 stored: 2024.10.19.18.04.34, 2024-10-19 18:04:34.301592 stored: 2024.10.20.18.04.26, 2024-10-20 18:04:26.969429 stored: 2024.10.21.18.04.31, 2024-10-21 18:04:31.965066 stored: 2024.10.22.18.04.32, 2024-10-22 18:04:32.832724 stored: 2024.10.23.18.04.30, 2024-10-23 18:04:30.398844 stored: 2024.10.24.18.04.28, 2024-10-24 18:04:28.227793 stored: 2024.10.25.18.04.37, 2024-10-25 18:04:37.006433 stored: 2024.10.26.18.04.26, 2024-10-26 18:04:26.417781 stored: 2024.10.27.18.04.42, 2024-10-27 18:04:42.696080 stored: 2024.10.28.18.04.32, 2024-10-28 18:04:32.056814 stored: 2024.10.29.18.04.38, 2024-10-29 18:04:38.380642 stored: 2024.10.30.18.12.23, 2024-10-30 18:12:23.802985 stored: 2024.10.31.18.05.01, 2024-10-31 18:05:01.997278 stored: 2024.11.01.18.04.36, 2024-11-01 18:04:36.750145 stored: 2024.11.02.18.04.42, 2024-11-02 18:04:42.082012 stored: 2024.11.03.18.04.31, 2024-11-03 18:04:31.694428 stored: 2024.11.04.18.04.43, 2024-11-04 18:04:43.739911 stored: 2024.11.05.18.04.45, 2024-11-05 18:04:45.021461 stored: 2024.11.06.18.04.47, 2024-11-06 18:04:47.582715 stored: 2024.11.08.18.04.44, 2024-11-08 18:04:44.146934 stored: 2024.11.09.18.04.48, 2024-11-09 18:04:48.032952 stored: 2024.11.10.18.04.45, 2024-11-10 18:04:45.580530 stored: 2024.11.11.18.04.42, 2024-11-11 18:04:42.625935 stored: 2024.11.15.09.08.44, 2024-11-15 09:08:44.716209 stored: 2024.11.16.18.04.49, 2024-11-16 18:04:49.882973 stored: 2024.11.17.18.04.47, 2024-11-17 18:04:47.831855 stored: 2024.11.20.15.41.38, 2024-11-20 15:41:38.355726 stored: 2024.11.21.18.04.33, 2024-11-21 18:04:33.568076 stored: 2024.11.22.18.04.57, 2024-11-22 18:04:57.111066 stored: 2024.11.23.18.04.39, 2024-11-23 18:04:39.972993 stored: 2024.11.24.18.04.35, 2024-11-24 18:04:35.533178 stored: 2024.11.25.18.04.42, 2024-11-25 18:04:42.033686 stored: 2024.11.26.18.04.34, 2024-11-26 18:04:34.211537 stored: 2024.11.27.18.04.38, 2024-11-27 18:04:38.016755 stored: 2024.11.28.18.04.38, 2024-11-28 18:04:38.748617 stored: 2024.11.29.18.04.41, 2024-11-29 18:04:41.429320 stored: 2024.11.30.18.04.41, 2024-11-30 18:04:41.161757 stored: 2024.12.01.18.04.40, 2024-12-01 18:04:40.713988 stored: 2024.12.02.18.04.43, 2024-12-02 18:04:43.156007 stored: 2024.12.03.18.04.40, 2024-12-03 18:04:40.248877 stored: 2024.12.05.13.06.52, 2024-12-05 13:06:52.703831 stored: 2024.12.06.18.04.40, 2024-12-06 18:04:40.445194 stored: 2024.12.07.18.05.11, 2024-12-07 18:05:11.891294 stored: 2024.12.08.18.04.48, 2024-12-08 18:04:48.683523 stored: 2024.12.09.18.05.31, 2024-12-09 18:05:31.152967 stored: 2024.12.10.18.04.55, 2024-12-10 18:04:55.916408 stored: 2024.12.13.18.05.05, 2024-12-13 18:05:05.743550 stored: 2024.12.14.18.05.06, 2024-12-14 18:05:06.332887 stored: 2024.12.15.18.05.11, 2024-12-15 18:05:11.733292 stored: 2024.12.17.10.15.19, 2024-12-17 10:15:19.866993 stored: 2024.12.18.07.17.26, 2024-12-18 07:17:26.757877 stored: 2024.12.19.18.05.17, 2024-12-19 18:05:17.510403 stored: 2024.12.20.15.52.40, 2024-12-20 15:52:40.202576 stored: 2024.12.21.18.05.16, 2024-12-21 18:05:16.214989 stored: 2024.12.22.18.05.12, 2024-12-22 18:05:12.764758 stored: 2024.12.23.18.05.16, 2024-12-23 18:05:16.749082 stored: 2024.12.24.18.05.33, 2024-12-24 18:05:33.131144 stored: 2024.12.25.18.05.25, 2024-12-25 18:05:25.134418 stored: 2024.12.26.18.05.18, 2024-12-26 18:05:18.974986 stored: 2024.12.27.18.05.20, 2024-12-27 18:05:20.779605 stored: 2024.12.28.18.05.15, 2024-12-28 18:05:15.508385 stored: 2024.12.29.18.05.19, 2024-12-29 18:05:19.969078 stored: 2024.12.30.18.05.19, 2024-12-30 18:05:19.652010 stored: 2024.12.31.22.04.11, 2024-12-31 22:04:11.207358 stored: 2025.01.01.18.05.15, 2025-01-01 18:05:15.010169 stored: 2025.01.02.18.05.16, 2025-01-02 18:05:16.447631 stored: 2025.01.03.18.05.11, 2025-01-03 18:05:11.559658 stored: 2025.01.04.21.03.05, 2025-01-04 21:03:05.432577 stored: 2025.01.05.18.05.01, 2025-01-05 18:05:01.155667 stored: 2025.01.06.18.04.55, 2025-01-06 18:04:55.058358 stored: 2025.01.07.18.05.00, 2025-01-07 18:05:00.449358 stored: 2025.01.08.18.04.50, 2025-01-08 18:04:50.485677 stored: 2025.01.09.18.04.50, 2025-01-09 18:04:50.730317 stored: 2025.01.10.18.04.51, 2025-01-10 18:04:51.866253 stored: 2025.01.11.18.04.57, 2025-01-11 18:04:57.802015 stored: 2025.01.12.18.04.48, 2025-01-12 18:04:48.512058 stored: 2025.01.13.18.05.16, 2025-01-13 18:05:16.726006 stored: 2025.01.14.18.04.53, 2025-01-14 18:04:53.636066 stored: 2025.01.15.18.05.16, 2025-01-15 18:05:16.063094 stored: 2025.01.16.18.04.58, 2025-01-16 18:04:58.536571 stored: 2025.01.17.18.04.57, 2025-01-17 18:04:57.654147 stored: 2025.01.18.18.05.31, 2025-01-18 18:05:31.834591 stored: 2025.01.19.18.04.50, 2025-01-19 18:04:50.396954 stored: 2025.01.20.18.04.52, 2025-01-20 18:04:52.862843 stored: 2025.01.21.18.04.51, 2025-01-21 18:04:51.119185 stored: 2025.01.22.18.04.50, 2025-01-22 18:04:50.662399 stored: 2025.01.23.18.04.54, 2025-01-23 18:04:54.573766 stored: 2025.01.24.18.04.51, 2025-01-24 18:04:51.816461 stored: 2025.01.25.18.04.51, 2025-01-25 18:04:51.607056 stored: 2025.01.26.18.04.54, 2025-01-26 18:04:54.548405 stored: 2025.01.27.18.04.52, 2025-01-27 18:04:52.499314 stored: 2025.01.28.18.04.55, 2025-01-28 18:04:55.588517 stored: 2025.01.29.18.05.15, 2025-01-29 18:05:15.608010 stored: 2025.01.30.18.04.58, 2025-01-30 18:04:58.892230 stored: 2025.01.31.18.04.58, 2025-01-31 18:04:58.660504 stored: 2025.02.01.18.04.54, 2025-02-01 18:04:54.467450 stored: 2025.02.02.18.05.04, 2025-02-02 18:05:04.409782 stored: 2025.02.03.18.04.56, 2025-02-03 18:04:56.274618 stored: 2025.02.04.18.05.11, 2025-02-04 18:05:11.760057 stored: 2025.02.05.18.04.55, 2025-02-05 18:04:55.550307 stored: 2025.02.06.18.04.59, 2025-02-06 18:04:59.700456 stored: 2025.02.07.18.05.03, 2025-02-07 18:05:03.663828 stored: 2025.02.08.18.05.01, 2025-02-08 18:05:01.053948 stored: 2025.02.09.18.05.04, 2025-02-09 18:05:04.796583 stored: 2025.02.10.18.05.18, 2025-02-10 18:05:18.275013 stored: 2025.02.11.18.04.54, 2025-02-11 18:04:54.602368 stored: 2025.02.12.18.05.00, 2025-02-12 18:05:00.943200 stored: 2025.02.13.18.05.07, 2025-02-13 18:05:07.853302 stored: 2025.02.14.18.05.15, 2025-02-14 18:05:15.315494 stored: 2025.02.15.18.04.54, 2025-02-15 18:04:54.133851 stored: 2025.02.16.18.05.30, 2025-02-16 18:05:30.947321 stored: 2025.02.17.18.05.08, 2025-02-17 18:05:08.565958 stored: 2025.02.18.18.05.08, 2025-02-18 18:05:08.161211 stored: 2025.02.19.18.05.06, 2025-02-19 18:05:06.756290 stored: 2025.02.20.18.05.01, 2025-02-20 18:05:01.388462 stored: 2025.02.21.18.04.56, 2025-02-21 18:04:56.391876 stored: 2025.02.22.18.05.01, 2025-02-22 18:05:01.653275 stored: 2025.02.23.18.04.59, 2025-02-23 18:04:59.069330 stored: 2025.02.24.18.05.09, 2025-02-24 18:05:09.197346 stored: 2025.02.25.18.05.25, 2025-02-25 18:05:25.080336 stored: 2025.02.26.18.04.59, 2025-02-26 18:04:59.080203 stored: 2025.02.27.18.05.02, 2025-02-27 18:05:02.007575 stored: 2025.03.01.19.39.06, 2025-03-01 19:39:06.132266 stored: 2025.03.02.18.05.12, 2025-03-02 18:05:12.914635 stored: 2025.03.08.09.51.30, 2025-03-08 09:51:30.025454 stored: 2025.03.09.11.51.56, 2025-03-09 11:51:56.113443 stored: 2025.03.10.18.05.00, 2025-03-10 18:05:00.383506 stored: 2025.03.11.18.04.37, 2025-03-11 18:04:37.889374 stored: 2025.03.12.18.05.25, 2025-03-12 18:05:25.364996 stored: 2025.03.13.18.04.56, 2025-03-13 18:04:56.892789 stored: 2025.03.14.18.04.59, 2025-03-14 18:04:59.403480 stored: 2025.03.15.18.05.05, 2025-03-15 18:05:05.491275 stored: 2025.03.16.18.04.58, 2025-03-16 18:04:58.080159 stored: 2025.03.17.18.05.09, 2025-03-17 18:05:09.888343 stored: 2025.03.18.18.04.59, 2025-03-18 18:04:59.925862 stored: 2025.03.19.18.04.59, 2025-03-19 18:04:59.924528 stored: 2025.03.20.18.05.06, 2025-03-20 18:05:06.193253 stored: 2025.03.21.18.05.11, 2025-03-21 18:05:11.188567 stored: 2025.03.22.18.05.05, 2025-03-22 18:05:05.187833 stored: 2025.03.23.18.05.02, 2025-03-23 18:05:02.247660 stored: 2025.03.24.18.05.19, 2025-03-24 18:05:19.424004 stored: 2025.03.25.18.05.06, 2025-03-25 18:05:06.601886 stored: 2025.03.26.18.05.14, 2025-03-26 18:05:14.858557 stored: 2025.03.27.18.05.01, 2025-03-27 18:05:01.528354 stored: 2025.03.28.18.05.05, 2025-03-28 18:05:05.572502 stored: 2025.03.29.18.05.03, 2025-03-29 18:05:03.814697 stored: 2025.03.30.18.05.05, 2025-03-30 18:05:05.618659 stored: 2025.03.31.18.05.08, 2025-03-31 18:05:08.702674 stored: 2025.04.01.18.05.33, 2025-04-01 18:05:33.483705 stored: 2025.04.02.18.05.10, 2025-04-02 18:05:10.716841 stored: 2025.04.03.18.05.11, 2025-04-03 18:05:11.565423 stored: 2025.04.04.18.05.11, 2025-04-04 18:05:11.447826 stored: 2025.04.05.18.05.10, 2025-04-05 18:05:10.742513 stored: 2025.04.06.18.05.09, 2025-04-06 18:05:09.032350 stored: 2025.04.07.18.05.39, 2025-04-07 18:05:39.290296 stored: 2025.04.08.18.04.48, 2025-04-08 18:04:48.401395 stored: 2025.04.09.18.05.06, 2025-04-09 18:05:06.587860 stored: 2025.04.12.15.30.13, 2025-04-12 15:30:13.001596 stored: 2025.04.13.06.22.27, 2025-04-13 06:22:27.914604 stored: 2025.04.13.21.13.14, 2025-04-13 21:13:14.788575 stored: 2025.04.14.18.05.20, 2025-04-14 18:05:20.794814 stored: 2025.04.15.11.55.47, 2025-04-15 11:55:47.877794 stored: 2025.04.16.18.05.19, 2025-04-16 18:05:19.706948 stored: 2025.04.17.18.05.15, 2025-04-17 18:05:15.058080 stored: 2025.04.18.18.05.13, 2025-04-18 18:05:13.648572 stored: 2025.04.19.18.05.12, 2025-04-19 18:05:12.690150 stored: 2025.04.20.18.05.09, 2025-04-20 18:05:09.180526 stored: 2025.04.21.18.05.43, 2025-04-21 18:05:43.753791 stored: 2025.04.22.18.05.18, 2025-04-22 18:05:18.557319 stored: 2025.04.23.18.05.16, 2025-04-23 18:05:16.528526 stored: 2025.04.24.18.05.45, 2025-04-24 18:05:45.863422 stored: 2025.04.25.18.05.13, 2025-04-25 18:05:13.710152 stored: 2025.04.26.18.05.15, 2025-04-26 18:05:15.658793 stored: 2025.04.27.18.05.07, 2025-04-27 18:05:07.428123 stored: 2025.04.28.18.05.12, 2025-04-28 18:05:12.797233 stored: 2025.05.01.10.59.59, 2025-05-01 10:59:59.037468 stored: 2025.05.02.18.05.28, 2025-05-02 18:05:28.887848 stored: 2025.05.03.18.05.22, 2025-05-03 18:05:22.552851 stored: 2025.05.04.18.05.05, 2025-05-04 18:05:05.598143 stored: 2025.05.13.07.27.26, 2025-05-13 07:27:26.381358 stored: 2025.05.15.18.52.13, 2025-05-15 18:52:13.776529 stored: 2025.05.17.08.06.12, 2025-05-17 08:06:12.674466 stored: 2025.05.19.09.04.09, 2025-05-19 09:04:09.728986 stored: 2025.05.22.13.57.08, 2025-05-22 13:57:08.808466 stored: 2025.05.24.10.00.52, 2025-05-24 10:00:52.316358 stored: 2025.05.25.12.14.31, 2025-05-25 12:14:31.028020 stored: 2025.05.30.03.12.18, 2025-05-30 03:12:18.106650 stored: 2025.05.30.20.23.35, 2025-05-30 20:23:35.405015 stored: 2025.05.31.18.05.20, 2025-05-31 18:05:20.723733 stored: 2025.06.01.18.05.14, 2025-06-01 18:05:14.574276 stored: 2025.06.02.18.05.15, 2025-06-02 18:05:15.900602 stored: 2025.06.03.18.05.18, 2025-06-03 18:05:18.223155 stored: 2025.06.05.18.05.16, 2025-06-05 18:05:16.546272 stored: 2025.06.06.18.05.25, 2025-06-06 18:05:25.771389 stored: 2025.06.07.18.05.10, 2025-06-07 18:05:10.788167 stored: 2025.06.08.18.05.21, 2025-06-08 18:05:21.222466 stored: 2025.06.09.18.05.14, 2025-06-09 18:05:14.774679 stored: 2025.06.10.18.05.19, 2025-06-10 18:05:19.541930 stored: 2025.06.11.18.05.26, 2025-06-11 18:05:26.639643 stored: 2025.06.12.18.05.15, 2025-06-12 18:05:15.124517 stored: 2025.06.13.18.04.59, 2025-06-13 18:04:59.062910 stored: 2025.06.20.06.49.46, 2025-06-20 06:49:46.123988 stored: 2025.06.21.18.05.14, 2025-06-21 18:05:14.693572 stored: 2025.06.22.18.05.28, 2025-06-22 18:05:28.829408 stored: 2025.06.23.18.04.59, 2025-06-23 18:04:59.665244 stored: 2025.06.24.18.05.04, 2025-06-24 18:05:04.974657 stored: 2025.06.25.18.05.10, 2025-06-25 18:05:10.243421 stored: 2025.06.26.18.04.52, 2025-06-26 18:04:52.343803 stored: 2025.06.27.18.05.05, 2025-06-27 18:05:05.716181 stored: 2025.06.28.18.04.50, 2025-06-28 18:04:50.099950 stored: 2025.06.29.18.05.03, 2025-06-29 18:05:03.562419 stored: 2025.06.30.18.04.57, 2025-06-30 18:04:57.777357 stored: 2025.07.01.18.04.59, 2025-07-01 18:04:59.335039 stored: 2025.07.02.18.04.57, 2025-07-02 18:04:57.643167 stored: 2025.07.04.18.03.59, 2025-07-04 18:03:59.992718 stored: 2025.07.05.18.04.46, 2025-07-05 18:04:46.414665 stored: 2025.07.06.18.05.17, 2025-07-06 18:05:17.539736 stored: 2025.07.07.18.04.30, 2025-07-07 18:04:30.728679 stored: 2025.07.08.18.04.24, 2025-07-08 18:04:24.781100 stored: 2025.07.09.18.04.39, 2025-07-09 18:04:39.547654 stored: 2025.07.10.18.04.24, 2025-07-10 18:04:24.531816 stored: 2025.07.11.18.04.28, 2025-07-11 18:04:28.322448 stored: 2025.07.12.18.04.24, 2025-07-12 18:04:24.206422 stored: 2025.07.13.18.04.32, 2025-07-13 18:04:32.217783 stored: 2025.07.14.18.04.27, 2025-07-14 18:04:27.866780 stored: 2025.07.15.18.04.25, 2025-07-15 18:04:25.803016 stored: 2025.07.16.18.04.22, 2025-07-16 18:04:22.019676 stored: 2025.07.17.18.04.07, 2025-07-17 18:04:07.906594 stored: 2025.07.18.18.04.10, 2025-07-18 18:04:10.242916 stored: 2025.07.19.18.06.06, 2025-07-19 18:06:06.433114 stored: 2025.07.20.18.04.12, 2025-07-20 18:04:12.311952 stored: 2025.07.21.18.04.18, 2025-07-21 18:04:18.581778 stored: 2025.07.22.18.04.11, 2025-07-22 18:04:11.661291 stored: 2025.07.23.18.04.27, 2025-07-23 18:04:27.194923 stored: 2025.07.24.18.04.21, 2025-07-24 18:04:21.144539 stored: 2025.07.25.18.04.21, 2025-07-25 18:04:21.733835 stored: 2025.07.26.18.04.08, 2025-07-26 18:04:08.801290 stored: 2025.07.27.18.04.10, 2025-07-27 18:04:10.753590 stored: 2025.07.28.18.04.25, 2025-07-28 18:04:25.256431 stored: 2025.07.29.18.04.08, 2025-07-29 18:04:08.654755 stored: 2025.07.30.18.04.33, 2025-07-30 18:04:33.252555 stored: 2025.07.31.18.04.15, 2025-07-31 18:04:15.163162 stored: 2025.08.01.18.04.05, 2025-08-01 18:04:05.884163 stored: 2025.08.02.18.04.17, 2025-08-02 18:04:17.527059 stored: 2025.08.03.18.04.04, 2025-08-03 18:04:04.783803 stored: 2025.08.04.18.04.39, 2025-08-04 18:04:39.899384 stored: 2025.08.05.18.04.16, 2025-08-05 18:04:16.364334 stored: 2025.08.06.18.04.40, 2025-08-06 18:04:40.562933 stored: 2025.08.07.18.04.39, 2025-08-07 18:04:39.001563 stored: 2025.08.08.18.04.12, 2025-08-08 18:04:12.207177 stored: 2025.08.09.18.04.26, 2025-08-09 18:04:26.911823 stored: 2025.08.10.18.04.38, 2025-08-10 18:04:38.772973 stored: 2025.08.11.18.04.07, 2025-08-11 18:04:07.395411 stored: 2025.08.13.20.38.43, 2025-08-13 20:38:43.129452 stored: 2025.08.14.18.04.21, 2025-08-14 18:04:21.341116 stored: 2025.08.15.18.04.14, 2025-08-15 18:04:14.514850 stored: 2025.08.16.18.04.23, 2025-08-16 18:04:23.579430 stored: 2025.08.17.18.04.10, 2025-08-17 18:04:10.420586 stored: 2025.08.21.06.51.27, 2025-08-21 06:51:27.423323 stored: 2025.08.22.18.04.07, 2025-08-22 18:04:07.837093 stored: 2025.08.23.18.04.10, 2025-08-23 18:04:10.036647 stored: 2025.08.24.18.04.11, 2025-08-24 18:04:11.271058 stored: 2025.08.25.18.04.16, 2025-08-25 18:04:16.917624 stored: 2025.08.26.09.41.17, 2025-08-26 09:41:17.603539 stored: 2025.08.27.18.04.11, 2025-08-27 18:04:11.486036 stored: 2025.08.29.09.36.14, 2025-08-29 09:36:14.068420 stored: 2025.08.30.18.04.27, 2025-08-30 18:04:27.691733 stored: 2025.08.31.18.04.13, 2025-08-31 18:04:13.705633 stored: 2025.09.01.18.04.24, 2025-09-01 18:04:24.955933 stored: 2025.09.02.18.04.31, 2025-09-02 18:04:31.165096 stored: 2025.09.03.18.04.13, 2025-09-03 18:04:13.174787 stored: 2025.09.04.18.04.14, 2025-09-04 18:04:14.810373 stored: 2025.09.05.18.04.50, 2025-09-05 18:04:50.326478 stored: 2025.09.06.18.04.33, 2025-09-06 18:04:33.396924 stored: 2025.09.07.18.04.39, 2025-09-07 18:04:39.081850 stored: 2025.09.08.18.04.23, 2025-09-08 18:04:23.721487 stored: 2025.09.09.18.04.22, 2025-09-09 18:04:22.720843 stored: 2025.09.10.18.04.41, 2025-09-10 18:04:41.573780 stored: 2025.09.13.11.02.31, 2025-09-13 11:02:31.883617 stored: 2025.09.14.02.07.00, 2025-09-14 02:07:00.682208 stored: 2025.09.14.18.48.00, 2025-09-14 18:48:00.982819 stored: 2025.09.15.18.04.28, 2025-09-15 18:04:28.690337 stored: 2025.09.16.18.04.08, 2025-09-16 18:04:08.412948 stored: 2025.09.17.18.04.26, 2025-09-17 18:04:26.478048 stored: 2025.09.18.18.04.27, 2025-09-18 18:04:27.657081 stored: 2025.09.19.18.04.23, 2025-09-19 18:04:23.609976 stored: 2025.09.20.18.04.23, 2025-09-20 18:04:23.943885 stored: 2025.09.21.18.04.40, 2025-09-21 18:04:40.266318 stored: 2025.09.22.18.04.07, 2025-09-22 18:04:07.339250 stored: 2025.09.23.18.04.12, 2025-09-23 18:04:12.234520 stored: 2025.09.25.17.49.04, 2025-09-25 17:49:04.950210 stored: 2025.09.26.18.04.12, 2025-09-26 18:04:12.512693 stored: 2025.09.27.18.04.14, 2025-09-27 18:04:14.793210 stored: 2025.09.28.18.04.12, 2025-09-28 18:04:12.621541 stored: 2025.10.01.10.05.07, 2025-10-01 10:05:07.909775 stored: 2025.10.06.09.42.55, 2025-10-06 09:42:55.867372 stored: 2025.10.10.20.23.06, 2025-10-10 20:23:06.410855 stored: 2025.10.11.18.03.48, 2025-10-11 18:03:48.140438 stored: 2025.10.12.18.03.42, 2025-10-12 18:03:42.537446 stored: 2025.10.13.18.03.41, 2025-10-13 18:03:41.899455 stored: 2025.10.14.18.03.49, 2025-10-14 18:03:49.001122 stored: 2025.10.15.18.03.41, 2025-10-15 18:03:41.611697 stored: 2025.10.16.18.03.41, 2025-10-16 18:03:41.622506 stored: 2025.10.17.18.03.41, 2025-10-17 18:03:41.543441 stored: 2025.10.18.18.03.41, 2025-10-18 18:03:41.328412 stored: 2025.10.19.18.03.41, 2025-10-19 18:03:41.622708 stored: 2025.10.21.18.03.58, 2025-10-21 18:03:58.811816 stored: 2025.10.22.18.03.51, 2025-10-22 18:03:51.617145 stored: 2025.10.23.18.03.52, 2025-10-23 18:03:52.041577 stored: 2025.10.24.18.03.44, 2025-10-24 18:03:44.358544 stored: 2025.10.25.18.03.39, 2025-10-25 18:03:39.877301 stored: 2025.10.26.18.03.45, 2025-10-26 18:03:45.353391 stored: 2025.10.27.18.03.47, 2025-10-27 18:03:47.463516 stored: 2025.10.28.18.03.49, 2025-10-28 18:03:49.023095 stored: 2025.10.29.18.03.37, 2025-10-29 18:03:37.087383 stored: 2025.10.30.18.03.44, 2025-10-30 18:03:44.382565 stored: 2025.10.31.18.03.40, 2025-10-31 18:03:40.823333 stored: 2025.11.01.18.03.38, 2025-11-01 18:03:38.979234 stored: 2025.11.02.18.03.39, 2025-11-02 18:03:39.301452 stored: 2025.11.03.18.03.43, 2025-11-03 18:03:43.137902 stored: 2025.11.04.18.03.39, 2025-11-04 18:03:39.718294 stored: 2025.11.05.18.03.40, 2025-11-05 18:03:40.234750 stored: 2025.11.09.09.37.30, 2025-11-09 09:37:30.202490 stored: 2025.11.10.00.36.14, 2025-11-10 00:36:14.183435 stored: 2025.11.10.18.03.37, 2025-11-10 18:03:37.863878 stored: 2025.11.11.18.03.44, 2025-11-11 18:03:44.875943 stored: 2025.11.12.18.03.43, 2025-11-12 18:03:43.366523 stored: 2025.11.13.18.03.48, 2025-11-13 18:03:48.067049 stored: 2025.11.14.18.03.40, 2025-11-14 18:03:40.540561 stored: 2025.11.15.18.03.39, 2025-11-15 18:03:39.619662 stored: 2025.11.16.18.03.39, 2025-11-16 18:03:39.318891 stored: 2025.11.17.18.03.43, 2025-11-17 18:03:43.152640 stored: 2025.11.25.07.39.29, 2025-11-25 07:39:29.524636 stored: 2025.11.26.21.49.19, 2025-11-26 21:49:19.997368 stored: 2025.11.27.18.03.37, 2025-11-27 18:03:37.327034 stored: 2025.11.28.18.03.49, 2025-11-28 18:03:49.662576 stored: 2025.11.29.18.03.50, 2025-11-29 18:03:50.054112 stored: 2025.11.30.18.03.38, 2025-11-30 18:03:38.200878 stored: 2025.12.01.18.03.49, 2025-12-01 18:03:49.516847 stored: 2025.12.02.18.03.40, 2025-12-02 18:03:40.088181 stored: 2025.12.03.18.03.47, 2025-12-03 18:03:47.190622 stored: 2025.12.04.18.03.43, 2025-12-04 18:03:43.423191 stored: 2025.12.05.18.03.41, 2025-12-05 18:03:41.677603 stored: 2025.12.06.18.03.40, 2025-12-06 18:03:40.242226 stored: 2025.12.07.18.03.49, 2025-12-07 18:03:49.924875 stored: 2025.12.08.18.03.58, 2025-12-08 18:03:58.718331 stored: 2025.12.09.18.03.53, 2025-12-09 18:03:53.079758 stored: 2025.12.10.18.03.43, 2025-12-10 18:03:43.071325 stored: 2025.12.11.18.03.40, 2025-12-11 18:03:40.076302 stored: 2025.12.13.18.03.50, 2025-12-13 18:03:50.249609 stored: 2025.12.14.18.03.41, 2025-12-14 18:03:41.461725 stored: 2025.12.15.18.03.42, 2025-12-15 18:03:42.109360 stored: 2025.12.16.18.03.40, 2025-12-16 18:03:40.888852 stored: 2025.12.17.18.03.44, 2025-12-17 18:03:44.923324 stored: 2025.12.18.18.04.11, 2025-12-18 18:04:11.204834 stored: 2025.12.19.18.03.42, 2025-12-19 18:03:42.451432 stored: 2025.12.20.18.03.40, 2025-12-20 18:03:40.061236 stored: 2025.12.21.18.03.40, 2025-12-21 18:03:40.119478 stored: 2025.12.22.18.03.44, 2025-12-22 18:03:44.608092 stored: 2025.12.23.18.43.14, 2025-12-23 18:43:14.617469 stored: 2026.01.08.14.48.45, 2026-01-08 14:48:45.176211 stored: 2026.01.09.18.03.41, 2026-01-09 18:03:41.467308 stored: 2026.01.10.18.03.49, 2026-01-10 18:03:49.692370 stored: 2026.01.11.18.03.40, 2026-01-11 18:03:40.015829 stored: 2026.01.12.18.03.49, 2026-01-12 18:03:49.257700 stored: 2026.01.13.18.03.43, 2026-01-13 18:03:43.271848 stored: 2026.01.14.18.03.41, 2026-01-14 18:03:41.033384 stored: 2026.01.15.18.03.44, 2026-01-15 18:03:44.185009 stored: 2026.01.16.18.03.42, 2026-01-16 18:03:42.528085 stored: 2026.01.17.18.03.43, 2026-01-17 18:03:43.486636 stored: 2026.01.18.18.03.49, 2026-01-18 18:03:49.778715 stored: 2026.01.19.18.03.41, 2026-01-19 18:03:41.249443 stored: 2026.01.20.18.03.43, 2026-01-20 18:03:43.034755 stored: 2026.01.21.18.03.42, 2026-01-21 18:03:42.341931 stored: 2026.01.22.18.03.42, 2026-01-22 18:03:42.843627 stored: 2026.01.29.14.59.00, 2026-01-29 14:59:00.151502 stored: 2026.01.30.18.03.54, 2026-01-30 18:03:54.381985 stored: 2026.01.31.18.03.52, 2026-01-31 18:03:52.406798 stored: 2026.02.01.18.03.46, 2026-02-01 18:03:46.096724 stored: 2026.02.21.22.48.09, 2026-02-21 22:48:09.005740 stored: 2026.02.24.09.54.32, 2026-02-24 09:54:32.193909 stored: 2026.02.26.08.07.35, 2026-02-26 08:07:35.569555 stored: 2026.02.27.02.00.19, 2026-02-27 02:00:19.774795 stored: 2026.02.27.20.06.40, 2026-02-27 20:06:40.089411 stored: 2026.02.28.18.20.05, 2026-02-28 18:20:05.298147 stored: 2026.03.03.05.19.20, 2026-03-03 05:19:20.090368 stored: 2026.03.04.18.36.49, 2026-03-04 18:36:49.454997 stored: 2026.03.06.07.36.28, 2026-03-06 07:36:28.283178 stored: 2026.03.07.18.03.57, 2026-03-07 18:03:57.019324 stored: 2026.03.08.18.04.08, 2026-03-08 18:04:08.638942 stored: 2026.03.09.18.04.09, 2026-03-09 18:04:09.122727 stored: 2026.03.10.18.04.09, 2026-03-10 18:04:09.967404 stored: 2026.03.11.19.18.45, 2026-03-11 19:18:45.021311 stored: 2026.03.12.18.04.04, 2026-03-12 18:04:04.427231 stored: 2026.03.13.18.03.59, 2026-03-13 18:03:59.764446 stored: 2026.03.14.18.04.02, 2026-03-14 18:04:02.487273 stored: 2026.03.16.04.45.47, 2026-03-16 04:45:47.972521 stored: 2026.03.17.18.04.03, 2026-03-17 18:04:03.062620 stored: 2026.04.03.08.19.33, 2026-04-03 08:19:33.968981 stored: 2026.04.04.18.04.03, 2026-04-04 18:04:03.694035 stored: 2026.04.05.23.08.44, 2026-04-05 23:08:44.395181 stored: 2026.04.07.03.30.46, 2026-04-07 03:30:46.678851 stored: 2026.04.08.08.51.09, 2026-04-08 08:51:09.792883 stored: 2026.04.09.13.47.19, 2026-04-09 13:47:19.287730 stored: 2026.04.10.18.34.50, 2026-04-10 18:34:50.991969 stored: 2026.04.11.23.58.22, 2026-04-11 23:58:22.336457 stored: 2026.04.13.05.40.34, 2026-04-13 05:40:34.788157 stored: 2026.04.16.10.08.30, 2026-04-16 10:08:30.642709 stored: 2026.04.18.18.04.15, 2026-04-18 18:04:15.996036 stored: 2026.04.19.23.32.35, 2026-04-19 23:32:35.143064 stored: 2026.04.21.06.57.47, 2026-04-21 06:57:47.190798 stored: 2026.04.22.12.02.19, 2026-04-22 12:02:19.822557 stored: 2026.04.23.19.37.25, 2026-04-23 19:37:25.641238 stored: 2026.04.25.01.30.34, 2026-04-25 01:30:34.833440 stored: 2026.04.26.08.15.09, 2026-04-26 08:15:09.883270 stored: 2026.04.27.14.04.22, 2026-04-27 14:04:22.500921 stored: 2026.04.28.19.00.55, 2026-04-28 19:00:55.207981 stored: 2026.04.30.00.15.31, 2026-04-30 00:15:31.059764 stored: 2026.05.01.18.04.10, 2026-05-01 18:04:10.245579 stored: 2026.05.04.12.43.13, 2026-05-04 12:43:13.381268 stored: 2026.05.05.21.34.55, 2026-05-05 21:34:55.685304 stored: 2026.05.07.07.47.18, 2026-05-07 07:47:18.021034 stored: 2026.05.08.16.21.29, 2026-05-08 16:21:29.321494 stored: 2026.05.10.01.30.41, 2026-05-10 01:30:41.662038 stored: 2026.05.11.10.20.55, 2026-05-11 10:20:55.840268 stored: 2026.05.12.19.03.21, 2026-05-12 19:03:21.597807 stored: 2026.05.14.04.42.39, 2026-05-14 04:42:39.894474 stored: 2026.05.15.14.49.32, 2026-05-15 14:49:32.469222 + python -uO /l/util.nightly/src/python/runAnalyzerPerf.py ***USING BIG LINE FILE*** Using java from: /usr/lib/jvm/java-25-openjdk/bin/ runAnalyzerPerf.py: 2026-05-16 RUN: git clean -xfd Removing analysis/common/build/ Removing analysis/icu/build/ Removing analysis/kuromoji/build/ Removing analysis/morfologik/build/ Removing analysis/nori/build/ Removing analysis/opennlp/build/ Removing analysis/phonetic/build/ Removing analysis/smartcn/build/ Removing analysis/stempel/build/ Removing backward-codecs/build/ Removing benchmark-jmh/build/ Removing benchmark/build/ Removing classification/build/ Removing codecs/build/ Removing compile.log Removing core.tests/build/ Removing core/build/ Removing demo/build/ Removing expressions/build/ Removing facet/build/ Removing grouping/build/ Removing highlighter/build/ Removing join/build/ Removing luke/build/ Removing memory/build/ Removing misc/build/ Removing monitor/build/ Removing queries/build/ Removing queryparser/build/ Removing replicator/build/ Removing sandbox/build/ Removing spatial-extras/build/ Removing spatial-test-fixtures/build/ Removing spatial3d/build/ Removing suggest/build/ Removing test-framework/build/ RUN: git pull origin main From https://gitbox.apache.org/repos/asf/lucene * branch main -> FETCH_HEAD Already up to date. Compile... RUN: ../gradlew clean compileJava > compile.log 2>&1 RUN: javac -d /l/util.nightly/build -cp core/build/classes/java/main:analysis/common/build/classes/java/main:analysis/kuromoji/build/classes/java/main /l/util.nightly/src/extra/perf/TestAnalyzerPerf.java Note: /l/util.nightly/src/extra/perf/TestAnalyzerPerf.java uses or overrides a deprecated API. Note: Recompile with -Xlint:deprecation for details. now run en perf RUN: java -XX:+UseParallelGC -cp /l/util.nightly/build:core/build/classes/java/main:analysis/common/build/classes/java/main:analysis/kuromoji/build/classes/java/main perf.TestAnalyzerPerf /l/data/enwiki-20130102-lines.txt >> /l/logs.nightly/analyzers/2026-05-16.log.tmp 2>&1 done en now run ja RUN: java -XX:+UseParallelGC -cp /l/util.nightly/build:core/build/classes/java/main:analysis/common/build/classes/java/main:analysis/kuromoji/build/classes/java/main:analysis/kuromoji/src/resources perf.TestAnalyzerPerf /l/data/jawiki-20200620-lines.txt ja >> /l/logs.nightly/analyzers_ja/2026-05-16.log.tmp 2>&1 done ja + python -uO /l/util.nightly/src/python/sumAnalyzerPerf.py ***USING BIG LINE FILE*** Using java from: /usr/lib/jvm/java-25-openjdk/bin/ run sumAnalyzerPerf.py done sumAnalyzerPerf.py + echo + echo 'Run geo benches' Run geo benches + rm -rf /b/osm0.geo3d.small /b/osm0.points.small /b/osm0.points.withdvs.small /b/osm0.shape.small + cd /l/trunk.nightly/lucene + python3 /l/util.nightly/src/python/runGeoBenches.py -nightly -reindex RUN: javac -cp test-framework/build/classes/java/main:sandbox/build/classes/java/main:codecs/build/classes/java/main:core/build/classes/java/main:sandbox/build/classes/java/main:spatial3d/build/classes/java/main /l/util.nightly/src/main/perf/IndexAndSearchOpenStreetMaps.java /l/util.nightly/src/main/perf/RandomQuery.java git head revision de92f115a3125624bf7c7141b8e700efa9a89427 NOTE: logging all output to /l/logs.nightly/geo/2026.05.16.23.34.08.log.txt; saving results to /l/logs.nightly/geo/2026.05.16.23.34.08.pk RUN: java -XX:+UseParallelGC -Xmx10g -cp /l/util.nightly/src/main:test-framework/build/classes/java/main:sandbox/build/classes/java/main:codecs/build/classes/java/main:codecs/build/resources/main:core/build/classes/java/main:core/build/classes/java/main21:core/build/resources/main:sandbox/build/classes/java/main:spatial3d/build/classes/java/main perf.IndexAndSearchOpenStreetMaps -points -polyRussia -reindex 1.5s: points, polyRussia: 1000000... 3.2s: points, polyRussia: 2000000... 4.6s: points, polyRussia: 3000000... 5.9s: points, polyRussia: 4000000... 7.3s: points, polyRussia: 5000000... 8.6s: points, polyRussia: 6000000... 10.0s: points, polyRussia: 7000000... 11.3s: points, polyRussia: 8000000... 12.7s: points, polyRussia: 9000000... 14.0s: points, polyRussia: 10000000... 21.4s: points, polyRussia: 11000000... 22.3s: points, polyRussia: 12000000... 23.6s: points, polyRussia: 13000000... 24.9s: points, polyRussia: 14000000... 26.3s: points, polyRussia: 15000000... 27.6s: points, polyRussia: 16000000... 29.0s: points, polyRussia: 17000000... 30.3s: points, polyRussia: 18000000... 31.7s: points, polyRussia: 19000000... 33.0s: points, polyRussia: 20000000... 34.3s: points, polyRussia: 21000000... 41.5s: points, polyRussia: 22000000... 42.4s: points, polyRussia: 23000000... 43.7s: points, polyRussia: 24000000... 45.1s: points, polyRussia: 25000000... 46.4s: points, polyRussia: 26000000... 47.7s: points, polyRussia: 27000000... 49.0s: points, polyRussia: 28000000... 50.4s: points, polyRussia: 29000000... 51.7s: points, polyRussia: 30000000... 53.0s: points, polyRussia: 31000000... 54.3s: points, polyRussia: 32000000... 61.5s: points, polyRussia: 33000000... 62.8s: points, polyRussia: 34000000... 63.7s: points, polyRussia: 35000000... 65.0s: points, polyRussia: 36000000... 66.3s: points, polyRussia: 37000000... 67.6s: points, polyRussia: 38000000... 68.9s: points, polyRussia: 39000000... 70.2s: points, polyRussia: 40000000... 71.5s: points, polyRussia: 41000000... 72.8s: points, polyRussia: 42000000... 74.1s: points, polyRussia: 43000000... 81.3s: points, polyRussia: 44000000... 82.7s: points, polyRussia: 45000000... 83.6s: points, polyRussia: 46000000... 84.9s: points, polyRussia: 47000000... 86.2s: points, polyRussia: 48000000... 87.5s: points, polyRussia: 49000000... 88.8s: points, polyRussia: 50000000... 90.2s: points, polyRussia: 51000000... 91.5s: points, polyRussia: 52000000... 92.8s: points, polyRussia: 53000000... 94.1s: points, polyRussia: 54000000... 101.3s: points, polyRussia: 55000000... 102.6s: points, polyRussia: 56000000... 103.5s: points, polyRussia: 57000000... 104.9s: points, polyRussia: 58000000... 106.2s: points, polyRussia: 59000000... 107.5s: points, polyRussia: 60000000... 110.7s: points, polyRussia: 110.620923222 sec to index part 0 110.7s: points, polyRussia: INDEX SIZE: 0.4939169967547059 GB 110.7s: points, polyRussia: READER MB: 0.0 110.7s: points, polyRussia: maxDoc=60844404 110.9s: points, polyRussia: ITER 0: 16.89 M hits/sec, 4.81 QPS (0.21 sec for 1 queries), totHits=3508846 110.9s: points, polyRussia: *** 111.0s: points, polyRussia: ITER 1: 54.62 M hits/sec, 15.57 QPS (0.06 sec for 1 queries), totHits=3508846 111.0s: points, polyRussia: *** 111.1s: points, polyRussia: ITER 2: 60.75 M hits/sec, 17.31 QPS (0.06 sec for 1 queries), totHits=3508846 111.1s: points, polyRussia: *** 111.1s: points, polyRussia: ITER 3: 61.99 M hits/sec, 17.67 QPS (0.06 sec for 1 queries), totHits=3508846 111.1s: points, polyRussia: *** 111.2s: points, polyRussia: ITER 4: 53.82 M hits/sec, 15.34 QPS (0.07 sec for 1 queries), totHits=3508846 111.2s: points, polyRussia: ITER 5: 60.28 M hits/sec, 17.18 QPS (0.06 sec for 1 queries), totHits=3508846 111.3s: points, polyRussia: ITER 6: 61.71 M hits/sec, 17.59 QPS (0.06 sec for 1 queries), totHits=3508846 111.4s: points, polyRussia: ITER 7: 62.00 M hits/sec, 17.67 QPS (0.06 sec for 1 queries), totHits=3508846 111.4s: points, polyRussia: *** 111.4s: points, polyRussia: ITER 8: 62.84 M hits/sec, 17.91 QPS (0.06 sec for 1 queries), totHits=3508846 111.4s: points, polyRussia: *** 111.5s: points, polyRussia: ITER 9: 62.30 M hits/sec, 17.75 QPS (0.06 sec for 1 queries), totHits=3508846 111.5s: points, polyRussia: ITER 10: 62.27 M hits/sec, 17.75 QPS (0.06 sec for 1 queries), totHits=3508846 111.6s: points, polyRussia: ITER 11: 62.06 M hits/sec, 17.69 QPS (0.06 sec for 1 queries), totHits=3508846 111.6s: points, polyRussia: ITER 12: 63.71 M hits/sec, 18.16 QPS (0.06 sec for 1 queries), totHits=3508846 111.6s: points, polyRussia: *** 111.7s: points, polyRussia: ITER 13: 62.66 M hits/sec, 17.86 QPS (0.06 sec for 1 queries), totHits=3508846 111.7s: points, polyRussia: ITER 14: 63.92 M hits/sec, 18.22 QPS (0.05 sec for 1 queries), totHits=3508846 111.7s: points, polyRussia: *** 111.8s: points, polyRussia: ITER 15: 62.87 M hits/sec, 17.92 QPS (0.06 sec for 1 queries), totHits=3508846 111.9s: points, polyRussia: ITER 16: 63.33 M hits/sec, 18.05 QPS (0.06 sec for 1 queries), totHits=3508846 111.9s: points, polyRussia: ITER 17: 65.08 M hits/sec, 18.55 QPS (0.05 sec for 1 queries), totHits=3508846 111.9s: points, polyRussia: *** 112.0s: points, polyRussia: ITER 18: 65.07 M hits/sec, 18.54 QPS (0.05 sec for 1 queries), totHits=3508846 112.0s: points, polyRussia: ITER 19: 65.74 M hits/sec, 18.74 QPS (0.05 sec for 1 queries), totHits=3508846 112.0s: points, polyRussia: *** 112.0s: points, polyRussia: BEST M hits/sec: 65.74395131443929 112.0s: points, polyRussia: BEST QPS: 18.73663059434335 Results on 60.844404M points: ||Approach||Index time (sec)||Force merge time (sec)||Index size (GB)||Reader heap (MB)|| |points|110.6s|0.0s|0.49|0.00| ||Shape||Approach||M hits/sec||QPS||Hit count|| |distance|geo3d|||| |distance|points|||| |distance|geopoint|||| |distance|shapes|||| |box|geo3d|||| |box|points|||| |box|geopoint|||| |box|shapes|||| |poly 10|geo3d|||| |poly 10|points|||| |poly 10|geopoint|||| |poly 10|shapes|||| |polyMedium|geo3d|||| |polyMedium|points|||| |polyMedium|geopoint|||| |polyMedium|shapes|||| |polyRussia|geo3d|||| |polyRussia|points|65.74|18.74|3508846| |polyRussia|geopoint|||| |polyRussia|shapes|||| |nearest 10|geo3d|||| |nearest 10|points|||| |nearest 10|geopoint|||| |nearest 10|shapes|||| |sort|geo3d|||| |sort|points|||| |sort|geopoint|||| |sort|shapes|||| RUN: java -XX:+UseParallelGC -Xmx10g -cp /l/util.nightly/src/main:test-framework/build/classes/java/main:sandbox/build/classes/java/main:codecs/build/classes/java/main:codecs/build/resources/main:core/build/classes/java/main:core/build/classes/java/main21:core/build/resources/main:sandbox/build/classes/java/main:spatial3d/build/classes/java/main perf.IndexAndSearchOpenStreetMaps -geo3dlarge -polyRussia -reindex 113.8s: geo3d, polyRussia: 1000000... 115.7s: geo3d, polyRussia: 2000000... 117.5s: geo3d, polyRussia: 3000000... 119.1s: geo3d, polyRussia: 4000000... 120.8s: geo3d, polyRussia: 5000000... 122.4s: geo3d, polyRussia: 6000000... 124.1s: geo3d, polyRussia: 7000000... 125.7s: geo3d, polyRussia: 8000000... 127.4s: geo3d, polyRussia: 9000000... 129.1s: geo3d, polyRussia: 10000000... 138.1s: geo3d, polyRussia: 11000000... 139.2s: geo3d, polyRussia: 12000000... 140.8s: geo3d, polyRussia: 13000000... 142.5s: geo3d, polyRussia: 14000000... 144.2s: geo3d, polyRussia: 15000000... 145.8s: geo3d, polyRussia: 16000000... 147.6s: geo3d, polyRussia: 17000000... 149.2s: geo3d, polyRussia: 18000000... 150.9s: geo3d, polyRussia: 19000000... 152.5s: geo3d, polyRussia: 20000000... 154.2s: geo3d, polyRussia: 21000000... 163.2s: geo3d, polyRussia: 22000000... 164.3s: geo3d, polyRussia: 23000000... 165.9s: geo3d, polyRussia: 24000000... 167.6s: geo3d, polyRussia: 25000000... 169.3s: geo3d, polyRussia: 26000000... 170.9s: geo3d, polyRussia: 27000000... 172.6s: geo3d, polyRussia: 28000000... 174.2s: geo3d, polyRussia: 29000000... 175.9s: geo3d, polyRussia: 30000000... 177.5s: geo3d, polyRussia: 31000000... 179.1s: geo3d, polyRussia: 32000000... 188.2s: geo3d, polyRussia: 33000000... 189.9s: geo3d, polyRussia: 34000000... 190.9s: geo3d, polyRussia: 35000000... 192.5s: geo3d, polyRussia: 36000000... 194.2s: geo3d, polyRussia: 37000000... 195.8s: geo3d, polyRussia: 38000000... 197.4s: geo3d, polyRussia: 39000000... 199.1s: geo3d, polyRussia: 40000000... 200.7s: geo3d, polyRussia: 41000000... 202.4s: geo3d, polyRussia: 42000000... 204.1s: geo3d, polyRussia: 43000000... 213.1s: geo3d, polyRussia: 44000000... 214.7s: geo3d, polyRussia: 45000000... 215.8s: geo3d, polyRussia: 46000000... 217.4s: geo3d, polyRussia: 47000000... 219.0s: geo3d, polyRussia: 48000000... 220.7s: geo3d, polyRussia: 49000000... 222.4s: geo3d, polyRussia: 50000000... 224.0s: geo3d, polyRussia: 51000000... 225.7s: geo3d, polyRussia: 52000000... 227.3s: geo3d, polyRussia: 53000000... 229.0s: geo3d, polyRussia: 54000000... 238.0s: geo3d, polyRussia: 55000000... 239.7s: geo3d, polyRussia: 56000000... 240.7s: geo3d, polyRussia: 57000000... 242.4s: geo3d, polyRussia: 58000000... 244.0s: geo3d, polyRussia: 59000000... 245.7s: geo3d, polyRussia: 60000000... 249.0s: geo3d, polyRussia: 136.911959507 sec to index part 0 249.0s: geo3d, polyRussia: INDEX SIZE: 0.6990031152963638 GB 249.0s: geo3d, polyRussia: READER MB: 0.0 249.0s: geo3d, polyRussia: maxDoc=60844404 250.5s: geo3d, polyRussia: ITER 0: 2.33 M hits/sec, 0.66 QPS (1.51 sec for 1 queries), totHits=3508671 250.5s: geo3d, polyRussia: *** 251.6s: geo3d, polyRussia: ITER 1: 3.20 M hits/sec, 0.91 QPS (1.10 sec for 1 queries), totHits=3508671 251.6s: geo3d, polyRussia: *** 252.7s: geo3d, polyRussia: ITER 2: 3.42 M hits/sec, 0.98 QPS (1.03 sec for 1 queries), totHits=3508671 252.7s: geo3d, polyRussia: *** 253.7s: geo3d, polyRussia: ITER 3: 3.49 M hits/sec, 0.99 QPS (1.01 sec for 1 queries), totHits=3508671 253.7s: geo3d, polyRussia: *** 254.6s: geo3d, polyRussia: ITER 4: 3.60 M hits/sec, 1.03 QPS (0.97 sec for 1 queries), totHits=3508671 254.6s: geo3d, polyRussia: *** 255.6s: geo3d, polyRussia: ITER 5: 3.69 M hits/sec, 1.05 QPS (0.95 sec for 1 queries), totHits=3508671 255.6s: geo3d, polyRussia: *** 256.5s: geo3d, polyRussia: ITER 6: 3.73 M hits/sec, 1.06 QPS (0.94 sec for 1 queries), totHits=3508671 256.5s: geo3d, polyRussia: *** 257.5s: geo3d, polyRussia: ITER 7: 3.67 M hits/sec, 1.05 QPS (0.95 sec for 1 queries), totHits=3508671 258.4s: geo3d, polyRussia: ITER 8: 3.64 M hits/sec, 1.04 QPS (0.96 sec for 1 queries), totHits=3508671 259.4s: geo3d, polyRussia: ITER 9: 3.61 M hits/sec, 1.03 QPS (0.97 sec for 1 queries), totHits=3508671 260.4s: geo3d, polyRussia: ITER 10: 3.70 M hits/sec, 1.05 QPS (0.95 sec for 1 queries), totHits=3508671 261.3s: geo3d, polyRussia: ITER 11: 3.79 M hits/sec, 1.08 QPS (0.93 sec for 1 queries), totHits=3508671 261.3s: geo3d, polyRussia: *** 262.2s: geo3d, polyRussia: ITER 12: 3.67 M hits/sec, 1.05 QPS (0.95 sec for 1 queries), totHits=3508671 263.2s: geo3d, polyRussia: ITER 13: 3.73 M hits/sec, 1.06 QPS (0.94 sec for 1 queries), totHits=3508671 264.1s: geo3d, polyRussia: ITER 14: 3.72 M hits/sec, 1.06 QPS (0.94 sec for 1 queries), totHits=3508671 265.1s: geo3d, polyRussia: ITER 15: 3.69 M hits/sec, 1.05 QPS (0.95 sec for 1 queries), totHits=3508671 266.0s: geo3d, polyRussia: ITER 16: 3.65 M hits/sec, 1.04 QPS (0.96 sec for 1 queries), totHits=3508671 267.0s: geo3d, polyRussia: ITER 17: 3.73 M hits/sec, 1.06 QPS (0.94 sec for 1 queries), totHits=3508671 267.9s: geo3d, polyRussia: ITER 18: 3.72 M hits/sec, 1.06 QPS (0.94 sec for 1 queries), totHits=3508671 268.9s: geo3d, polyRussia: ITER 19: 3.66 M hits/sec, 1.04 QPS (0.96 sec for 1 queries), totHits=3508671 268.9s: geo3d, polyRussia: BEST M hits/sec: 3.7877124422585795 268.9s: geo3d, polyRussia: BEST QPS: 1.0795290986982191 Results on 60.844404M points: ||Approach||Index time (sec)||Force merge time (sec)||Index size (GB)||Reader heap (MB)|| |geo3d|136.9s|0.0s|0.70|0.00| |points|110.6s|0.0s|0.49|0.00| ||Shape||Approach||M hits/sec||QPS||Hit count|| |distance|geo3d|||| |distance|points|||| |distance|geopoint|||| |distance|shapes|||| |box|geo3d|||| |box|points|||| |box|geopoint|||| |box|shapes|||| |poly 10|geo3d|||| |poly 10|points|||| |poly 10|geopoint|||| |poly 10|shapes|||| |polyMedium|geo3d|||| |polyMedium|points|||| |polyMedium|geopoint|||| |polyMedium|shapes|||| |polyRussia|geo3d|3.79|1.08|3508671| |polyRussia|points|65.74|18.74|3508846| |polyRussia|geopoint|||| |polyRussia|shapes|||| |nearest 10|geo3d|||| |nearest 10|points|||| |nearest 10|geopoint|||| |nearest 10|shapes|||| |sort|geo3d|||| |sort|points|||| |sort|geopoint|||| |sort|shapes|||| RUN: java -XX:+UseParallelGC -Xmx10g -cp /l/util.nightly/src/main:test-framework/build/classes/java/main:sandbox/build/classes/java/main:codecs/build/classes/java/main:codecs/build/resources/main:core/build/classes/java/main:core/build/classes/java/main21:core/build/resources/main:sandbox/build/classes/java/main:spatial3d/build/classes/java/main perf.IndexAndSearchOpenStreetMaps -shapes -polyRussia -reindex 270.8s: shapes, polyRussia: 1000000... 273.2s: shapes, polyRussia: 2000000... 275.2s: shapes, polyRussia: 3000000... 277.2s: shapes, polyRussia: 4000000... 279.2s: shapes, polyRussia: 5000000... 281.1s: shapes, polyRussia: 6000000... 283.0s: shapes, polyRussia: 7000000... 284.9s: shapes, polyRussia: 8000000... 286.9s: shapes, polyRussia: 9000000... 288.9s: shapes, polyRussia: 10000000... 300.5s: shapes, polyRussia: 11000000... 301.7s: shapes, polyRussia: 12000000... 303.7s: shapes, polyRussia: 13000000... 305.6s: shapes, polyRussia: 14000000... 307.5s: shapes, polyRussia: 15000000... 309.5s: shapes, polyRussia: 16000000... 311.5s: shapes, polyRussia: 17000000... 313.5s: shapes, polyRussia: 18000000... 315.4s: shapes, polyRussia: 19000000... 317.3s: shapes, polyRussia: 20000000... 319.3s: shapes, polyRussia: 21000000... 331.0s: shapes, polyRussia: 22000000... 332.2s: shapes, polyRussia: 23000000... 334.1s: shapes, polyRussia: 24000000... 336.1s: shapes, polyRussia: 25000000... 338.1s: shapes, polyRussia: 26000000... 340.0s: shapes, polyRussia: 27000000... 341.9s: shapes, polyRussia: 28000000... 343.9s: shapes, polyRussia: 29000000... 345.8s: shapes, polyRussia: 30000000... 347.7s: shapes, polyRussia: 31000000... 349.6s: shapes, polyRussia: 32000000... 361.4s: shapes, polyRussia: 33000000... 363.3s: shapes, polyRussia: 34000000... 364.5s: shapes, polyRussia: 35000000... 366.4s: shapes, polyRussia: 36000000... 368.3s: shapes, polyRussia: 37000000... 370.2s: shapes, polyRussia: 38000000... 372.1s: shapes, polyRussia: 39000000... 374.1s: shapes, polyRussia: 40000000... 376.0s: shapes, polyRussia: 41000000... 378.0s: shapes, polyRussia: 42000000... 380.0s: shapes, polyRussia: 43000000... 391.6s: shapes, polyRussia: 44000000... 393.5s: shapes, polyRussia: 45000000... 394.7s: shapes, polyRussia: 46000000... 396.6s: shapes, polyRussia: 47000000... 398.6s: shapes, polyRussia: 48000000... 400.5s: shapes, polyRussia: 49000000... 402.5s: shapes, polyRussia: 50000000... 404.4s: shapes, polyRussia: 51000000... 406.4s: shapes, polyRussia: 52000000... 408.3s: shapes, polyRussia: 53000000... 410.2s: shapes, polyRussia: 54000000... 421.9s: shapes, polyRussia: 55000000... 423.8s: shapes, polyRussia: 56000000... 425.0s: shapes, polyRussia: 57000000... 427.0s: shapes, polyRussia: 58000000... 428.9s: shapes, polyRussia: 59000000... 430.9s: shapes, polyRussia: 60000000... 435.8s: shapes, polyRussia: 166.829778967 sec to index part 0 435.8s: shapes, polyRussia: INDEX SIZE: 1.2543620793148875 GB 435.8s: shapes, polyRussia: READER MB: 0.0 435.8s: shapes, polyRussia: maxDoc=60844404 436.1s: shapes, polyRussia: ITER 0: 17.00 M hits/sec, 4.85 QPS (0.21 sec for 1 queries), totHits=3508846 436.1s: shapes, polyRussia: *** 436.1s: shapes, polyRussia: ITER 1: 39.23 M hits/sec, 11.18 QPS (0.09 sec for 1 queries), totHits=3508846 436.1s: shapes, polyRussia: *** 436.2s: shapes, polyRussia: ITER 2: 35.68 M hits/sec, 10.17 QPS (0.10 sec for 1 queries), totHits=3508846 436.3s: shapes, polyRussia: ITER 3: 41.81 M hits/sec, 11.91 QPS (0.08 sec for 1 queries), totHits=3508846 436.3s: shapes, polyRussia: *** 436.4s: shapes, polyRussia: ITER 4: 43.63 M hits/sec, 12.44 QPS (0.08 sec for 1 queries), totHits=3508846 436.4s: shapes, polyRussia: *** 436.5s: shapes, polyRussia: ITER 5: 43.30 M hits/sec, 12.34 QPS (0.08 sec for 1 queries), totHits=3508846 436.6s: shapes, polyRussia: ITER 6: 43.53 M hits/sec, 12.41 QPS (0.08 sec for 1 queries), totHits=3508846 436.6s: shapes, polyRussia: ITER 7: 42.87 M hits/sec, 12.22 QPS (0.08 sec for 1 queries), totHits=3508846 436.7s: shapes, polyRussia: ITER 8: 43.16 M hits/sec, 12.30 QPS (0.08 sec for 1 queries), totHits=3508846 436.8s: shapes, polyRussia: ITER 9: 44.25 M hits/sec, 12.61 QPS (0.08 sec for 1 queries), totHits=3508846 436.8s: shapes, polyRussia: *** 436.9s: shapes, polyRussia: ITER 10: 44.09 M hits/sec, 12.57 QPS (0.08 sec for 1 queries), totHits=3508846 437.0s: shapes, polyRussia: ITER 11: 44.09 M hits/sec, 12.57 QPS (0.08 sec for 1 queries), totHits=3508846 437.0s: shapes, polyRussia: ITER 12: 44.03 M hits/sec, 12.55 QPS (0.08 sec for 1 queries), totHits=3508846 437.1s: shapes, polyRussia: ITER 13: 44.54 M hits/sec, 12.69 QPS (0.08 sec for 1 queries), totHits=3508846 437.1s: shapes, polyRussia: *** 437.2s: shapes, polyRussia: ITER 14: 40.79 M hits/sec, 11.62 QPS (0.09 sec for 1 queries), totHits=3508846 437.3s: shapes, polyRussia: ITER 15: 43.44 M hits/sec, 12.38 QPS (0.08 sec for 1 queries), totHits=3508846 437.4s: shapes, polyRussia: ITER 16: 44.48 M hits/sec, 12.68 QPS (0.08 sec for 1 queries), totHits=3508846 437.5s: shapes, polyRussia: ITER 17: 43.93 M hits/sec, 12.52 QPS (0.08 sec for 1 queries), totHits=3508846 437.5s: shapes, polyRussia: ITER 18: 43.87 M hits/sec, 12.50 QPS (0.08 sec for 1 queries), totHits=3508846 437.6s: shapes, polyRussia: ITER 19: 44.08 M hits/sec, 12.56 QPS (0.08 sec for 1 queries), totHits=3508846 437.6s: shapes, polyRussia: BEST M hits/sec: 44.5373291810891 437.6s: shapes, polyRussia: BEST QPS: 12.692870870106326 Results on 60.844404M points: ||Approach||Index time (sec)||Force merge time (sec)||Index size (GB)||Reader heap (MB)|| |geo3d|136.9s|0.0s|0.70|0.00| |points|110.6s|0.0s|0.49|0.00| |shapes|166.8s|0.0s|1.25|0.00| ||Shape||Approach||M hits/sec||QPS||Hit count|| |distance|geo3d|||| |distance|points|||| |distance|geopoint|||| |distance|shapes|||| |box|geo3d|||| |box|points|||| |box|geopoint|||| |box|shapes|||| |poly 10|geo3d|||| |poly 10|points|||| |poly 10|geopoint|||| |poly 10|shapes|||| |polyMedium|geo3d|||| |polyMedium|points|||| |polyMedium|geopoint|||| |polyMedium|shapes|||| |polyRussia|geo3d|3.79|1.08|3508671| |polyRussia|points|65.74|18.74|3508846| |polyRussia|geopoint|||| |polyRussia|shapes|44.54|12.69|3508846| |nearest 10|geo3d|||| |nearest 10|points|||| |nearest 10|geopoint|||| |nearest 10|shapes|||| |sort|geo3d|||| |sort|points|||| |sort|geopoint|||| |sort|shapes|||| RUN: java -XX:+UseParallelGC -Xmx10g -cp /l/util.nightly/src/main:test-framework/build/classes/java/main:sandbox/build/classes/java/main:codecs/build/classes/java/main:codecs/build/resources/main:core/build/classes/java/main:core/build/classes/java/main21:core/build/resources/main:sandbox/build/classes/java/main:spatial3d/build/classes/java/main perf.IndexAndSearchOpenStreetMaps -points -polyMedium 437.9s: points, polyMedium: INDEX SIZE: 0.4939169967547059 GB 437.9s: points, polyMedium: READER MB: 0.0 437.9s: points, polyMedium: maxDoc=60844404 438.4s: points, polyMedium: ITER 0: 7.00 M hits/sec, 85.77 QPS (0.38 sec for 33 queries), totHits=2693559 438.4s: points, polyMedium: *** 438.6s: points, polyMedium: ITER 1: 15.72 M hits/sec, 192.60 QPS (0.17 sec for 33 queries), totHits=2693559 438.6s: points, polyMedium: *** 438.7s: points, polyMedium: ITER 2: 16.70 M hits/sec, 204.62 QPS (0.16 sec for 33 queries), totHits=2693559 438.7s: points, polyMedium: *** 438.9s: points, polyMedium: ITER 3: 16.63 M hits/sec, 203.71 QPS (0.16 sec for 33 queries), totHits=2693559 439.0s: points, polyMedium: ITER 4: 16.23 M hits/sec, 198.84 QPS (0.17 sec for 33 queries), totHits=2693559 439.2s: points, polyMedium: ITER 5: 16.65 M hits/sec, 203.93 QPS (0.16 sec for 33 queries), totHits=2693559 439.4s: points, polyMedium: ITER 6: 16.78 M hits/sec, 205.62 QPS (0.16 sec for 33 queries), totHits=2693559 439.4s: points, polyMedium: *** 439.5s: points, polyMedium: ITER 7: 16.98 M hits/sec, 207.99 QPS (0.16 sec for 33 queries), totHits=2693559 439.5s: points, polyMedium: *** 439.7s: points, polyMedium: ITER 8: 16.73 M hits/sec, 204.92 QPS (0.16 sec for 33 queries), totHits=2693559 439.8s: points, polyMedium: ITER 9: 16.69 M hits/sec, 204.52 QPS (0.16 sec for 33 queries), totHits=2693559 440.0s: points, polyMedium: ITER 10: 16.50 M hits/sec, 202.12 QPS (0.16 sec for 33 queries), totHits=2693559 440.2s: points, polyMedium: ITER 11: 16.73 M hits/sec, 204.91 QPS (0.16 sec for 33 queries), totHits=2693559 440.3s: points, polyMedium: ITER 12: 16.61 M hits/sec, 203.47 QPS (0.16 sec for 33 queries), totHits=2693559 440.5s: points, polyMedium: ITER 13: 16.65 M hits/sec, 204.00 QPS (0.16 sec for 33 queries), totHits=2693559 440.7s: points, polyMedium: ITER 14: 16.79 M hits/sec, 205.67 QPS (0.16 sec for 33 queries), totHits=2693559 440.8s: points, polyMedium: ITER 15: 16.95 M hits/sec, 207.69 QPS (0.16 sec for 33 queries), totHits=2693559 441.0s: points, polyMedium: ITER 16: 16.72 M hits/sec, 204.88 QPS (0.16 sec for 33 queries), totHits=2693559 441.1s: points, polyMedium: ITER 17: 16.08 M hits/sec, 196.94 QPS (0.17 sec for 33 queries), totHits=2693559 441.3s: points, polyMedium: ITER 18: 16.39 M hits/sec, 200.78 QPS (0.16 sec for 33 queries), totHits=2693559 441.5s: points, polyMedium: ITER 19: 16.71 M hits/sec, 204.70 QPS (0.16 sec for 33 queries), totHits=2693559 441.5s: points, polyMedium: BEST M hits/sec: 16.977039458887077 441.5s: points, polyMedium: BEST QPS: 207.99332858247158 Results on 60.844404M points: ||Approach||Index time (sec)||Force merge time (sec)||Index size (GB)||Reader heap (MB)|| |geo3d|136.9s|0.0s|0.70|0.00| |points|110.6s|0.0s|0.49|0.00| |shapes|166.8s|0.0s|1.25|0.00| ||Shape||Approach||M hits/sec||QPS||Hit count|| |distance|geo3d|||| |distance|points|||| |distance|geopoint|||| |distance|shapes|||| |box|geo3d|||| |box|points|||| |box|geopoint|||| |box|shapes|||| |poly 10|geo3d|||| |poly 10|points|||| |poly 10|geopoint|||| |poly 10|shapes|||| |polyMedium|geo3d|||| |polyMedium|points|16.98|207.99|2693559| |polyMedium|geopoint|||| |polyMedium|shapes|||| |polyRussia|geo3d|3.79|1.08|3508671| |polyRussia|points|65.74|18.74|3508846| |polyRussia|geopoint|||| |polyRussia|shapes|44.54|12.69|3508846| |nearest 10|geo3d|||| |nearest 10|points|||| |nearest 10|geopoint|||| |nearest 10|shapes|||| |sort|geo3d|||| |sort|points|||| |sort|geopoint|||| |sort|shapes|||| RUN: java -XX:+UseParallelGC -Xmx10g -cp /l/util.nightly/src/main:test-framework/build/classes/java/main:sandbox/build/classes/java/main:codecs/build/classes/java/main:codecs/build/resources/main:core/build/classes/java/main:core/build/classes/java/main21:core/build/resources/main:sandbox/build/classes/java/main:spatial3d/build/classes/java/main perf.IndexAndSearchOpenStreetMaps -geo3dlarge -polyMedium 441.7s: geo3d, polyMedium: INDEX SIZE: 0.6990031152963638 GB 441.7s: geo3d, polyMedium: READER MB: 0.0 441.7s: geo3d, polyMedium: maxDoc=60844404 443.4s: geo3d, polyMedium: ITER 0: 1.75 M hits/sec, 21.49 QPS (1.54 sec for 33 queries), totHits=2693541 443.4s: geo3d, polyMedium: *** 444.4s: geo3d, polyMedium: ITER 1: 2.56 M hits/sec, 31.40 QPS (1.05 sec for 33 queries), totHits=2693541 444.4s: geo3d, polyMedium: *** 445.5s: geo3d, polyMedium: ITER 2: 2.54 M hits/sec, 31.17 QPS (1.06 sec for 33 queries), totHits=2693541 446.5s: geo3d, polyMedium: ITER 3: 2.58 M hits/sec, 31.63 QPS (1.04 sec for 33 queries), totHits=2693541 446.5s: geo3d, polyMedium: *** 447.6s: geo3d, polyMedium: ITER 4: 2.43 M hits/sec, 29.78 QPS (1.11 sec for 33 queries), totHits=2693541 448.7s: geo3d, polyMedium: ITER 5: 2.53 M hits/sec, 30.96 QPS (1.07 sec for 33 queries), totHits=2693541 449.8s: geo3d, polyMedium: ITER 6: 2.51 M hits/sec, 30.71 QPS (1.07 sec for 33 queries), totHits=2693541 450.9s: geo3d, polyMedium: ITER 7: 2.46 M hits/sec, 30.10 QPS (1.10 sec for 33 queries), totHits=2693541 452.0s: geo3d, polyMedium: ITER 8: 2.49 M hits/sec, 30.48 QPS (1.08 sec for 33 queries), totHits=2693541 453.1s: geo3d, polyMedium: ITER 9: 2.38 M hits/sec, 29.10 QPS (1.13 sec for 33 queries), totHits=2693541 454.2s: geo3d, polyMedium: ITER 10: 2.51 M hits/sec, 30.78 QPS (1.07 sec for 33 queries), totHits=2693541 455.2s: geo3d, polyMedium: ITER 11: 2.54 M hits/sec, 31.08 QPS (1.06 sec for 33 queries), totHits=2693541 456.3s: geo3d, polyMedium: ITER 12: 2.51 M hits/sec, 30.72 QPS (1.07 sec for 33 queries), totHits=2693541 457.4s: geo3d, polyMedium: ITER 13: 2.51 M hits/sec, 30.74 QPS (1.07 sec for 33 queries), totHits=2693541 458.5s: geo3d, polyMedium: ITER 14: 2.48 M hits/sec, 30.43 QPS (1.08 sec for 33 queries), totHits=2693541 459.5s: geo3d, polyMedium: ITER 15: 2.50 M hits/sec, 30.67 QPS (1.08 sec for 33 queries), totHits=2693541 460.6s: geo3d, polyMedium: ITER 16: 2.48 M hits/sec, 30.44 QPS (1.08 sec for 33 queries), totHits=2693541 461.7s: geo3d, polyMedium: ITER 17: 2.53 M hits/sec, 31.02 QPS (1.06 sec for 33 queries), totHits=2693541 462.8s: geo3d, polyMedium: ITER 18: 2.51 M hits/sec, 30.79 QPS (1.07 sec for 33 queries), totHits=2693541 463.8s: geo3d, polyMedium: ITER 19: 2.49 M hits/sec, 30.56 QPS (1.08 sec for 33 queries), totHits=2693541 463.8s: geo3d, polyMedium: BEST M hits/sec: 2.5818042702889135 463.8s: geo3d, polyMedium: BEST QPS: 31.631054036130926 Results on 60.844404M points: ||Approach||Index time (sec)||Force merge time (sec)||Index size (GB)||Reader heap (MB)|| |geo3d|136.9s|0.0s|0.70|0.00| |points|110.6s|0.0s|0.49|0.00| |shapes|166.8s|0.0s|1.25|0.00| ||Shape||Approach||M hits/sec||QPS||Hit count|| |distance|geo3d|||| |distance|points|||| |distance|geopoint|||| |distance|shapes|||| |box|geo3d|||| |box|points|||| |box|geopoint|||| |box|shapes|||| |poly 10|geo3d|||| |poly 10|points|||| |poly 10|geopoint|||| |poly 10|shapes|||| |polyMedium|geo3d|2.58|31.63|2693541| |polyMedium|points|16.98|207.99|2693559| |polyMedium|geopoint|||| |polyMedium|shapes|||| |polyRussia|geo3d|3.79|1.08|3508671| |polyRussia|points|65.74|18.74|3508846| |polyRussia|geopoint|||| |polyRussia|shapes|44.54|12.69|3508846| |nearest 10|geo3d|||| |nearest 10|points|||| |nearest 10|geopoint|||| |nearest 10|shapes|||| |sort|geo3d|||| |sort|points|||| |sort|geopoint|||| |sort|shapes|||| RUN: java -XX:+UseParallelGC -Xmx10g -cp /l/util.nightly/src/main:test-framework/build/classes/java/main:sandbox/build/classes/java/main:codecs/build/classes/java/main:codecs/build/resources/main:core/build/classes/java/main:core/build/classes/java/main21:core/build/resources/main:sandbox/build/classes/java/main:spatial3d/build/classes/java/main perf.IndexAndSearchOpenStreetMaps -shapes -polyMedium 464.1s: shapes, polyMedium: INDEX SIZE: 1.2543620793148875 GB 464.1s: shapes, polyMedium: READER MB: 0.0 464.1s: shapes, polyMedium: maxDoc=60844404 464.8s: shapes, polyMedium: ITER 0: 4.94 M hits/sec, 60.49 QPS (0.55 sec for 33 queries), totHits=2693559 464.8s: shapes, polyMedium: *** 465.0s: shapes, polyMedium: ITER 1: 12.64 M hits/sec, 154.81 QPS (0.21 sec for 33 queries), totHits=2693559 465.0s: shapes, polyMedium: *** 465.2s: shapes, polyMedium: ITER 2: 12.91 M hits/sec, 158.17 QPS (0.21 sec for 33 queries), totHits=2693559 465.2s: shapes, polyMedium: *** 465.4s: shapes, polyMedium: ITER 3: 12.76 M hits/sec, 156.35 QPS (0.21 sec for 33 queries), totHits=2693559 465.6s: shapes, polyMedium: ITER 4: 12.66 M hits/sec, 155.05 QPS (0.21 sec for 33 queries), totHits=2693559 465.8s: shapes, polyMedium: ITER 5: 13.14 M hits/sec, 161.02 QPS (0.20 sec for 33 queries), totHits=2693559 465.8s: shapes, polyMedium: *** 466.0s: shapes, polyMedium: ITER 6: 13.08 M hits/sec, 160.20 QPS (0.21 sec for 33 queries), totHits=2693559 466.2s: shapes, polyMedium: ITER 7: 12.97 M hits/sec, 158.96 QPS (0.21 sec for 33 queries), totHits=2693559 466.4s: shapes, polyMedium: ITER 8: 12.91 M hits/sec, 158.18 QPS (0.21 sec for 33 queries), totHits=2693559 466.6s: shapes, polyMedium: ITER 9: 12.81 M hits/sec, 156.95 QPS (0.21 sec for 33 queries), totHits=2693559 466.9s: shapes, polyMedium: ITER 10: 12.64 M hits/sec, 154.89 QPS (0.21 sec for 33 queries), totHits=2693559 467.1s: shapes, polyMedium: ITER 11: 12.97 M hits/sec, 158.90 QPS (0.21 sec for 33 queries), totHits=2693559 467.3s: shapes, polyMedium: ITER 12: 12.94 M hits/sec, 158.51 QPS (0.21 sec for 33 queries), totHits=2693559 467.5s: shapes, polyMedium: ITER 13: 12.84 M hits/sec, 157.36 QPS (0.21 sec for 33 queries), totHits=2693559 467.7s: shapes, polyMedium: ITER 14: 12.99 M hits/sec, 159.09 QPS (0.21 sec for 33 queries), totHits=2693559 467.9s: shapes, polyMedium: ITER 15: 12.80 M hits/sec, 156.82 QPS (0.21 sec for 33 queries), totHits=2693559 468.1s: shapes, polyMedium: ITER 16: 12.78 M hits/sec, 156.59 QPS (0.21 sec for 33 queries), totHits=2693559 468.3s: shapes, polyMedium: ITER 17: 12.67 M hits/sec, 155.21 QPS (0.21 sec for 33 queries), totHits=2693559 468.5s: shapes, polyMedium: ITER 18: 12.85 M hits/sec, 157.42 QPS (0.21 sec for 33 queries), totHits=2693559 468.7s: shapes, polyMedium: ITER 19: 13.05 M hits/sec, 159.91 QPS (0.21 sec for 33 queries), totHits=2693559 468.7s: shapes, polyMedium: BEST M hits/sec: 13.142845697271245 468.7s: shapes, polyMedium: BEST QPS: 161.01890027653045 Results on 60.844404M points: ||Approach||Index time (sec)||Force merge time (sec)||Index size (GB)||Reader heap (MB)|| |geo3d|136.9s|0.0s|0.70|0.00| |points|110.6s|0.0s|0.49|0.00| |shapes|166.8s|0.0s|1.25|0.00| ||Shape||Approach||M hits/sec||QPS||Hit count|| |distance|geo3d|||| |distance|points|||| |distance|geopoint|||| |distance|shapes|||| |box|geo3d|||| |box|points|||| |box|geopoint|||| |box|shapes|||| |poly 10|geo3d|||| |poly 10|points|||| |poly 10|geopoint|||| |poly 10|shapes|||| |polyMedium|geo3d|2.58|31.63|2693541| |polyMedium|points|16.98|207.99|2693559| |polyMedium|geopoint|||| |polyMedium|shapes|13.14|161.02|2693559| |polyRussia|geo3d|3.79|1.08|3508671| |polyRussia|points|65.74|18.74|3508846| |polyRussia|geopoint|||| |polyRussia|shapes|44.54|12.69|3508846| |nearest 10|geo3d|||| |nearest 10|points|||| |nearest 10|geopoint|||| |nearest 10|shapes|||| |sort|geo3d|||| |sort|points|||| |sort|geopoint|||| |sort|shapes|||| RUN: java -XX:+UseParallelGC -Xmx10g -cp /l/util.nightly/src/main:test-framework/build/classes/java/main:sandbox/build/classes/java/main:codecs/build/classes/java/main:codecs/build/resources/main:core/build/classes/java/main:core/build/classes/java/main21:core/build/resources/main:sandbox/build/classes/java/main:spatial3d/build/classes/java/main perf.IndexAndSearchOpenStreetMaps -points -poly 10 469.0s: points, poly 10: INDEX SIZE: 0.4939169967547059 GB 469.0s: points, poly 10: READER MB: 0.0 469.0s: points, poly 10: maxDoc=60844404 471.0s: points, poly 10: ITER 0: 180.16 M hits/sec, 113.93 QPS (1.97 sec for 225 queries), totHits=355809475 471.0s: points, poly 10: *** 472.5s: points, poly 10: ITER 1: 232.63 M hits/sec, 147.10 QPS (1.53 sec for 225 queries), totHits=355809475 472.5s: points, poly 10: *** 473.8s: points, poly 10: ITER 2: 284.72 M hits/sec, 180.05 QPS (1.25 sec for 225 queries), totHits=355809475 473.8s: points, poly 10: *** 475.1s: points, poly 10: ITER 3: 279.93 M hits/sec, 177.02 QPS (1.27 sec for 225 queries), totHits=355809475 476.3s: points, poly 10: ITER 4: 280.20 M hits/sec, 177.19 QPS (1.27 sec for 225 queries), totHits=355809475 477.6s: points, poly 10: ITER 5: 279.10 M hits/sec, 176.49 QPS (1.27 sec for 225 queries), totHits=355809475 478.8s: points, poly 10: ITER 6: 291.46 M hits/sec, 184.31 QPS (1.22 sec for 225 queries), totHits=355809475 478.8s: points, poly 10: *** 480.0s: points, poly 10: ITER 7: 288.81 M hits/sec, 182.63 QPS (1.23 sec for 225 queries), totHits=355809475 481.3s: points, poly 10: ITER 8: 291.04 M hits/sec, 184.04 QPS (1.22 sec for 225 queries), totHits=355809475 482.5s: points, poly 10: ITER 9: 285.06 M hits/sec, 180.26 QPS (1.25 sec for 225 queries), totHits=355809475 483.8s: points, poly 10: ITER 10: 288.92 M hits/sec, 182.70 QPS (1.23 sec for 225 queries), totHits=355809475 485.0s: points, poly 10: ITER 11: 287.98 M hits/sec, 182.10 QPS (1.24 sec for 225 queries), totHits=355809475 486.2s: points, poly 10: ITER 12: 285.73 M hits/sec, 180.68 QPS (1.25 sec for 225 queries), totHits=355809475 487.5s: points, poly 10: ITER 13: 287.17 M hits/sec, 181.60 QPS (1.24 sec for 225 queries), totHits=355809475 488.7s: points, poly 10: ITER 14: 288.52 M hits/sec, 182.45 QPS (1.23 sec for 225 queries), totHits=355809475 489.9s: points, poly 10: ITER 15: 290.84 M hits/sec, 183.91 QPS (1.22 sec for 225 queries), totHits=355809475 491.2s: points, poly 10: ITER 16: 287.70 M hits/sec, 181.93 QPS (1.24 sec for 225 queries), totHits=355809475 492.4s: points, poly 10: ITER 17: 286.32 M hits/sec, 181.06 QPS (1.24 sec for 225 queries), totHits=355809475 493.6s: points, poly 10: ITER 18: 289.82 M hits/sec, 183.27 QPS (1.23 sec for 225 queries), totHits=355809475 494.9s: points, poly 10: ITER 19: 291.21 M hits/sec, 184.15 QPS (1.22 sec for 225 queries), totHits=355809475 494.9s: points, poly 10: BEST M hits/sec: 291.46173860095683 494.9s: points, poly 10: BEST QPS: 184.30900746871703 Results on 60.844404M points: ||Approach||Index time (sec)||Force merge time (sec)||Index size (GB)||Reader heap (MB)|| |geo3d|136.9s|0.0s|0.70|0.00| |points|110.6s|0.0s|0.49|0.00| |shapes|166.8s|0.0s|1.25|0.00| ||Shape||Approach||M hits/sec||QPS||Hit count|| |distance|geo3d|||| |distance|points|||| |distance|geopoint|||| |distance|shapes|||| |box|geo3d|||| |box|points|||| |box|geopoint|||| |box|shapes|||| |poly 10|geo3d|||| |poly 10|points|291.46|184.31|355809475| |poly 10|geopoint|||| |poly 10|shapes|||| |polyMedium|geo3d|2.58|31.63|2693541| |polyMedium|points|16.98|207.99|2693559| |polyMedium|geopoint|||| |polyMedium|shapes|13.14|161.02|2693559| |polyRussia|geo3d|3.79|1.08|3508671| |polyRussia|points|65.74|18.74|3508846| |polyRussia|geopoint|||| |polyRussia|shapes|44.54|12.69|3508846| |nearest 10|geo3d|||| |nearest 10|points|||| |nearest 10|geopoint|||| |nearest 10|shapes|||| |sort|geo3d|||| |sort|points|||| |sort|geopoint|||| |sort|shapes|||| RUN: java -XX:+UseParallelGC -Xmx10g -cp /l/util.nightly/src/main:test-framework/build/classes/java/main:sandbox/build/classes/java/main:codecs/build/classes/java/main:codecs/build/resources/main:core/build/classes/java/main:core/build/classes/java/main21:core/build/resources/main:sandbox/build/classes/java/main:spatial3d/build/classes/java/main perf.IndexAndSearchOpenStreetMaps -geo3d -poly 10 495.1s: geo3d, poly 10: INDEX SIZE: 0.6990031152963638 GB 495.1s: geo3d, poly 10: READER MB: 0.0 495.1s: geo3d, poly 10: maxDoc=60844404 497.0s: geo3d, poly 10: ITER 0: 190.51 M hits/sec, 120.45 QPS (1.87 sec for 225 queries), totHits=355855227 497.0s: geo3d, poly 10: *** 498.5s: geo3d, poly 10: ITER 1: 233.23 M hits/sec, 147.46 QPS (1.53 sec for 225 queries), totHits=355855227 498.5s: geo3d, poly 10: *** 500.0s: geo3d, poly 10: ITER 2: 235.81 M hits/sec, 149.10 QPS (1.51 sec for 225 queries), totHits=355855227 500.0s: geo3d, poly 10: *** 501.5s: geo3d, poly 10: ITER 3: 239.05 M hits/sec, 151.15 QPS (1.49 sec for 225 queries), totHits=355855227 501.5s: geo3d, poly 10: *** 503.1s: geo3d, poly 10: ITER 4: 230.55 M hits/sec, 145.77 QPS (1.54 sec for 225 queries), totHits=355855227 504.5s: geo3d, poly 10: ITER 5: 249.22 M hits/sec, 157.57 QPS (1.43 sec for 225 queries), totHits=355855227 504.5s: geo3d, poly 10: *** 505.9s: geo3d, poly 10: ITER 6: 248.75 M hits/sec, 157.28 QPS (1.43 sec for 225 queries), totHits=355855227 507.4s: geo3d, poly 10: ITER 7: 246.42 M hits/sec, 155.81 QPS (1.44 sec for 225 queries), totHits=355855227 508.8s: geo3d, poly 10: ITER 8: 243.68 M hits/sec, 154.08 QPS (1.46 sec for 225 queries), totHits=355855227 510.3s: geo3d, poly 10: ITER 9: 245.85 M hits/sec, 155.45 QPS (1.45 sec for 225 queries), totHits=355855227 511.7s: geo3d, poly 10: ITER 10: 243.06 M hits/sec, 153.68 QPS (1.46 sec for 225 queries), totHits=355855227 513.2s: geo3d, poly 10: ITER 11: 245.89 M hits/sec, 155.47 QPS (1.45 sec for 225 queries), totHits=355855227 514.6s: geo3d, poly 10: ITER 12: 247.28 M hits/sec, 156.35 QPS (1.44 sec for 225 queries), totHits=355855227 516.1s: geo3d, poly 10: ITER 13: 245.09 M hits/sec, 154.96 QPS (1.45 sec for 225 queries), totHits=355855227 517.5s: geo3d, poly 10: ITER 14: 243.87 M hits/sec, 154.19 QPS (1.46 sec for 225 queries), totHits=355855227 519.0s: geo3d, poly 10: ITER 15: 248.48 M hits/sec, 157.11 QPS (1.43 sec for 225 queries), totHits=355855227 520.4s: geo3d, poly 10: ITER 16: 242.25 M hits/sec, 153.17 QPS (1.47 sec for 225 queries), totHits=355855227 521.9s: geo3d, poly 10: ITER 17: 248.04 M hits/sec, 156.83 QPS (1.43 sec for 225 queries), totHits=355855227 523.3s: geo3d, poly 10: ITER 18: 243.96 M hits/sec, 154.25 QPS (1.46 sec for 225 queries), totHits=355855227 524.8s: geo3d, poly 10: ITER 19: 243.97 M hits/sec, 154.26 QPS (1.46 sec for 225 queries), totHits=355855227 524.8s: geo3d, poly 10: BEST M hits/sec: 249.216429637777 524.8s: geo3d, poly 10: BEST QPS: 157.5744640347796 Results on 60.844404M points: ||Approach||Index time (sec)||Force merge time (sec)||Index size (GB)||Reader heap (MB)|| |geo3d|136.9s|0.0s|0.70|0.00| |points|110.6s|0.0s|0.49|0.00| |shapes|166.8s|0.0s|1.25|0.00| ||Shape||Approach||M hits/sec||QPS||Hit count|| |distance|geo3d|||| |distance|points|||| |distance|geopoint|||| |distance|shapes|||| |box|geo3d|||| |box|points|||| |box|geopoint|||| |box|shapes|||| |poly 10|geo3d|249.22|157.57|355855227| |poly 10|points|291.46|184.31|355809475| |poly 10|geopoint|||| |poly 10|shapes|||| |polyMedium|geo3d|2.58|31.63|2693541| |polyMedium|points|16.98|207.99|2693559| |polyMedium|geopoint|||| |polyMedium|shapes|13.14|161.02|2693559| |polyRussia|geo3d|3.79|1.08|3508671| |polyRussia|points|65.74|18.74|3508846| |polyRussia|geopoint|||| |polyRussia|shapes|44.54|12.69|3508846| |nearest 10|geo3d|||| |nearest 10|points|||| |nearest 10|geopoint|||| |nearest 10|shapes|||| |sort|geo3d|||| |sort|points|||| |sort|geopoint|||| |sort|shapes|||| RUN: java -XX:+UseParallelGC -Xmx10g -cp /l/util.nightly/src/main:test-framework/build/classes/java/main:sandbox/build/classes/java/main:codecs/build/classes/java/main:codecs/build/resources/main:core/build/classes/java/main:core/build/classes/java/main21:core/build/resources/main:sandbox/build/classes/java/main:spatial3d/build/classes/java/main perf.IndexAndSearchOpenStreetMaps -shapes -poly 10 525.1s: shapes, poly 10: INDEX SIZE: 1.2543620793148875 GB 525.1s: shapes, poly 10: READER MB: 0.0 525.1s: shapes, poly 10: maxDoc=60844404 527.6s: shapes, poly 10: ITER 0: 143.65 M hits/sec, 90.84 QPS (2.48 sec for 225 queries), totHits=355809475 527.6s: shapes, poly 10: *** 529.7s: shapes, poly 10: ITER 1: 166.01 M hits/sec, 104.98 QPS (2.14 sec for 225 queries), totHits=355809475 529.7s: shapes, poly 10: *** 531.7s: shapes, poly 10: ITER 2: 180.97 M hits/sec, 114.44 QPS (1.97 sec for 225 queries), totHits=355809475 531.7s: shapes, poly 10: *** 533.6s: shapes, poly 10: ITER 3: 187.77 M hits/sec, 118.74 QPS (1.89 sec for 225 queries), totHits=355809475 533.6s: shapes, poly 10: *** 535.5s: shapes, poly 10: ITER 4: 188.27 M hits/sec, 119.05 QPS (1.89 sec for 225 queries), totHits=355809475 535.5s: shapes, poly 10: *** 537.3s: shapes, poly 10: ITER 5: 188.71 M hits/sec, 119.34 QPS (1.89 sec for 225 queries), totHits=355809475 537.3s: shapes, poly 10: *** 539.2s: shapes, poly 10: ITER 6: 188.35 M hits/sec, 119.11 QPS (1.89 sec for 225 queries), totHits=355809475 541.2s: shapes, poly 10: ITER 7: 185.84 M hits/sec, 117.52 QPS (1.91 sec for 225 queries), totHits=355809475 543.1s: shapes, poly 10: ITER 8: 186.92 M hits/sec, 118.20 QPS (1.90 sec for 225 queries), totHits=355809475 545.0s: shapes, poly 10: ITER 9: 185.69 M hits/sec, 117.42 QPS (1.92 sec for 225 queries), totHits=355809475 546.9s: shapes, poly 10: ITER 10: 187.79 M hits/sec, 118.75 QPS (1.89 sec for 225 queries), totHits=355809475 548.7s: shapes, poly 10: ITER 11: 189.36 M hits/sec, 119.74 QPS (1.88 sec for 225 queries), totHits=355809475 548.7s: shapes, poly 10: *** 550.6s: shapes, poly 10: ITER 12: 188.01 M hits/sec, 118.89 QPS (1.89 sec for 225 queries), totHits=355809475 552.5s: shapes, poly 10: ITER 13: 186.34 M hits/sec, 117.83 QPS (1.91 sec for 225 queries), totHits=355809475 554.5s: shapes, poly 10: ITER 14: 186.41 M hits/sec, 117.88 QPS (1.91 sec for 225 queries), totHits=355809475 556.4s: shapes, poly 10: ITER 15: 184.88 M hits/sec, 116.91 QPS (1.92 sec for 225 queries), totHits=355809475 558.3s: shapes, poly 10: ITER 16: 181.74 M hits/sec, 114.92 QPS (1.96 sec for 225 queries), totHits=355809475 560.3s: shapes, poly 10: ITER 17: 182.93 M hits/sec, 115.68 QPS (1.95 sec for 225 queries), totHits=355809475 562.3s: shapes, poly 10: ITER 18: 178.56 M hits/sec, 112.91 QPS (1.99 sec for 225 queries), totHits=355809475 564.3s: shapes, poly 10: ITER 19: 174.21 M hits/sec, 110.16 QPS (2.04 sec for 225 queries), totHits=355809475 564.3s: shapes, poly 10: BEST M hits/sec: 189.35625781427333 564.3s: shapes, poly 10: BEST QPS: 119.74149369746688 Results on 60.844404M points: ||Approach||Index time (sec)||Force merge time (sec)||Index size (GB)||Reader heap (MB)|| |geo3d|136.9s|0.0s|0.70|0.00| |points|110.6s|0.0s|0.49|0.00| |shapes|166.8s|0.0s|1.25|0.00| ||Shape||Approach||M hits/sec||QPS||Hit count|| |distance|geo3d|||| |distance|points|||| |distance|geopoint|||| |distance|shapes|||| |box|geo3d|||| |box|points|||| |box|geopoint|||| |box|shapes|||| |poly 10|geo3d|249.22|157.57|355855227| |poly 10|points|291.46|184.31|355809475| |poly 10|geopoint|||| |poly 10|shapes|189.36|119.74|355809475| |polyMedium|geo3d|2.58|31.63|2693541| |polyMedium|points|16.98|207.99|2693559| |polyMedium|geopoint|||| |polyMedium|shapes|13.14|161.02|2693559| |polyRussia|geo3d|3.79|1.08|3508671| |polyRussia|points|65.74|18.74|3508846| |polyRussia|geopoint|||| |polyRussia|shapes|44.54|12.69|3508846| |nearest 10|geo3d|||| |nearest 10|points|||| |nearest 10|geopoint|||| |nearest 10|shapes|||| |sort|geo3d|||| |sort|points|||| |sort|geopoint|||| |sort|shapes|||| RUN: java -XX:+UseParallelGC -Xmx10g -cp /l/util.nightly/src/main:test-framework/build/classes/java/main:sandbox/build/classes/java/main:codecs/build/classes/java/main:codecs/build/resources/main:core/build/classes/java/main:core/build/classes/java/main21:core/build/resources/main:sandbox/build/classes/java/main:spatial3d/build/classes/java/main perf.IndexAndSearchOpenStreetMaps -points -nearest 10 564.6s: points, nearest 10: INDEX SIZE: 0.4939169967547059 GB 564.6s: points, nearest 10: READER MB: 0.0 564.6s: points, nearest 10: maxDoc=60844404 564.7s: points, nearest 10: ITER 0: 1397.96 QPS (0.16 sec for 225 queries), totNearestDistance=230090.4395279290, totHits=60844404 564.7s: points, nearest 10: *** 564.8s: points, nearest 10: ITER 1: 2615.46 QPS (0.09 sec for 225 queries), totNearestDistance=230090.4395279290, totHits=60844404 564.8s: points, nearest 10: *** 564.9s: points, nearest 10: ITER 2: 2740.08 QPS (0.08 sec for 225 queries), totNearestDistance=230090.4395279290, totHits=60844404 564.9s: points, nearest 10: *** 565.0s: points, nearest 10: ITER 3: 2750.67 QPS (0.08 sec for 225 queries), totNearestDistance=230090.4395279290, totHits=60844404 565.0s: points, nearest 10: *** 565.1s: points, nearest 10: ITER 4: 2800.76 QPS (0.08 sec for 225 queries), totNearestDistance=230090.4395279290, totHits=60844404 565.1s: points, nearest 10: *** 565.2s: points, nearest 10: ITER 5: 2728.73 QPS (0.08 sec for 225 queries), totNearestDistance=230090.4395279290, totHits=60844404 565.2s: points, nearest 10: ITER 6: 2583.25 QPS (0.09 sec for 225 queries), totNearestDistance=230090.4395279290, totHits=60844404 565.3s: points, nearest 10: ITER 7: 2927.86 QPS (0.08 sec for 225 queries), totNearestDistance=230090.4395279290, totHits=60844404 565.3s: points, nearest 10: *** 565.4s: points, nearest 10: ITER 8: 3163.55 QPS (0.07 sec for 225 queries), totNearestDistance=230090.4395279290, totHits=60844404 565.4s: points, nearest 10: *** 565.5s: points, nearest 10: ITER 9: 3266.04 QPS (0.07 sec for 225 queries), totNearestDistance=230090.4395279290, totHits=60844404 565.5s: points, nearest 10: *** 565.5s: points, nearest 10: ITER 10: 3267.63 QPS (0.07 sec for 225 queries), totNearestDistance=230090.4395279290, totHits=60844404 565.5s: points, nearest 10: *** 565.6s: points, nearest 10: ITER 11: 3267.20 QPS (0.07 sec for 225 queries), totNearestDistance=230090.4395279290, totHits=60844404 565.7s: points, nearest 10: ITER 12: 3272.55 QPS (0.07 sec for 225 queries), totNearestDistance=230090.4395279290, totHits=60844404 565.7s: points, nearest 10: *** 565.7s: points, nearest 10: ITER 13: 3226.72 QPS (0.07 sec for 225 queries), totNearestDistance=230090.4395279290, totHits=60844404 565.8s: points, nearest 10: ITER 14: 3072.43 QPS (0.07 sec for 225 queries), totNearestDistance=230090.4395279290, totHits=60844404 565.9s: points, nearest 10: ITER 15: 3266.93 QPS (0.07 sec for 225 queries), totNearestDistance=230090.4395279290, totHits=60844404 565.9s: points, nearest 10: ITER 16: 3268.14 QPS (0.07 sec for 225 queries), totNearestDistance=230090.4395279290, totHits=60844404 566.0s: points, nearest 10: ITER 17: 3281.17 QPS (0.07 sec for 225 queries), totNearestDistance=230090.4395279290, totHits=60844404 566.0s: points, nearest 10: *** 566.1s: points, nearest 10: ITER 18: 3278.78 QPS (0.07 sec for 225 queries), totNearestDistance=230090.4395279290, totHits=60844404 566.2s: points, nearest 10: ITER 19: 3281.20 QPS (0.07 sec for 225 queries), totNearestDistance=230090.4395279290, totHits=60844404 566.2s: points, nearest 10: *** 566.2s: points, nearest 10: BEST M hits/sec: 0.03281197869968841 566.2s: points, nearest 10: BEST QPS: 3281.197869968841 Results on 60.844404M points: ||Approach||Index time (sec)||Force merge time (sec)||Index size (GB)||Reader heap (MB)|| |geo3d|136.9s|0.0s|0.70|0.00| |points|110.6s|0.0s|0.49|0.00| |shapes|166.8s|0.0s|1.25|0.00| ||Shape||Approach||M hits/sec||QPS||Hit count|| |distance|geo3d|||| |distance|points|||| |distance|geopoint|||| |distance|shapes|||| |box|geo3d|||| |box|points|||| |box|geopoint|||| |box|shapes|||| |poly 10|geo3d|249.22|157.57|355855227| |poly 10|points|291.46|184.31|355809475| |poly 10|geopoint|||| |poly 10|shapes|189.36|119.74|355809475| |polyMedium|geo3d|2.58|31.63|2693541| |polyMedium|points|16.98|207.99|2693559| |polyMedium|geopoint|||| |polyMedium|shapes|13.14|161.02|2693559| |polyRussia|geo3d|3.79|1.08|3508671| |polyRussia|points|65.74|18.74|3508846| |polyRussia|geopoint|||| |polyRussia|shapes|44.54|12.69|3508846| |nearest 10|geo3d|||| |nearest 10|points|0.03|3281.20|60844404| |nearest 10|geopoint|||| |nearest 10|shapes|||| |sort|geo3d|||| |sort|points|||| |sort|geopoint|||| |sort|shapes|||| RUN: java -XX:+UseParallelGC -Xmx10g -cp /l/util.nightly/src/main:test-framework/build/classes/java/main:sandbox/build/classes/java/main:codecs/build/classes/java/main:codecs/build/resources/main:core/build/classes/java/main:core/build/classes/java/main21:core/build/resources/main:sandbox/build/classes/java/main:spatial3d/build/classes/java/main perf.IndexAndSearchOpenStreetMaps -points -sort -box -reindex 567.8s: points, sort: 1000000... 569.8s: points, sort: 2000000... 571.3s: points, sort: 3000000... 572.7s: points, sort: 4000000... 574.2s: points, sort: 5000000... 575.6s: points, sort: 6000000... 577.0s: points, sort: 7000000... 578.4s: points, sort: 8000000... 579.9s: points, sort: 9000000... 581.3s: points, sort: 10000000... 589.0s: points, sort: 11000000... 589.9s: points, sort: 12000000... 591.3s: points, sort: 13000000... 592.8s: points, sort: 14000000... 594.2s: points, sort: 15000000... 595.6s: points, sort: 16000000... 597.1s: points, sort: 17000000... 598.5s: points, sort: 18000000... 600.0s: points, sort: 19000000... 601.4s: points, sort: 20000000... 602.8s: points, sort: 21000000... 610.4s: points, sort: 22000000... 611.3s: points, sort: 23000000... 612.7s: points, sort: 24000000... 614.2s: points, sort: 25000000... 615.6s: points, sort: 26000000... 617.0s: points, sort: 27000000... 618.4s: points, sort: 28000000... 619.9s: points, sort: 29000000... 621.3s: points, sort: 30000000... 622.7s: points, sort: 31000000... 624.1s: points, sort: 32000000... 631.7s: points, sort: 33000000... 633.1s: points, sort: 34000000... 634.0s: points, sort: 35000000... 635.4s: points, sort: 36000000... 636.8s: points, sort: 37000000... 638.2s: points, sort: 38000000... 639.6s: points, sort: 39000000... 641.0s: points, sort: 40000000... 642.4s: points, sort: 41000000... 643.8s: points, sort: 42000000... 645.2s: points, sort: 43000000... 652.7s: points, sort: 44000000... 654.1s: points, sort: 45000000... 655.1s: points, sort: 46000000... 656.5s: points, sort: 47000000... 657.9s: points, sort: 48000000... 659.3s: points, sort: 49000000... 660.7s: points, sort: 50000000... 662.1s: points, sort: 51000000... 663.5s: points, sort: 52000000... 664.9s: points, sort: 53000000... 666.3s: points, sort: 54000000... 673.8s: points, sort: 55000000... 675.2s: points, sort: 56000000... 676.2s: points, sort: 57000000... 677.6s: points, sort: 58000000... 679.0s: points, sort: 59000000... 680.4s: points, sort: 60000000... 684.9s: points, sort: 118.657046889 sec to index part 0 684.9s: points, sort: INDEX SIZE: 0.9472499107941985 GB 684.9s: points, sort: READER MB: 0.0 684.9s: points, sort: maxDoc=60844404 687.3s: points, sort: ITER 0: 126.40 M hits/sec, 128.62 QPS (1.75 sec for 225 queries), totHits=221118844 687.3s: points, sort: *** 689.5s: points, sort: ITER 1: 146.95 M hits/sec, 149.53 QPS (1.50 sec for 225 queries), totHits=221118844 689.5s: points, sort: *** 691.6s: points, sort: ITER 2: 150.90 M hits/sec, 153.55 QPS (1.47 sec for 225 queries), totHits=221118844 691.6s: points, sort: *** 693.8s: points, sort: ITER 3: 151.56 M hits/sec, 154.22 QPS (1.46 sec for 225 queries), totHits=221118844 693.8s: points, sort: *** 695.9s: points, sort: ITER 4: 151.12 M hits/sec, 153.77 QPS (1.46 sec for 225 queries), totHits=221118844 698.0s: points, sort: ITER 5: 152.37 M hits/sec, 155.04 QPS (1.45 sec for 225 queries), totHits=221118844 698.0s: points, sort: *** 700.1s: points, sort: ITER 6: 152.53 M hits/sec, 155.21 QPS (1.45 sec for 225 queries), totHits=221118844 700.1s: points, sort: *** 702.2s: points, sort: ITER 7: 151.84 M hits/sec, 154.50 QPS (1.46 sec for 225 queries), totHits=221118844 704.3s: points, sort: ITER 8: 152.52 M hits/sec, 155.20 QPS (1.45 sec for 225 queries), totHits=221118844 706.5s: points, sort: ITER 9: 151.35 M hits/sec, 154.01 QPS (1.46 sec for 225 queries), totHits=221118844 708.6s: points, sort: ITER 10: 150.19 M hits/sec, 152.82 QPS (1.47 sec for 225 queries), totHits=221118844 710.8s: points, sort: ITER 11: 150.80 M hits/sec, 153.45 QPS (1.47 sec for 225 queries), totHits=221118844 713.0s: points, sort: ITER 12: 147.01 M hits/sec, 149.59 QPS (1.50 sec for 225 queries), totHits=221118844 715.2s: points, sort: ITER 13: 147.17 M hits/sec, 149.76 QPS (1.50 sec for 225 queries), totHits=221118844 717.3s: points, sort: ITER 14: 146.74 M hits/sec, 149.32 QPS (1.51 sec for 225 queries), totHits=221118844 719.5s: points, sort: ITER 15: 149.64 M hits/sec, 152.27 QPS (1.48 sec for 225 queries), totHits=221118844 721.7s: points, sort: ITER 16: 147.49 M hits/sec, 150.08 QPS (1.50 sec for 225 queries), totHits=221118844 723.9s: points, sort: ITER 17: 148.51 M hits/sec, 151.12 QPS (1.49 sec for 225 queries), totHits=221118844 726.1s: points, sort: ITER 18: 147.41 M hits/sec, 150.00 QPS (1.50 sec for 225 queries), totHits=221118844 728.3s: points, sort: ITER 19: 146.28 M hits/sec, 148.85 QPS (1.51 sec for 225 queries), totHits=221118844 728.3s: points, sort: BEST M hits/sec: 152.5300128288331 728.3s: points, sort: BEST QPS: 155.20727345376065 Results on 60.844404M points: ||Approach||Index time (sec)||Force merge time (sec)||Index size (GB)||Reader heap (MB)|| |geo3d|136.9s|0.0s|0.70|0.00| |points|110.6s|0.0s|0.49|0.00| |shapes|166.8s|0.0s|1.25|0.00| ||Shape||Approach||M hits/sec||QPS||Hit count|| |distance|geo3d|||| |distance|points|||| |distance|geopoint|||| |distance|shapes|||| |box|geo3d|||| |box|points|||| |box|geopoint|||| |box|shapes|||| |poly 10|geo3d|249.22|157.57|355855227| |poly 10|points|291.46|184.31|355809475| |poly 10|geopoint|||| |poly 10|shapes|189.36|119.74|355809475| |polyMedium|geo3d|2.58|31.63|2693541| |polyMedium|points|16.98|207.99|2693559| |polyMedium|geopoint|||| |polyMedium|shapes|13.14|161.02|2693559| |polyRussia|geo3d|3.79|1.08|3508671| |polyRussia|points|65.74|18.74|3508846| |polyRussia|geopoint|||| |polyRussia|shapes|44.54|12.69|3508846| |nearest 10|geo3d|||| |nearest 10|points|0.03|3281.20|60844404| |nearest 10|geopoint|||| |nearest 10|shapes|||| |sort|geo3d|||| |sort|points|152.53|155.21|221118844| |sort|geopoint|||| |sort|shapes|||| RUN: java -XX:+UseParallelGC -Xmx10g -cp /l/util.nightly/src/main:test-framework/build/classes/java/main:sandbox/build/classes/java/main:codecs/build/classes/java/main:codecs/build/resources/main:core/build/classes/java/main:core/build/classes/java/main21:core/build/resources/main:sandbox/build/classes/java/main:spatial3d/build/classes/java/main perf.IndexAndSearchOpenStreetMaps -points -distance 728.5s: points, distance: INDEX SIZE: 0.4939169967547059 GB 728.5s: points, distance: READER MB: 0.0 728.5s: points, distance: maxDoc=60844404 730.6s: points, distance: ITER 0: 188.36 M hits/sec, 110.67 QPS (2.03 sec for 225 queries), totHits=382961957 730.6s: points, distance: *** 732.2s: points, distance: ITER 1: 243.35 M hits/sec, 142.97 QPS (1.57 sec for 225 queries), totHits=382961957 732.2s: points, distance: *** 733.3s: points, distance: ITER 2: 324.10 M hits/sec, 190.42 QPS (1.18 sec for 225 queries), totHits=382961957 733.3s: points, distance: *** 734.6s: points, distance: ITER 3: 311.45 M hits/sec, 182.98 QPS (1.23 sec for 225 queries), totHits=382961957 735.7s: points, distance: ITER 4: 326.02 M hits/sec, 191.55 QPS (1.17 sec for 225 queries), totHits=382961957 735.7s: points, distance: *** 736.9s: points, distance: ITER 5: 335.11 M hits/sec, 196.89 QPS (1.14 sec for 225 queries), totHits=382961957 736.9s: points, distance: *** 738.0s: points, distance: ITER 6: 329.68 M hits/sec, 193.70 QPS (1.16 sec for 225 queries), totHits=382961957 739.2s: points, distance: ITER 7: 335.03 M hits/sec, 196.84 QPS (1.14 sec for 225 queries), totHits=382961957 740.4s: points, distance: ITER 8: 328.44 M hits/sec, 192.97 QPS (1.17 sec for 225 queries), totHits=382961957 741.5s: points, distance: ITER 9: 331.06 M hits/sec, 194.51 QPS (1.16 sec for 225 queries), totHits=382961957 742.7s: points, distance: ITER 10: 328.22 M hits/sec, 192.84 QPS (1.17 sec for 225 queries), totHits=382961957 743.8s: points, distance: ITER 11: 329.40 M hits/sec, 193.53 QPS (1.16 sec for 225 queries), totHits=382961957 745.0s: points, distance: ITER 12: 322.33 M hits/sec, 189.38 QPS (1.19 sec for 225 queries), totHits=382961957 746.2s: points, distance: ITER 13: 321.66 M hits/sec, 188.98 QPS (1.19 sec for 225 queries), totHits=382961957 747.4s: points, distance: ITER 14: 325.42 M hits/sec, 191.19 QPS (1.18 sec for 225 queries), totHits=382961957 748.6s: points, distance: ITER 15: 320.19 M hits/sec, 188.12 QPS (1.20 sec for 225 queries), totHits=382961957 749.8s: points, distance: ITER 16: 322.20 M hits/sec, 189.30 QPS (1.19 sec for 225 queries), totHits=382961957 751.0s: points, distance: ITER 17: 324.44 M hits/sec, 190.62 QPS (1.18 sec for 225 queries), totHits=382961957 752.1s: points, distance: ITER 18: 323.41 M hits/sec, 190.01 QPS (1.18 sec for 225 queries), totHits=382961957 753.3s: points, distance: ITER 19: 324.53 M hits/sec, 190.67 QPS (1.18 sec for 225 queries), totHits=382961957 753.3s: points, distance: BEST M hits/sec: 335.1099075863198 753.3s: points, distance: BEST QPS: 196.88569015465407 Results on 60.844404M points: ||Approach||Index time (sec)||Force merge time (sec)||Index size (GB)||Reader heap (MB)|| |geo3d|136.9s|0.0s|0.70|0.00| |points|110.6s|0.0s|0.49|0.00| |shapes|166.8s|0.0s|1.25|0.00| ||Shape||Approach||M hits/sec||QPS||Hit count|| |distance|geo3d|||| |distance|points|335.11|196.89|382961957| |distance|geopoint|||| |distance|shapes|||| |box|geo3d|||| |box|points|||| |box|geopoint|||| |box|shapes|||| |poly 10|geo3d|249.22|157.57|355855227| |poly 10|points|291.46|184.31|355809475| |poly 10|geopoint|||| |poly 10|shapes|189.36|119.74|355809475| |polyMedium|geo3d|2.58|31.63|2693541| |polyMedium|points|16.98|207.99|2693559| |polyMedium|geopoint|||| |polyMedium|shapes|13.14|161.02|2693559| |polyRussia|geo3d|3.79|1.08|3508671| |polyRussia|points|65.74|18.74|3508846| |polyRussia|geopoint|||| |polyRussia|shapes|44.54|12.69|3508846| |nearest 10|geo3d|||| |nearest 10|points|0.03|3281.20|60844404| |nearest 10|geopoint|||| |nearest 10|shapes|||| |sort|geo3d|||| |sort|points|152.53|155.21|221118844| |sort|geopoint|||| |sort|shapes|||| RUN: java -XX:+UseParallelGC -Xmx10g -cp /l/util.nightly/src/main:test-framework/build/classes/java/main:sandbox/build/classes/java/main:codecs/build/classes/java/main:codecs/build/resources/main:core/build/classes/java/main:core/build/classes/java/main21:core/build/resources/main:sandbox/build/classes/java/main:spatial3d/build/classes/java/main perf.IndexAndSearchOpenStreetMaps -geo3d -distance 753.6s: geo3d, distance: INDEX SIZE: 0.6990031152963638 GB 753.6s: geo3d, distance: READER MB: 0.0 753.6s: geo3d, distance: maxDoc=60844404 755.2s: geo3d, distance: ITER 0: 241.47 M hits/sec, 141.72 QPS (1.59 sec for 225 queries), totHits=383371904 755.2s: geo3d, distance: *** 756.4s: geo3d, distance: ITER 1: 300.52 M hits/sec, 176.38 QPS (1.28 sec for 225 queries), totHits=383371904 756.4s: geo3d, distance: *** 757.7s: geo3d, distance: ITER 2: 304.85 M hits/sec, 178.92 QPS (1.26 sec for 225 queries), totHits=383371904 757.7s: geo3d, distance: *** 759.0s: geo3d, distance: ITER 3: 305.03 M hits/sec, 179.02 QPS (1.26 sec for 225 queries), totHits=383371904 759.0s: geo3d, distance: *** 760.3s: geo3d, distance: ITER 4: 289.37 M hits/sec, 169.83 QPS (1.32 sec for 225 queries), totHits=383371904 761.5s: geo3d, distance: ITER 5: 305.52 M hits/sec, 179.31 QPS (1.25 sec for 225 queries), totHits=383371904 761.5s: geo3d, distance: *** 762.7s: geo3d, distance: ITER 6: 321.59 M hits/sec, 188.74 QPS (1.19 sec for 225 queries), totHits=383371904 762.7s: geo3d, distance: *** 763.9s: geo3d, distance: ITER 7: 322.00 M hits/sec, 188.98 QPS (1.19 sec for 225 queries), totHits=383371904 763.9s: geo3d, distance: *** 765.1s: geo3d, distance: ITER 8: 318.19 M hits/sec, 186.74 QPS (1.20 sec for 225 queries), totHits=383371904 766.3s: geo3d, distance: ITER 9: 322.60 M hits/sec, 189.34 QPS (1.19 sec for 225 queries), totHits=383371904 766.3s: geo3d, distance: *** 767.5s: geo3d, distance: ITER 10: 315.52 M hits/sec, 185.18 QPS (1.22 sec for 225 queries), totHits=383371904 768.7s: geo3d, distance: ITER 11: 314.92 M hits/sec, 184.82 QPS (1.22 sec for 225 queries), totHits=383371904 770.0s: geo3d, distance: ITER 12: 313.88 M hits/sec, 184.22 QPS (1.22 sec for 225 queries), totHits=383371904 771.2s: geo3d, distance: ITER 13: 310.27 M hits/sec, 182.10 QPS (1.24 sec for 225 queries), totHits=383371904 772.4s: geo3d, distance: ITER 14: 316.51 M hits/sec, 185.76 QPS (1.21 sec for 225 queries), totHits=383371904 773.6s: geo3d, distance: ITER 15: 313.95 M hits/sec, 184.26 QPS (1.22 sec for 225 queries), totHits=383371904 774.9s: geo3d, distance: ITER 16: 312.37 M hits/sec, 183.33 QPS (1.23 sec for 225 queries), totHits=383371904 776.1s: geo3d, distance: ITER 17: 307.94 M hits/sec, 180.73 QPS (1.24 sec for 225 queries), totHits=383371904 777.3s: geo3d, distance: ITER 18: 310.27 M hits/sec, 182.10 QPS (1.24 sec for 225 queries), totHits=383371904 778.6s: geo3d, distance: ITER 19: 313.61 M hits/sec, 184.06 QPS (1.22 sec for 225 queries), totHits=383371904 778.6s: geo3d, distance: BEST M hits/sec: 322.6039154753631 778.6s: geo3d, distance: BEST QPS: 189.3354213613857 Results on 60.844404M points: ||Approach||Index time (sec)||Force merge time (sec)||Index size (GB)||Reader heap (MB)|| |geo3d|136.9s|0.0s|0.70|0.00| |points|110.6s|0.0s|0.49|0.00| |shapes|166.8s|0.0s|1.25|0.00| ||Shape||Approach||M hits/sec||QPS||Hit count|| |distance|geo3d|322.60|189.34|383371904| |distance|points|335.11|196.89|382961957| |distance|geopoint|||| |distance|shapes|||| |box|geo3d|||| |box|points|||| |box|geopoint|||| |box|shapes|||| |poly 10|geo3d|249.22|157.57|355855227| |poly 10|points|291.46|184.31|355809475| |poly 10|geopoint|||| |poly 10|shapes|189.36|119.74|355809475| |polyMedium|geo3d|2.58|31.63|2693541| |polyMedium|points|16.98|207.99|2693559| |polyMedium|geopoint|||| |polyMedium|shapes|13.14|161.02|2693559| |polyRussia|geo3d|3.79|1.08|3508671| |polyRussia|points|65.74|18.74|3508846| |polyRussia|geopoint|||| |polyRussia|shapes|44.54|12.69|3508846| |nearest 10|geo3d|||| |nearest 10|points|0.03|3281.20|60844404| |nearest 10|geopoint|||| |nearest 10|shapes|||| |sort|geo3d|||| |sort|points|152.53|155.21|221118844| |sort|geopoint|||| |sort|shapes|||| RUN: java -XX:+UseParallelGC -Xmx10g -cp /l/util.nightly/src/main:test-framework/build/classes/java/main:sandbox/build/classes/java/main:codecs/build/classes/java/main:codecs/build/resources/main:core/build/classes/java/main:core/build/classes/java/main21:core/build/resources/main:sandbox/build/classes/java/main:spatial3d/build/classes/java/main perf.IndexAndSearchOpenStreetMaps -shapes -distance 778.8s: shapes, distance: INDEX SIZE: 1.2543620793148875 GB 778.8s: shapes, distance: READER MB: 0.0 778.8s: shapes, distance: maxDoc=60844404 781.2s: shapes, distance: ITER 0: 158.50 M hits/sec, 93.12 QPS (2.42 sec for 225 queries), totHits=382961957 781.2s: shapes, distance: *** 783.3s: shapes, distance: ITER 1: 189.02 M hits/sec, 111.05 QPS (2.03 sec for 225 queries), totHits=382961957 783.3s: shapes, distance: *** 785.0s: shapes, distance: ITER 2: 216.97 M hits/sec, 127.48 QPS (1.77 sec for 225 queries), totHits=382961957 785.0s: shapes, distance: *** 786.8s: shapes, distance: ITER 3: 218.47 M hits/sec, 128.35 QPS (1.75 sec for 225 queries), totHits=382961957 786.8s: shapes, distance: *** 788.5s: shapes, distance: ITER 4: 223.93 M hits/sec, 131.56 QPS (1.71 sec for 225 queries), totHits=382961957 788.5s: shapes, distance: *** 790.2s: shapes, distance: ITER 5: 225.07 M hits/sec, 132.23 QPS (1.70 sec for 225 queries), totHits=382961957 790.2s: shapes, distance: *** 791.9s: shapes, distance: ITER 6: 222.49 M hits/sec, 130.72 QPS (1.72 sec for 225 queries), totHits=382961957 793.7s: shapes, distance: ITER 7: 220.68 M hits/sec, 129.66 QPS (1.74 sec for 225 queries), totHits=382961957 795.4s: shapes, distance: ITER 8: 221.61 M hits/sec, 130.20 QPS (1.73 sec for 225 queries), totHits=382961957 797.1s: shapes, distance: ITER 9: 220.83 M hits/sec, 129.74 QPS (1.73 sec for 225 queries), totHits=382961957 798.9s: shapes, distance: ITER 10: 220.87 M hits/sec, 129.77 QPS (1.73 sec for 225 queries), totHits=382961957 800.6s: shapes, distance: ITER 11: 220.28 M hits/sec, 129.42 QPS (1.74 sec for 225 queries), totHits=382961957 802.3s: shapes, distance: ITER 12: 220.83 M hits/sec, 129.74 QPS (1.73 sec for 225 queries), totHits=382961957 804.1s: shapes, distance: ITER 13: 221.25 M hits/sec, 129.99 QPS (1.73 sec for 225 queries), totHits=382961957 805.8s: shapes, distance: ITER 14: 221.98 M hits/sec, 130.42 QPS (1.73 sec for 225 queries), totHits=382961957 807.5s: shapes, distance: ITER 15: 221.64 M hits/sec, 130.22 QPS (1.73 sec for 225 queries), totHits=382961957 809.2s: shapes, distance: ITER 16: 219.96 M hits/sec, 129.23 QPS (1.74 sec for 225 queries), totHits=382961957 811.0s: shapes, distance: ITER 17: 220.31 M hits/sec, 129.44 QPS (1.74 sec for 225 queries), totHits=382961957 812.7s: shapes, distance: ITER 18: 218.97 M hits/sec, 128.65 QPS (1.75 sec for 225 queries), totHits=382961957 814.5s: shapes, distance: ITER 19: 223.49 M hits/sec, 131.31 QPS (1.71 sec for 225 queries), totHits=382961957 814.5s: shapes, distance: BEST M hits/sec: 225.06727267894655 814.5s: shapes, distance: BEST QPS: 132.23281171179877 Results on 60.844404M points: ||Approach||Index time (sec)||Force merge time (sec)||Index size (GB)||Reader heap (MB)|| |geo3d|136.9s|0.0s|0.70|0.00| |points|110.6s|0.0s|0.49|0.00| |shapes|166.8s|0.0s|1.25|0.00| ||Shape||Approach||M hits/sec||QPS||Hit count|| |distance|geo3d|322.60|189.34|383371904| |distance|points|335.11|196.89|382961957| |distance|geopoint|||| |distance|shapes|225.07|132.23|382961957| |box|geo3d|||| |box|points|||| |box|geopoint|||| |box|shapes|||| |poly 10|geo3d|249.22|157.57|355855227| |poly 10|points|291.46|184.31|355809475| |poly 10|geopoint|||| |poly 10|shapes|189.36|119.74|355809475| |polyMedium|geo3d|2.58|31.63|2693541| |polyMedium|points|16.98|207.99|2693559| |polyMedium|geopoint|||| |polyMedium|shapes|13.14|161.02|2693559| |polyRussia|geo3d|3.79|1.08|3508671| |polyRussia|points|65.74|18.74|3508846| |polyRussia|geopoint|||| |polyRussia|shapes|44.54|12.69|3508846| |nearest 10|geo3d|||| |nearest 10|points|0.03|3281.20|60844404| |nearest 10|geopoint|||| |nearest 10|shapes|||| |sort|geo3d|||| |sort|points|152.53|155.21|221118844| |sort|geopoint|||| |sort|shapes|||| RUN: java -XX:+UseParallelGC -Xmx10g -cp /l/util.nightly/src/main:test-framework/build/classes/java/main:sandbox/build/classes/java/main:codecs/build/classes/java/main:codecs/build/resources/main:core/build/classes/java/main:core/build/classes/java/main21:core/build/resources/main:sandbox/build/classes/java/main:spatial3d/build/classes/java/main perf.IndexAndSearchOpenStreetMaps -points -box 814.7s: points, box: INDEX SIZE: 0.4939169967547059 GB 814.7s: points, box: READER MB: 0.0 814.7s: points, box: maxDoc=60844404 815.6s: points, box: ITER 0: 257.09 M hits/sec, 261.61 QPS (0.86 sec for 225 queries), totHits=221118844 815.6s: points, box: *** 816.1s: points, box: ITER 1: 410.26 M hits/sec, 417.46 QPS (0.54 sec for 225 queries), totHits=221118844 816.1s: points, box: *** 816.7s: points, box: ITER 2: 395.02 M hits/sec, 401.95 QPS (0.56 sec for 225 queries), totHits=221118844 817.2s: points, box: ITER 3: 397.57 M hits/sec, 404.55 QPS (0.56 sec for 225 queries), totHits=221118844 817.8s: points, box: ITER 4: 398.52 M hits/sec, 405.52 QPS (0.55 sec for 225 queries), totHits=221118844 818.3s: points, box: ITER 5: 388.37 M hits/sec, 395.19 QPS (0.57 sec for 225 queries), totHits=221118844 818.9s: points, box: ITER 6: 412.94 M hits/sec, 420.19 QPS (0.54 sec for 225 queries), totHits=221118844 818.9s: points, box: *** 819.5s: points, box: ITER 7: 374.96 M hits/sec, 381.54 QPS (0.59 sec for 225 queries), totHits=221118844 820.1s: points, box: ITER 8: 343.99 M hits/sec, 350.03 QPS (0.64 sec for 225 queries), totHits=221118844 820.7s: points, box: ITER 9: 391.76 M hits/sec, 398.64 QPS (0.56 sec for 225 queries), totHits=221118844 821.2s: points, box: ITER 10: 419.73 M hits/sec, 427.10 QPS (0.53 sec for 225 queries), totHits=221118844 821.2s: points, box: *** 821.7s: points, box: ITER 11: 428.35 M hits/sec, 435.87 QPS (0.52 sec for 225 queries), totHits=221118844 821.7s: points, box: *** 822.2s: points, box: ITER 12: 431.60 M hits/sec, 439.17 QPS (0.51 sec for 225 queries), totHits=221118844 822.2s: points, box: *** 822.7s: points, box: ITER 13: 434.36 M hits/sec, 441.99 QPS (0.51 sec for 225 queries), totHits=221118844 822.7s: points, box: *** 823.3s: points, box: ITER 14: 429.29 M hits/sec, 436.82 QPS (0.52 sec for 225 queries), totHits=221118844 823.8s: points, box: ITER 15: 419.87 M hits/sec, 427.24 QPS (0.53 sec for 225 queries), totHits=221118844 824.3s: points, box: ITER 16: 411.10 M hits/sec, 418.31 QPS (0.54 sec for 225 queries), totHits=221118844 824.9s: points, box: ITER 17: 416.46 M hits/sec, 423.77 QPS (0.53 sec for 225 queries), totHits=221118844 825.4s: points, box: ITER 18: 422.55 M hits/sec, 429.97 QPS (0.52 sec for 225 queries), totHits=221118844 825.9s: points, box: ITER 19: 421.51 M hits/sec, 428.91 QPS (0.52 sec for 225 queries), totHits=221118844 825.9s: points, box: BEST M hits/sec: 434.36444498162314 825.9s: points, box: BEST QPS: 441.98856304108216 Results on 60.844404M points: ||Approach||Index time (sec)||Force merge time (sec)||Index size (GB)||Reader heap (MB)|| |geo3d|136.9s|0.0s|0.70|0.00| |points|110.6s|0.0s|0.49|0.00| |shapes|166.8s|0.0s|1.25|0.00| ||Shape||Approach||M hits/sec||QPS||Hit count|| |distance|geo3d|322.60|189.34|383371904| |distance|points|335.11|196.89|382961957| |distance|geopoint|||| |distance|shapes|225.07|132.23|382961957| |box|geo3d|||| |box|points|434.36|441.99|221118844| |box|geopoint|||| |box|shapes|||| |poly 10|geo3d|249.22|157.57|355855227| |poly 10|points|291.46|184.31|355809475| |poly 10|geopoint|||| |poly 10|shapes|189.36|119.74|355809475| |polyMedium|geo3d|2.58|31.63|2693541| |polyMedium|points|16.98|207.99|2693559| |polyMedium|geopoint|||| |polyMedium|shapes|13.14|161.02|2693559| |polyRussia|geo3d|3.79|1.08|3508671| |polyRussia|points|65.74|18.74|3508846| |polyRussia|geopoint|||| |polyRussia|shapes|44.54|12.69|3508846| |nearest 10|geo3d|||| |nearest 10|points|0.03|3281.20|60844404| |nearest 10|geopoint|||| |nearest 10|shapes|||| |sort|geo3d|||| |sort|points|152.53|155.21|221118844| |sort|geopoint|||| |sort|shapes|||| RUN: java -XX:+UseParallelGC -Xmx10g -cp /l/util.nightly/src/main:test-framework/build/classes/java/main:sandbox/build/classes/java/main:codecs/build/classes/java/main:codecs/build/resources/main:core/build/classes/java/main:core/build/classes/java/main21:core/build/resources/main:sandbox/build/classes/java/main:spatial3d/build/classes/java/main perf.IndexAndSearchOpenStreetMaps -geo3d -box 826.2s: geo3d, box: INDEX SIZE: 0.6990031152963638 GB 826.2s: geo3d, box: READER MB: 0.0 826.2s: geo3d, box: maxDoc=60844404 827.5s: geo3d, box: ITER 0: 171.44 M hits/sec, 174.45 QPS (1.29 sec for 225 queries), totHits=221118844 827.5s: geo3d, box: *** 828.4s: geo3d, box: ITER 1: 230.83 M hits/sec, 234.88 QPS (0.96 sec for 225 queries), totHits=221118844 828.4s: geo3d, box: *** 829.4s: geo3d, box: ITER 2: 241.27 M hits/sec, 245.51 QPS (0.92 sec for 225 queries), totHits=221118844 829.4s: geo3d, box: *** 830.3s: geo3d, box: ITER 3: 227.30 M hits/sec, 231.29 QPS (0.97 sec for 225 queries), totHits=221118844 831.4s: geo3d, box: ITER 4: 215.35 M hits/sec, 219.13 QPS (1.03 sec for 225 queries), totHits=221118844 832.3s: geo3d, box: ITER 5: 236.13 M hits/sec, 240.27 QPS (0.94 sec for 225 queries), totHits=221118844 833.2s: geo3d, box: ITER 6: 241.29 M hits/sec, 245.52 QPS (0.92 sec for 225 queries), totHits=221118844 833.2s: geo3d, box: *** 834.1s: geo3d, box: ITER 7: 247.58 M hits/sec, 251.93 QPS (0.89 sec for 225 queries), totHits=221118844 834.1s: geo3d, box: *** 835.0s: geo3d, box: ITER 8: 241.15 M hits/sec, 245.38 QPS (0.92 sec for 225 queries), totHits=221118844 835.9s: geo3d, box: ITER 9: 239.33 M hits/sec, 243.53 QPS (0.92 sec for 225 queries), totHits=221118844 836.9s: geo3d, box: ITER 10: 228.56 M hits/sec, 232.57 QPS (0.97 sec for 225 queries), totHits=221118844 837.8s: geo3d, box: ITER 11: 238.23 M hits/sec, 242.41 QPS (0.93 sec for 225 queries), totHits=221118844 838.8s: geo3d, box: ITER 12: 236.56 M hits/sec, 240.72 QPS (0.93 sec for 225 queries), totHits=221118844 839.7s: geo3d, box: ITER 13: 249.24 M hits/sec, 253.61 QPS (0.89 sec for 225 queries), totHits=221118844 839.7s: geo3d, box: *** 840.6s: geo3d, box: ITER 14: 241.04 M hits/sec, 245.27 QPS (0.92 sec for 225 queries), totHits=221118844 841.5s: geo3d, box: ITER 15: 241.76 M hits/sec, 246.01 QPS (0.91 sec for 225 queries), totHits=221118844 842.4s: geo3d, box: ITER 16: 243.86 M hits/sec, 248.14 QPS (0.91 sec for 225 queries), totHits=221118844 843.3s: geo3d, box: ITER 17: 247.22 M hits/sec, 251.56 QPS (0.89 sec for 225 queries), totHits=221118844 844.2s: geo3d, box: ITER 18: 248.51 M hits/sec, 252.88 QPS (0.89 sec for 225 queries), totHits=221118844 845.1s: geo3d, box: ITER 19: 251.86 M hits/sec, 256.28 QPS (0.88 sec for 225 queries), totHits=221118844 845.1s: geo3d, box: *** 845.1s: geo3d, box: BEST M hits/sec: 251.85874852412502 845.1s: geo3d, box: BEST QPS: 256.2794621788459 Results on 60.844404M points: ||Approach||Index time (sec)||Force merge time (sec)||Index size (GB)||Reader heap (MB)|| |geo3d|136.9s|0.0s|0.70|0.00| |points|110.6s|0.0s|0.49|0.00| |shapes|166.8s|0.0s|1.25|0.00| ||Shape||Approach||M hits/sec||QPS||Hit count|| |distance|geo3d|322.60|189.34|383371904| |distance|points|335.11|196.89|382961957| |distance|geopoint|||| |distance|shapes|225.07|132.23|382961957| |box|geo3d|251.86|256.28|221118844| |box|points|434.36|441.99|221118844| |box|geopoint|||| |box|shapes|||| |poly 10|geo3d|249.22|157.57|355855227| |poly 10|points|291.46|184.31|355809475| |poly 10|geopoint|||| |poly 10|shapes|189.36|119.74|355809475| |polyMedium|geo3d|2.58|31.63|2693541| |polyMedium|points|16.98|207.99|2693559| |polyMedium|geopoint|||| |polyMedium|shapes|13.14|161.02|2693559| |polyRussia|geo3d|3.79|1.08|3508671| |polyRussia|points|65.74|18.74|3508846| |polyRussia|geopoint|||| |polyRussia|shapes|44.54|12.69|3508846| |nearest 10|geo3d|||| |nearest 10|points|0.03|3281.20|60844404| |nearest 10|geopoint|||| |nearest 10|shapes|||| |sort|geo3d|||| |sort|points|152.53|155.21|221118844| |sort|geopoint|||| |sort|shapes|||| RUN: java -XX:+UseParallelGC -Xmx10g -cp /l/util.nightly/src/main:test-framework/build/classes/java/main:sandbox/build/classes/java/main:codecs/build/classes/java/main:codecs/build/resources/main:core/build/classes/java/main:core/build/classes/java/main21:core/build/resources/main:sandbox/build/classes/java/main:spatial3d/build/classes/java/main perf.IndexAndSearchOpenStreetMaps -shapes -box 845.3s: shapes, box: INDEX SIZE: 1.2543620793148875 GB 845.3s: shapes, box: READER MB: 0.0 845.3s: shapes, box: maxDoc=60844404 846.7s: shapes, box: ITER 0: 159.50 M hits/sec, 162.30 QPS (1.39 sec for 225 queries), totHits=221118844 846.7s: shapes, box: *** 847.8s: shapes, box: ITER 1: 196.31 M hits/sec, 199.75 QPS (1.13 sec for 225 queries), totHits=221118844 847.8s: shapes, box: *** 848.9s: shapes, box: ITER 2: 202.01 M hits/sec, 205.55 QPS (1.09 sec for 225 queries), totHits=221118844 848.9s: shapes, box: *** 850.0s: shapes, box: ITER 3: 206.12 M hits/sec, 209.74 QPS (1.07 sec for 225 queries), totHits=221118844 850.0s: shapes, box: *** 851.2s: shapes, box: ITER 4: 186.57 M hits/sec, 189.85 QPS (1.19 sec for 225 queries), totHits=221118844 852.3s: shapes, box: ITER 5: 206.84 M hits/sec, 210.47 QPS (1.07 sec for 225 queries), totHits=221118844 852.3s: shapes, box: *** 853.3s: shapes, box: ITER 6: 208.20 M hits/sec, 211.86 QPS (1.06 sec for 225 queries), totHits=221118844 853.3s: shapes, box: *** 854.4s: shapes, box: ITER 7: 206.18 M hits/sec, 209.80 QPS (1.07 sec for 225 queries), totHits=221118844 855.5s: shapes, box: ITER 8: 204.86 M hits/sec, 208.46 QPS (1.08 sec for 225 queries), totHits=221118844 856.6s: shapes, box: ITER 9: 206.02 M hits/sec, 209.63 QPS (1.07 sec for 225 queries), totHits=221118844 857.6s: shapes, box: ITER 10: 204.46 M hits/sec, 208.05 QPS (1.08 sec for 225 queries), totHits=221118844 858.7s: shapes, box: ITER 11: 207.17 M hits/sec, 210.81 QPS (1.07 sec for 225 queries), totHits=221118844 859.8s: shapes, box: ITER 12: 208.66 M hits/sec, 212.32 QPS (1.06 sec for 225 queries), totHits=221118844 859.8s: shapes, box: *** 860.8s: shapes, box: ITER 13: 208.82 M hits/sec, 212.49 QPS (1.06 sec for 225 queries), totHits=221118844 860.8s: shapes, box: *** 861.9s: shapes, box: ITER 14: 203.73 M hits/sec, 207.31 QPS (1.09 sec for 225 queries), totHits=221118844 863.0s: shapes, box: ITER 15: 201.47 M hits/sec, 205.01 QPS (1.10 sec for 225 queries), totHits=221118844 864.1s: shapes, box: ITER 16: 209.70 M hits/sec, 213.38 QPS (1.05 sec for 225 queries), totHits=221118844 864.1s: shapes, box: *** 865.1s: shapes, box: ITER 17: 205.42 M hits/sec, 209.03 QPS (1.08 sec for 225 queries), totHits=221118844 866.2s: shapes, box: ITER 18: 207.47 M hits/sec, 211.11 QPS (1.07 sec for 225 queries), totHits=221118844 867.3s: shapes, box: ITER 19: 206.04 M hits/sec, 209.65 QPS (1.07 sec for 225 queries), totHits=221118844 867.3s: shapes, box: BEST M hits/sec: 209.69522481400145 867.3s: shapes, box: BEST QPS: 213.3758694177613 Results on 60.844404M points: ||Approach||Index time (sec)||Force merge time (sec)||Index size (GB)||Reader heap (MB)|| |geo3d|136.9s|0.0s|0.70|0.00| |points|110.6s|0.0s|0.49|0.00| |shapes|166.8s|0.0s|1.25|0.00| ||Shape||Approach||M hits/sec||QPS||Hit count|| |distance|geo3d|322.60|189.34|383371904| |distance|points|335.11|196.89|382961957| |distance|geopoint|||| |distance|shapes|225.07|132.23|382961957| |box|geo3d|251.86|256.28|221118844| |box|points|434.36|441.99|221118844| |box|geopoint|||| |box|shapes|209.70|213.38|221118844| |poly 10|geo3d|249.22|157.57|355855227| |poly 10|points|291.46|184.31|355809475| |poly 10|geopoint|||| |poly 10|shapes|189.36|119.74|355809475| |polyMedium|geo3d|2.58|31.63|2693541| |polyMedium|points|16.98|207.99|2693559| |polyMedium|geopoint|||| |polyMedium|shapes|13.14|161.02|2693559| |polyRussia|geo3d|3.79|1.08|3508671| |polyRussia|points|65.74|18.74|3508846| |polyRussia|geopoint|||| |polyRussia|shapes|44.54|12.69|3508846| |nearest 10|geo3d|||| |nearest 10|points|0.03|3281.20|60844404| |nearest 10|geopoint|||| |nearest 10|shapes|||| |sort|geo3d|||| |sort|points|152.53|155.21|221118844| |sort|geopoint|||| |sort|shapes|||| Took 868.5 sec to run all geo benchmarks + python3 /l/util.nightly/src/python/writeGeoGraphs.py writeAnnots for Distance Filter writeAnnots for Regular 10-gon Filter writeAnnots for London Boroughs Polygons Filter (avg 5.6K vertices) writeAnnots for Box Filter writeAnnots for 10 Nearest Points skip annot 2016-04-15 Geo3D: LUCENE-7221: speed up large polygons (series not in chartTimes: dict_keys(['LatLonPoint'])) skip annot 2018-11-27 LatLonShape: LUCENE-8562: Speed up merging segments of points with data dimensions by only sorting on the indexed dimensions (series not in chartTimes: dict_keys(['LatLonPoint'])) skip annot 2018-12-19 LatLonShape: LUCENE-8581: Change LatLonShape encoding to use 4 BYTES Per Dimension (series not in chartTimes: dict_keys(['LatLonPoint'])) writeAnnots for Box Filter, Sort by Distance skip annot 2016-03-22 GeoPoint: LUCENE-7130: fold recent LatLonPoint optimizations into GeoPoint (series not in chartTimes: dict_keys(['LatLonPoint'])) skip annot 2016-03-31 Geo3D: LUCENE-7150: add common shape query APIs to geo3d (series not in chartTimes: dict_keys(['LatLonPoint'])) skip annot 2016-04-11 Geo3D: LUCENE-7199: speed up how polygon's sideness is computed (series not in chartTimes: dict_keys(['LatLonPoint'])) skip annot 2016-04-15 Geo3D: LUCENE-7221: speed up large polygons (series not in chartTimes: dict_keys(['LatLonPoint'])) skip annot 2018-11-27 LatLonShape: LUCENE-8562: Speed up merging segments of points with data dimensions by only sorting on the indexed dimensions (series not in chartTimes: dict_keys(['LatLonPoint'])) skip annot 2018-12-19 LatLonShape: LUCENE-8581: Change LatLonShape encoding to use 4 BYTES Per Dimension (series not in chartTimes: dict_keys(['LatLonPoint'])) writeAnnots for Russia Polygon (11.6K vertices) writeAnnots for Indexing K docs/sec writeAnnots for Searcher Heap Usage writeAnnots for Index Size + echo + echo 'Run sparse NYC benches' Run sparse NYC benches + cd /l/util.nightly + python3 -u src/python/sparsetaxis/nightly.py Already on 'main' Your branch is up to date with 'origin/main'. From https://gitbox.apache.org/repos/asf/lucene * branch main -> FETCH_HEAD Already up to date. creating directories /l/logs.nightly/taxis/2026.05.16.23.48.47... Lucene git hash: de92f115a3125624bf7c7141b8e700efa9a89427 Compile lucene core... run: "../../gradlew jar" in cwd=/l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/core log: /l/logs.nightly/taxis/2026.05.16.23.48.47/gradle.jar.log Compile java benchmark sources... run: "javac -cp /l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/analysis/common/build/libs/lucene-analysis-common-11.0.0-SNAPSHOT.jar:/l/util.nightly/src/python/sparsetaxis/../../main /l/util.nightly/src/python/sparsetaxis/../../main/perf/SearchTaxis.java /l/util.nightly/src/python/sparsetaxis/../../main/perf/IndexTaxis.java /l/util.nightly/src/python/sparsetaxis/../../main/perf/DiskUsage.java" in cwd=/l/sparseTaxis.nightly/sparseTaxis/lucene.main Index "slow" sparse-sorted with 1 thread, SMS... warm /l/sparseTaxis.nightly/sparseTaxis/data/20M.subset.nyctaxis.csv.blocks... done warm 2.9 GB run: "java -server -Xmx2g -Xms2g -XX:+UseParallelGC -XX:+HeapDumpOnOutOfMemoryError -cp /l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/analysis/common/build/libs/lucene-analysis-common-11.0.0-SNAPSHOT.jar:/l/util.nightly/src/python/sparsetaxis/../../main perf.IndexTaxis /l/sparseTaxis.nightly/sparseTaxis/indices/index.1threads.sparse.sorted 1 /l/sparseTaxis.nightly/sparseTaxis/data/20M.subset.nyctaxis.csv.blocks sparse True" in cwd=/l/sparseTaxis.nightly/sparseTaxis/lucene.main log: /l/logs.nightly/taxis/2026.05.16.23.48.47/index.1threads.sparse.sorted.log 3.1 sec: 0.3 M docs; 95.9 K docs/sec 6.7 sec: 0.6 M docs; 89.2 K docs/sec 10.0 sec: 0.9 M docs; 89.9 K docs/sec 13.2 sec: 1.2 M docs; 90.8 K docs/sec 16.4 sec: 1.5 M docs; 91.2 K docs/sec 20.5 sec: 1.9 M docs; 92.8 K docs/sec 23.8 sec: 2.2 M docs; 92.5 K docs/sec 27.8 sec: 2.6 M docs; 93.6 K docs/sec 31.8 sec: 3.0 M docs; 94.4 K docs/sec 35.0 sec: 3.3 M docs; 94.3 K docs/sec 47.6 sec: 3.7 M docs; 77.7 K docs/sec 51.6 sec: 4.1 M docs; 79.4 K docs/sec 54.8 sec: 4.4 M docs; 80.2 K docs/sec 58.9 sec: 4.8 M docs; 81.5 K docs/sec 62.9 sec: 5.2 M docs; 82.7 K docs/sec 66.1 sec: 5.5 M docs; 83.2 K docs/sec 70.1 sec: 5.9 M docs; 84.2 K docs/sec 74.1 sec: 6.3 M docs; 85.0 K docs/sec 77.3 sec: 6.6 M docs; 85.4 K docs/sec 81.3 sec: 7.0 M docs; 86.1 K docs/sec 93.9 sec: 7.4 M docs; 78.8 K docs/sec 97.1 sec: 7.7 M docs; 79.3 K docs/sec 101.1 sec: 8.1 M docs; 80.1 K docs/sec 105.1 sec: 8.5 M docs; 80.9 K docs/sec 108.3 sec: 8.8 M docs; 81.2 K docs/sec 112.3 sec: 9.2 M docs; 81.9 K docs/sec 116.3 sec: 9.6 M docs; 82.5 K docs/sec 119.5 sec: 9.9 M docs; 82.8 K docs/sec 123.5 sec: 10.3 M docs; 83.4 K docs/sec 127.5 sec: 10.7 M docs; 83.9 K docs/sec 139.3 sec: 11.0 M docs; 79.0 K docs/sec 143.3 sec: 11.4 M docs; 79.6 K docs/sec 147.3 sec: 11.8 M docs; 80.1 K docs/sec 150.5 sec: 12.1 M docs; 80.4 K docs/sec 154.5 sec: 12.5 M docs; 80.9 K docs/sec 158.5 sec: 12.9 M docs; 81.4 K docs/sec 161.7 sec: 13.2 M docs; 81.6 K docs/sec 165.7 sec: 13.6 M docs; 82.1 K docs/sec 169.7 sec: 14.0 M docs; 82.5 K docs/sec 172.9 sec: 14.3 M docs; 82.7 K docs/sec 185.5 sec: 14.7 M docs; 79.3 K docs/sec 189.5 sec: 15.1 M docs; 79.7 K docs/sec 192.7 sec: 15.4 M docs; 79.9 K docs/sec 196.7 sec: 15.8 M docs; 80.3 K docs/sec 200.7 sec: 16.2 M docs; 80.7 K docs/sec 203.9 sec: 16.5 M docs; 80.9 K docs/sec 208.0 sec: 16.9 M docs; 81.3 K docs/sec 212.0 sec: 17.3 M docs; 81.6 K docs/sec 215.2 sec: 17.6 M docs; 81.8 K docs/sec 219.2 sec: 18.0 M docs; 82.1 K docs/sec 231.7 sec: 18.4 M docs; 79.4 K docs/sec 234.9 sec: 18.7 M docs; 79.6 K docs/sec 238.9 sec: 19.1 M docs; 79.9 K docs/sec 242.2 sec: 19.4 M docs; 80.1 K docs/sec 246.1 sec: 19.8 M docs; 80.4 K docs/sec 247.7 sec: 20.0 M docs; 80.7 K docs/sec index is 2.21 GB CheckIndex sparse-sorted run: "java -server -Xmx2g -Xms2g -XX:+UseParallelGC -XX:+HeapDumpOnOutOfMemoryError -cp /l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/analysis/common/build/libs/lucene-analysis-common-11.0.0-SNAPSHOT.jar:/l/util.nightly/src/python/sparsetaxis/../../main org.apache.lucene.index.CheckIndex /l/sparseTaxis.nightly/sparseTaxis/indices/index.1threads.sparse.sorted" in cwd=/l/sparseTaxis.nightly/sparseTaxis/lucene.main log: /l/logs.nightly/taxis/2026.05.16.23.48.47/checkIndexsparse-sorted.log took 0.5 sec DiskUsage sparse-sorted run: "java -server -Xmx2g -Xms2g -XX:+UseParallelGC -XX:+HeapDumpOnOutOfMemoryError -cp /l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/analysis/common/build/libs/lucene-analysis-common-11.0.0-SNAPSHOT.jar:/l/util.nightly/src/python/sparsetaxis/../../main perf.DiskUsage /l/sparseTaxis.nightly/sparseTaxis/indices/index.1threads.sparse.sorted" in cwd=/l/sparseTaxis.nightly/sparseTaxis/lucene.main log: /l/logs.nightly/taxis/2026.05.16.23.48.47/diskUsagesparse-sorted.log took 51.5 sec Search sparse-sorted iter 0... run: "java -server -Xmx2g -Xms2g -XX:+UseParallelGC -XX:+HeapDumpOnOutOfMemoryError -cp /l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/analysis/common/build/libs/lucene-analysis-common-11.0.0-SNAPSHOT.jar:/l/util.nightly/src/python/sparsetaxis/../../main perf.SearchTaxis /l/sparseTaxis.nightly/sparseTaxis/indices/index.1threads.sparse.sorted sparse" in cwd=/l/sparseTaxis.nightly/sparseTaxis/lucene.main log: /l/logs.nightly/taxis/2026.05.16.23.48.47/searchsparse-sorted.0.log Index "slow" sparse with 1 thread, SMS... warm /l/sparseTaxis.nightly/sparseTaxis/data/20M.subset.nyctaxis.csv.blocks... done warm 2.9 GB run: "java -server -Xmx2g -Xms2g -XX:+UseParallelGC -XX:+HeapDumpOnOutOfMemoryError -cp /l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/analysis/common/build/libs/lucene-analysis-common-11.0.0-SNAPSHOT.jar:/l/util.nightly/src/python/sparsetaxis/../../main perf.IndexTaxis /l/sparseTaxis.nightly/sparseTaxis/indices/index.1threads.sparse 1 /l/sparseTaxis.nightly/sparseTaxis/data/20M.subset.nyctaxis.csv.blocks sparse False" in cwd=/l/sparseTaxis.nightly/sparseTaxis/lucene.main log: /l/logs.nightly/taxis/2026.05.16.23.48.47/index.1threads.sparse.log 2.9 sec: 0.3 M docs; 103.4 K docs/sec 6.4 sec: 0.6 M docs; 93.0 K docs/sec 9.7 sec: 0.9 M docs; 93.1 K docs/sec 12.8 sec: 1.2 M docs; 93.7 K docs/sec 16.0 sec: 1.5 M docs; 93.9 K docs/sec 19.9 sec: 1.9 M docs; 95.5 K docs/sec 23.0 sec: 2.2 M docs; 95.7 K docs/sec 26.8 sec: 2.6 M docs; 97.0 K docs/sec 30.6 sec: 3.0 M docs; 98.1 K docs/sec 33.6 sec: 3.3 M docs; 98.2 K docs/sec 45.2 sec: 3.7 M docs; 81.9 K docs/sec 49.1 sec: 4.1 M docs; 83.5 K docs/sec 52.3 sec: 4.4 M docs; 84.2 K docs/sec 56.2 sec: 4.8 M docs; 85.4 K docs/sec 60.2 sec: 5.2 M docs; 86.4 K docs/sec 63.3 sec: 5.5 M docs; 86.9 K docs/sec 67.3 sec: 5.9 M docs; 87.7 K docs/sec 71.3 sec: 6.3 M docs; 88.4 K docs/sec 74.3 sec: 6.6 M docs; 88.8 K docs/sec 78.1 sec: 7.0 M docs; 89.6 K docs/sec 89.6 sec: 7.4 M docs; 82.6 K docs/sec 92.7 sec: 7.7 M docs; 83.1 K docs/sec 96.5 sec: 8.1 M docs; 84.0 K docs/sec 100.3 sec: 8.5 M docs; 84.8 K docs/sec 103.3 sec: 8.8 M docs; 85.2 K docs/sec 107.1 sec: 9.2 M docs; 85.9 K docs/sec 110.9 sec: 9.6 M docs; 86.5 K docs/sec 114.0 sec: 9.9 M docs; 86.9 K docs/sec 117.8 sec: 10.3 M docs; 87.5 K docs/sec 121.6 sec: 10.7 M docs; 88.0 K docs/sec 132.3 sec: 11.0 M docs; 83.1 K docs/sec 136.2 sec: 11.4 M docs; 83.7 K docs/sec 140.0 sec: 11.8 M docs; 84.3 K docs/sec 143.0 sec: 12.1 M docs; 84.6 K docs/sec 146.8 sec: 12.5 M docs; 85.2 K docs/sec 150.6 sec: 12.9 M docs; 85.6 K docs/sec 153.7 sec: 13.2 M docs; 85.9 K docs/sec 157.5 sec: 13.6 M docs; 86.4 K docs/sec 161.3 sec: 14.0 M docs; 86.8 K docs/sec 164.3 sec: 14.3 M docs; 87.0 K docs/sec 175.9 sec: 14.7 M docs; 83.6 K docs/sec 179.7 sec: 15.1 M docs; 84.0 K docs/sec 182.7 sec: 15.4 M docs; 84.3 K docs/sec 186.5 sec: 15.8 M docs; 84.7 K docs/sec 190.3 sec: 16.2 M docs; 85.1 K docs/sec 193.3 sec: 16.5 M docs; 85.3 K docs/sec 197.1 sec: 16.9 M docs; 85.7 K docs/sec 201.0 sec: 17.3 M docs; 86.1 K docs/sec 204.0 sec: 17.6 M docs; 86.3 K docs/sec 207.8 sec: 18.0 M docs; 86.6 K docs/sec 219.3 sec: 18.4 M docs; 83.9 K docs/sec 222.3 sec: 18.7 M docs; 84.1 K docs/sec 226.1 sec: 19.1 M docs; 84.5 K docs/sec 229.2 sec: 19.4 M docs; 84.7 K docs/sec 232.9 sec: 19.8 M docs; 85.0 K docs/sec 234.5 sec: 20.0 M docs; 85.3 K docs/sec index is 2.21 GB CheckIndex sparse run: "java -server -Xmx2g -Xms2g -XX:+UseParallelGC -XX:+HeapDumpOnOutOfMemoryError -cp /l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/analysis/common/build/libs/lucene-analysis-common-11.0.0-SNAPSHOT.jar:/l/util.nightly/src/python/sparsetaxis/../../main org.apache.lucene.index.CheckIndex /l/sparseTaxis.nightly/sparseTaxis/indices/index.1threads.sparse" in cwd=/l/sparseTaxis.nightly/sparseTaxis/lucene.main log: /l/logs.nightly/taxis/2026.05.16.23.48.47/checkIndexsparse.log took 0.5 sec DiskUsage sparse run: "java -server -Xmx2g -Xms2g -XX:+UseParallelGC -XX:+HeapDumpOnOutOfMemoryError -cp /l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/analysis/common/build/libs/lucene-analysis-common-11.0.0-SNAPSHOT.jar:/l/util.nightly/src/python/sparsetaxis/../../main perf.DiskUsage /l/sparseTaxis.nightly/sparseTaxis/indices/index.1threads.sparse" in cwd=/l/sparseTaxis.nightly/sparseTaxis/lucene.main log: /l/logs.nightly/taxis/2026.05.16.23.48.47/diskUsagesparse.log took 52.1 sec Search sparse iter 0... run: "java -server -Xmx2g -Xms2g -XX:+UseParallelGC -XX:+HeapDumpOnOutOfMemoryError -cp /l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/analysis/common/build/libs/lucene-analysis-common-11.0.0-SNAPSHOT.jar:/l/util.nightly/src/python/sparsetaxis/../../main perf.SearchTaxis /l/sparseTaxis.nightly/sparseTaxis/indices/index.1threads.sparse sparse" in cwd=/l/sparseTaxis.nightly/sparseTaxis/lucene.main log: /l/logs.nightly/taxis/2026.05.16.23.48.47/searchsparse.0.log Index "slow" nonsparse with 1 thread, SMS... warm /l/sparseTaxis.nightly/sparseTaxis/data/20M.subset.nyctaxis.csv.blocks... done warm 2.9 GB run: "java -server -Xmx2g -Xms2g -XX:+UseParallelGC -XX:+HeapDumpOnOutOfMemoryError -cp /l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/analysis/common/build/libs/lucene-analysis-common-11.0.0-SNAPSHOT.jar:/l/util.nightly/src/python/sparsetaxis/../../main perf.IndexTaxis /l/sparseTaxis.nightly/sparseTaxis/indices/index.1threads.nonsparse 1 /l/sparseTaxis.nightly/sparseTaxis/data/20M.subset.nyctaxis.csv.blocks nonsparse False" in cwd=/l/sparseTaxis.nightly/sparseTaxis/lucene.main log: /l/logs.nightly/taxis/2026.05.16.23.48.47/index.1threads.nonsparse.log 3.0 sec: 0.3 M docs; 99.8 K docs/sec 6.6 sec: 0.6 M docs; 91.4 K docs/sec 10.3 sec: 1.0 M docs; 96.8 K docs/sec 13.4 sec: 1.3 M docs; 97.3 K docs/sec 16.4 sec: 1.6 M docs; 97.6 K docs/sec 20.1 sec: 2.0 M docs; 99.4 K docs/sec 23.9 sec: 2.4 M docs; 100.6 K docs/sec 27.6 sec: 2.8 M docs; 101.4 K docs/sec 31.4 sec: 3.2 M docs; 102.0 K docs/sec 35.1 sec: 3.6 M docs; 102.5 K docs/sec 44.0 sec: 3.7 M docs; 84.1 K docs/sec 47.7 sec: 4.1 M docs; 86.0 K docs/sec 51.3 sec: 4.5 M docs; 87.7 K docs/sec 54.4 sec: 4.8 M docs; 88.3 K docs/sec 58.1 sec: 5.2 M docs; 89.5 K docs/sec 61.8 sec: 5.6 M docs; 90.7 K docs/sec 65.4 sec: 6.0 M docs; 91.7 K docs/sec 68.4 sec: 6.3 M docs; 92.1 K docs/sec 72.1 sec: 6.7 M docs; 92.9 K docs/sec 75.1 sec: 7.0 M docs; 93.2 K docs/sec 86.2 sec: 7.4 M docs; 85.9 K docs/sec 89.9 sec: 7.8 M docs; 86.8 K docs/sec 93.5 sec: 8.2 M docs; 87.7 K docs/sec 96.5 sec: 8.5 M docs; 88.1 K docs/sec 100.2 sec: 8.9 M docs; 88.8 K docs/sec 103.9 sec: 9.3 M docs; 89.5 K docs/sec 107.5 sec: 9.7 M docs; 90.2 K docs/sec 110.5 sec: 10.0 M docs; 90.5 K docs/sec 114.2 sec: 10.4 M docs; 91.1 K docs/sec 117.9 sec: 10.8 M docs; 91.6 K docs/sec 127.4 sec: 11.0 M docs; 86.3 K docs/sec 131.1 sec: 11.4 M docs; 86.9 K docs/sec 134.8 sec: 11.8 M docs; 87.5 K docs/sec 138.5 sec: 12.2 M docs; 88.1 K docs/sec 142.2 sec: 12.6 M docs; 88.6 K docs/sec 145.9 sec: 13.0 M docs; 89.1 K docs/sec 149.6 sec: 13.4 M docs; 89.6 K docs/sec 153.2 sec: 13.8 M docs; 90.1 K docs/sec 156.3 sec: 14.1 M docs; 90.2 K docs/sec 160.0 sec: 14.5 M docs; 90.6 K docs/sec 169.5 sec: 14.7 M docs; 86.7 K docs/sec 173.2 sec: 15.1 M docs; 87.2 K docs/sec 176.9 sec: 15.5 M docs; 87.6 K docs/sec 180.6 sec: 15.9 M docs; 88.0 K docs/sec 184.3 sec: 16.3 M docs; 88.5 K docs/sec 188.0 sec: 16.7 M docs; 88.8 K docs/sec 191.7 sec: 17.1 M docs; 89.2 K docs/sec 195.4 sec: 17.5 M docs; 89.6 K docs/sec 199.1 sec: 17.9 M docs; 89.9 K docs/sec 202.7 sec: 18.3 M docs; 90.3 K docs/sec 211.5 sec: 18.4 M docs; 87.0 K docs/sec 215.2 sec: 18.8 M docs; 87.4 K docs/sec 218.8 sec: 19.2 M docs; 87.7 K docs/sec 222.5 sec: 19.6 M docs; 88.1 K docs/sec 226.2 sec: 20.0 M docs; 88.4 K docs/sec 226.2 sec: 20.0 M docs; 88.4 K docs/sec index is 2.12 GB CheckIndex nonsparse run: "java -server -Xmx2g -Xms2g -XX:+UseParallelGC -XX:+HeapDumpOnOutOfMemoryError -cp /l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/analysis/common/build/libs/lucene-analysis-common-11.0.0-SNAPSHOT.jar:/l/util.nightly/src/python/sparsetaxis/../../main org.apache.lucene.index.CheckIndex /l/sparseTaxis.nightly/sparseTaxis/indices/index.1threads.nonsparse" in cwd=/l/sparseTaxis.nightly/sparseTaxis/lucene.main log: /l/logs.nightly/taxis/2026.05.16.23.48.47/checkIndexnonsparse.log took 0.5 sec DiskUsage nonsparse run: "java -server -Xmx2g -Xms2g -XX:+UseParallelGC -XX:+HeapDumpOnOutOfMemoryError -cp /l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/analysis/common/build/libs/lucene-analysis-common-11.0.0-SNAPSHOT.jar:/l/util.nightly/src/python/sparsetaxis/../../main perf.DiskUsage /l/sparseTaxis.nightly/sparseTaxis/indices/index.1threads.nonsparse" in cwd=/l/sparseTaxis.nightly/sparseTaxis/lucene.main log: /l/logs.nightly/taxis/2026.05.16.23.48.47/diskUsagenonsparse.log took 46.0 sec Search nonsparse iter 0... run: "java -server -Xmx2g -Xms2g -XX:+UseParallelGC -XX:+HeapDumpOnOutOfMemoryError -cp /l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/core/build/libs/lucene-core-11.0.0-SNAPSHOT.jar:/l/sparseTaxis.nightly/sparseTaxis/lucene.main/lucene/analysis/common/build/libs/lucene-analysis-common-11.0.0-SNAPSHOT.jar:/l/util.nightly/src/python/sparsetaxis/../../main perf.SearchTaxis /l/sparseTaxis.nightly/sparseTaxis/indices/index.1threads.nonsparse nonsparse" in cwd=/l/sparseTaxis.nightly/sparseTaxis/lucene.main log: /l/logs.nightly/taxis/2026.05.16.23.48.47/searchnonsparse.0.log sparseTaxis: now remove /l/sparseTaxis.nightly/sparseTaxis/indices/index.1threads.sparse sparseTaxis: now remove /l/sparseTaxis.nightly/sparseTaxis/indices/index.1threads.nonsparse sparseTaxis: now remove /l/sparseTaxis.nightly/sparseTaxis/indices/index.1threads.sparse.sorted + echo 'Now rsync' Now rsync + date Sun May 17 12:03:59 AM EDT 2026 + rsync --delete -lrtSO /l/logs.nightly/ /x/tmp/beast3.logs/logs.nightly/ + rsync --delete -lrtSO /l/reports.nightly/ /x/tmp/beast3.logs/reports.nightly/ + echo 'Touch nightly marker file...' Touch nightly marker file... + date Sun May 17 12:05:23 AM EDT 2026 + touch /x/tmp/beast3.nightly.bench + echo 'Backup bench logs to /ssd/logs.nightly.bak' Backup bench logs to /ssd/logs.nightly.bak + rsync -a /l/logs.nightly/ /ssd/logs.nightly.bak/ + echo 'end: disk usage on /l:' end: disk usage on /l: + df -h /l Filesystem Size Used Avail Use% Mounted on /dev/nvme1n1p1 880G 351G 485G 42% / + echo 'Stopping background df process...' Stopping background df process... + kill 1998102 + wait 1998102 + cp /l/logs.nightly/all.log /l/reports.nightly + cp /l/logs.nightly/df_nightly_monitor.log /l/reports.nightly + echo 'clean /l/tmp' clean /l/tmp + rm -rf '/l/tmp/*' + echo + echo 'Now copy all.log to nightly timestamp'\''d log dir' Now copy all.log to nightly timestamp'd log dir + python3 -u /l/util.nightly/src/python/save_full_log.py ***USING BIG LINE FILE*** Using java from: /usr/lib/jvm/java-25-openjdk/bin/ now shutil.copy2 /l/logs.nightly/all.log to /l/logs.nightly/2026.05.15.14.49.32 now shutil.copy2 /l/logs.nightly/all.log to /l/reports.nightly/2026.05.15.14.49.32