dsmiley commented on code in PR #4050: URL: https://github.com/apache/solr/pull/4050#discussion_r2694752738
########## solr/solrj/src/java/org/apache/solr/client/solrj/impl/ConcurrentUpdateJdkSolrClient.java: ########## @@ -0,0 +1,102 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.solr.client.solrj.impl; + +import java.io.IOException; +import java.io.InputStream; +import java.net.http.HttpResponse; +import java.util.concurrent.CompletableFuture; +import java.util.concurrent.ExecutionException; +import java.util.concurrent.TimeUnit; +import org.apache.solr.client.solrj.request.UpdateRequest; + +/** A ConcurrentUpdate SolrClient using {@link HttpJdkSolrClient}. */ +public class ConcurrentUpdateJdkSolrClient extends ConcurrentUpdateBaseSolrClient { + + private final HttpJdkSolrClient client; + + protected ConcurrentUpdateJdkSolrClient(ConcurrentUpdateJdkSolrClient.Builder builder) { + super(builder); + this.client = (HttpJdkSolrClient) builder.getClient(); + } + + @Override + protected StreamingResponse doSendUpdateStream(Update update) { + UpdateRequest req = update.request(); + String collection = update.collection(); + CompletableFuture<HttpResponse<InputStream>> resp = + client.requestInputStreamAsync(basePath, req, collection); + + return new StreamingResponse() { + + @Override + public int awaitResponse(long timeoutMillis) throws Exception { + return resp.get(timeoutMillis, TimeUnit.MILLISECONDS).statusCode(); + } + + @Override + public InputStream getInputStream() { + try { + return resp.get().body(); + } catch (InterruptedException e) { + Thread.currentThread().interrupt(); + return InputStream.nullInputStream(); + } catch (ExecutionException e) { + throw new RuntimeException(e); + } + } + + @Override + public Object getUnderlyingResponse() { + return resp; + } + + @Override + public void close() throws IOException { + getInputStream().close(); + } + }; + } + + public static class Builder extends ConcurrentUpdateBaseSolrClient.Builder { + /** + * @see org.apache.solr.client.solrj.impl.ConcurrentUpdateBaseSolrClient.Builder#Builder(String, + * HttpSolrClientBase) + */ + public Builder(String baseUrl, HttpJdkSolrClient client) { + + this(baseUrl, client, false); + // The base class uses idle timeout with StreamingResponse#awaitResponse so it needs to be + // set! + this.idleTimeoutMillis = 1000; Review Comment: Good catch! The base builder ought to have a toggle for this. And clarified semantics -- like is -1 supported as infinite? I propose that infinite be the default for this new client. HttpJdkSolrClient internal comments document "note: idle timeout isn't used for the JDK client". The Jetty one I see, we're able to ask the client. 1 second is an extremely low timeout for idle/socket timeout. -- 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]
