mirror of https://github.com/apache/lucene.git
SOLR-1881: add url-scheme for SearchHandler config
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@986815 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b573c16001
commit
8668ae733e
|
@ -228,6 +228,9 @@ New Features
|
||||||
|
|
||||||
* SOLR-2049: Add hl.multiValuedSeparatorChar for FastVectorHighlighter, per LUCENE-2603. (koji)
|
* SOLR-2049: Add hl.multiValuedSeparatorChar for FastVectorHighlighter, per LUCENE-2603. (koji)
|
||||||
|
|
||||||
|
* SOLR-1881: add a url-scheme config string to SearchHandler to specify alternate
|
||||||
|
URL prefixes for distributed search shard requests. (Sami Siren via yonik)
|
||||||
|
|
||||||
Optimizations
|
Optimizations
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
|
@ -543,6 +543,9 @@
|
||||||
<arr name="last-components">
|
<arr name="last-components">
|
||||||
<str>spellcheck</str>
|
<str>spellcheck</str>
|
||||||
</arr>
|
</arr>
|
||||||
|
<!--
|
||||||
|
<str name="url-scheme">httpx</str>
|
||||||
|
-->
|
||||||
</requestHandler>
|
</requestHandler>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -64,8 +64,13 @@ public class SearchHandler extends RequestHandlerBase implements SolrCoreAware
|
||||||
// cannot be established within x ms. with a
|
// cannot be established within x ms. with a
|
||||||
// java.net.SocketTimeoutException: Connection timed out
|
// java.net.SocketTimeoutException: Connection timed out
|
||||||
static final String INIT_CONNECTION_TIMEOUT = "shard-connection-timeout";
|
static final String INIT_CONNECTION_TIMEOUT = "shard-connection-timeout";
|
||||||
|
|
||||||
|
// URL scheme to be used in distributed search.
|
||||||
|
static final String INIT_URL_SCHEME = "url-scheme";
|
||||||
|
|
||||||
static int soTimeout = 0; //current default values
|
static int soTimeout = 0; //current default values
|
||||||
static int connectionTimeout = 0; //current default values
|
static int connectionTimeout = 0; //current default values
|
||||||
|
public static String scheme = "http://"; //current default values
|
||||||
|
|
||||||
protected static Logger log = LoggerFactory.getLogger(SearchHandler.class);
|
protected static Logger log = LoggerFactory.getLogger(SearchHandler.class);
|
||||||
|
|
||||||
|
@ -148,6 +153,12 @@ public class SearchHandler extends RequestHandlerBase implements SolrCoreAware
|
||||||
soTimeout = (Integer) so;
|
soTimeout = (Integer) so;
|
||||||
log.info("Setting shard-socket-timeout to: " + soTimeout);
|
log.info("Setting shard-socket-timeout to: " + soTimeout);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Object urlScheme = initArgs.get(INIT_URL_SCHEME);
|
||||||
|
if (urlScheme != null) {
|
||||||
|
SearchHandler.scheme = (String) urlScheme + "://";
|
||||||
|
log.info("Setting url-scheme to: " + urlScheme);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<SearchComponent> getComponents() {
|
public List<SearchComponent> getComponents() {
|
||||||
|
@ -403,7 +414,7 @@ class HttpCommComponent {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// String url = "http://" + shard + "/select";
|
// String url = "http://" + shard + "/select";
|
||||||
String url = "http://" + shard;
|
String url = SearchHandler.scheme + shard;
|
||||||
|
|
||||||
params.remove(CommonParams.WT); // use default (currently javabin)
|
params.remove(CommonParams.WT); // use default (currently javabin)
|
||||||
params.remove(CommonParams.VERSION);
|
params.remove(CommonParams.VERSION);
|
||||||
|
|
Loading…
Reference in New Issue