HoustonPutman opened a new pull request, #1765: URL: https://github.com/apache/solr/pull/1765
https://issues.apache.org/jira/browse/SOLR-16878 This can be tested relatively easily, **using Java 20** ``` $ ./gradlew dev $ cd solr/packaging/build/dev $ ./bin/solr start -e films ``` In the solr logs (not the console logs), you will see: ``` INFO (coreLoadExecutor-10-thread-1) [ x:films] o.a.l.s.MemorySegmentIndexInputProvider Using MemorySegmentIndexInput with Java 20; to disable start with -Dorg.apache.lucene.store.MMapDirectory.enableMemorySegments=false ``` For the new Vector logs, after introducing the option in Solr in #1758, no logging is done by default. But we can use the C1 compiler, which makes Lucene log that it can't use the Panama Vector API. ``` $ ./gradlew dev $ cd solr/packaging/build/dev $ ./bin/solr start -e films -a "-XX:TieredStopAtLevel=1" ``` In the solr logs (again, not the console logs), you will see: ``` WARN (qtp1027495011-41) [ x:films] o.a.l.u.VectorUtilProvider C2 compiler is disabled; Java vector incubator API can't be enabled ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
