Re: SolrJ 9.3 timeout when using http2, works with http

2023-09-05 Thread Ing. Andrea Vettori
> On 4 Sep 2023, at 21:09, Shawn Heisey wrote: > > On 9/4/23 03:09, Ing. Andrea Vettori wrote: >> Hello thank you very much for the test program. Your program works. Looking >> for differences I found that I didn’t have the http2-hpack jar. After adding >> it to my class path my program also

Re: SolrJ 9.3 timeout when using http2, works with http

2023-09-04 Thread Shawn Heisey
On 9/4/23 03:09, Ing. Andrea Vettori wrote: Hello thank you very much for the test program. Your program works. Looking for differences I found that I didn’t have the http2-hpack jar. After adding it to my class path my program also works. I don’t know why a missing jar can cause a timeout inst

Re: SolrJ 9.3 timeout when using http2, works with http

2023-09-04 Thread Ing. Andrea Vettori
Hello thank you very much for the test program. Your program works. Looking for differences I found that I didn’t have the http2-hpack jar. After adding it to my class path my program also works. I don’t know why a missing jar can cause a timeout instead of a class not found exception but maybe

Re: SolrJ 9.3 timeout when using http2, works with http

2023-09-03 Thread Shawn Heisey
On 9/3/23 13:36, Ing. Andrea Vettori wrote: For this test code I tried a few values of minutes to see if it would work after some time (it never worked). Usually on production code we use different timeouts all in the few seconds ranges. What is the Solr version on the server? Older Solr ve

Re: SolrJ 9.3 timeout when using http2, works with http

2023-09-03 Thread Ing. Andrea Vettori
> On 3 Sep 2023, at 17:30, Shawn Heisey wrote: > > On 9/3/23 04:28, Ing. Andrea Vettori wrote: >> what can cause this issue ? >> This times out >> solrServer = new Http2SolrClient.Builder(solrUrl) >> .withRequestTimeout(SOLR_TIMEOUT_MINUTES, >> TimeUnit.MI

Re: SolrJ 9.3 timeout when using http2, works with http

2023-09-03 Thread Shawn Heisey
On 9/3/23 04:28, Ing. Andrea Vettori wrote: what can cause this issue ? This times out solrServer = new Http2SolrClient.Builder(solrUrl) .withRequestTimeout(SOLR_TIMEOUT_MINUTES, TimeUnit.MINUTES) .withConnectionTimeout(SOLR_TI

SolrJ 9.3 timeout when using http2, works with http

2023-09-03 Thread Ing. Andrea Vettori
Hello, what can cause this issue ? This times out solrServer = new Http2SolrClient.Builder(solrUrl) .withRequestTimeout(SOLR_TIMEOUT_MINUTES, TimeUnit.MINUTES) .withConnectionTimeout(SOLR_TIMEOUT_MINUTES, TimeUnit.MINUTES)