You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by da...@apache.org on 2018/10/08 03:39:05 UTC

[2/2] lucene-solr:jira/http2: Update javadocs links for ref-guide

Update javadocs links for ref-guide


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/ba69f2ac
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/ba69f2ac
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/ba69f2ac

Branch: refs/heads/jira/http2
Commit: ba69f2ac2699c885fe0cd24b37cf0169cee84b43
Parents: e903dfa
Author: Cao Manh Dat <da...@apache.org>
Authored: Mon Oct 8 10:39:06 2018 +0700
Committer: Cao Manh Dat <da...@apache.org>
Committed: Mon Oct 8 10:39:06 2018 +0700

----------------------------------------------------------------------
 .../src/major-changes-in-solr-8.adoc            | 26 +++++++++++++-------
 1 file changed, 17 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/ba69f2ac/solr/solr-ref-guide/src/major-changes-in-solr-8.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/major-changes-in-solr-8.adoc b/solr/solr-ref-guide/src/major-changes-in-solr-8.adoc
index 459d1cb..09e5db4 100644
--- a/solr/solr-ref-guide/src/major-changes-in-solr-8.adoc
+++ b/solr/solr-ref-guide/src/major-changes-in-solr-8.adoc
@@ -45,13 +45,21 @@ per TCP connection this means that for sending multiple requests at the same tim
 established. This leads to waste of resources on both-sides and long GC-pause. Solr 8 with HTTP/2 support overcomes that problem by allowing
 multiple requests can be sent in parallel using a same TCP connection.
 
-`Http2SolrClient` with HTTP/2 and async capabilities based on Jetty Client is introduced. This client replaced
-`HttpSolrClient` and `ConcurrentUpdateSolrClient` for sending most of internal requests (sent by `UpdateShardHandler`,
-`HttpShardHandler`). An interesting benchmark result showing gain of using `Http2SolrClient` had been posted
-https://issues.apache.org/jira/browse/SOLR-12642?focusedCommentId=16606648&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-16606648[here]. However this leads to several changes in configuration and authentication setup
-
-* `UpdateShardHandler.maxConnections` parameter is no longer being used
-* `HttpShardHandlerFactory.maxConnections` parameter is no longer being used
-*  Custom `AuthenticationPlugin` must provide its own setup for `Http2SolrClient` through
-   `SolrHttpClientBuilder.setHttp2Configurator`, if not internal requests can't be authenticated
+{solr-javadocs}/solr-solrj/org/apache/solr/client/solrj/impl/Http2SolrClient.html[`Http2SolrClient`]
+with HTTP/2 and async capabilities based on Jetty Client is introduced. This client replaced
+{solr-javadocs}/solr-solrj/org/apache/solr/client/solrj/impl/HttpSolrClient.html[`HttpSolrClient`] and
+{solr-javadocs}/solr-solrj/org/apache/solr/client/solrj/impl/ConcurrentUpdateSolrClient.html[`ConcurrentUpdateSolrClient`]
+for sending most of internal requests (sent by
+{solr-javadocs}/solr-core/org/apache/solr/update/UpdateShardHandler.html[`UpdateShardHandler`],
+{solr-javadocs}/solr-core/org/apache/solr/handler/component/HttpShardHandler.html[`HttpShardHandler`]).
+An interesting benchmark result showing gain of using {solr-javadocs}/solr-solrj/org/apache/solr/client/solrj/impl/Http2SolrClient.html[`Http2SolrClient`] had been posted
+https://issues.apache.org/jira/browse/SOLR-12642?focusedCommentId=16606648&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-16606648[here].
+However this leads to several changes in configuration and authentication setup
+
+* {solr-javadocs}/solr-core/org/apache/solr/update/UpdateShardHandler.html[`UpdateShardHandler.maxConnections`] parameter is no longer being used
+* {solr-javadocs}/solr-core/org/apache/solr/handler/component/HttpShardHandler.html[`HttpShardHandlerFactory.maxConnections`] parameter is no longer being used
+*  Custom {solr-javadocs}/solr-core/org/apache/solr/security/AuthenticationPlugin.html[`AuthenticationPlugin`] must provide its own setup for
+   {solr-javadocs}/solr-solrj/org/apache/solr/client/solrj/impl/Http2SolrClient.html[`Http2SolrClient`] through
+   {solr-javadocs}/solr-solrj/org/apache/solr/client/solrj/impl/SolrHttpClientBuilder.html[`SolrHttpClientBuilder.setHttp2Configurator`],
+   if not internal requests can't be authenticated