note about downloading solr dists
[lui-solr.git] / conf / solr / solr-home / solr.xml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <!--
3  Licensed to the Apache Software Foundation (ASF) under one or more
4  contributor license agreements.  See the NOTICE file distributed with
5  this work for additional information regarding copyright ownership.
6  The ASF licenses this file to You under the Apache License, Version 2.0
7  (the "License"); you may not use this file except in compliance with
8  the License.  You may obtain a copy of the License at
9
10      http://www.apache.org/licenses/LICENSE-2.0
11
12  Unless required by applicable law or agreed to in writing, software
13  distributed under the License is distributed on an "AS IS" BASIS,
14  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  See the License for the specific language governing permissions and
16  limitations under the License.
17 -->
18
19 <!--
20    This is an example of a simple "solr.xml" file for configuring one or 
21    more Solr Cores, as well as allowing Cores to be added, removed, and 
22    reloaded via HTTP requests.
23
24    More information about options available in this configuration file, 
25    and Solr Core administration can be found online:
26    http://wiki.apache.org/solr/CoreAdmin
27 -->
28
29 <solr>
30
31   <solrcloud>
32
33     <str name="host">${host:}</str>
34     <int name="hostPort">${jetty.port:8983}</int>
35     <str name="hostContext">${hostContext:solr}</str>
36
37     <bool name="genericCoreNodeNames">${genericCoreNodeNames:true}</bool>
38
39     <int name="zkClientTimeout">${zkClientTimeout:30000}</int>
40     <int name="distribUpdateSoTimeout">${distribUpdateSoTimeout:600000}</int>
41     <int name="distribUpdateConnTimeout">${distribUpdateConnTimeout:60000}</int>
42
43   </solrcloud>
44
45   <shardHandlerFactory name="shardHandlerFactory"
46     class="HttpShardHandlerFactory">
47     <int name="socketTimeout">${socketTimeout:600000}</int>
48     <int name="connTimeout">${connTimeout:60000}</int>
49   </shardHandlerFactory>
50
51 </solr>