Hi, I have a solr cloud setup using solr 8.3 and SolrJj, which works fine using the HttpSolrClient as well as the CloudSolrClient. I use 2 solr nodes with 3 Zookeeper nodes. Recently I configured my machines to handle ssl, http/2 and then I tried using in my java code the Http2SolrClient supported by SolrJ 8.3.0, but I got the following error at run time upon instantiating the Http2SolrClient object:
Has anyone seen this problem? Thanks Reinaldo =================== Oops: NoClassDefFoundError Unexpected error : Unexpected Error, caused by exception NoClassDefFoundError: org/eclipse/jetty/client/api/Request play.exceptions.UnexpectedException: Unexpected Error at play.jobs.Job.onException(Job.java:180) at play.jobs.Job.call(Job.java:250) at Invocation.Job(Play!) Caused by: java.lang.NoClassDefFoundError: org/eclipse/jetty/client/api/Request at org.apache.solr.client.solrj.impl.Http2SolrClient$AsyncTracker.<init>(Http2SolrClient.java:789) at org.apache.solr.client.solrj.impl.Http2SolrClient.<init>(Http2SolrClient.java:131) at org.apache.solr.client.solrj.impl.Http2SolrClient$Builder.build(Http2SolrClient.java:833) ... more Caused by: java.lang.ClassNotFoundException: org.eclipse.jetty.client.api.Request at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:581) at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178) at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521) ... 16 more ==============