mirror of https://github.com/apache/lucene.git
SOLR-5533: Improve out of the box support for running Solr on hdfs with SolrCloud.
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1548593 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0c8d47a00e
commit
618f6b876d
|
@ -234,6 +234,9 @@ Other Changes
|
||||||
|
|
||||||
* SOLR-5539: Admin UI - Remove ability to create/modify files (steffkes)
|
* SOLR-5539: Admin UI - Remove ability to create/modify files (steffkes)
|
||||||
|
|
||||||
|
* SOLR-5533: Improve out of the box support for running Solr on hdfs with
|
||||||
|
SolrCloud. (Mark Miller)
|
||||||
|
|
||||||
================== 4.6.0 ==================
|
================== 4.6.0 ==================
|
||||||
|
|
||||||
Versions of Major Components
|
Versions of Major Components
|
||||||
|
|
|
@ -117,7 +117,20 @@
|
||||||
persistent, and doesn't work with replication.
|
persistent, and doesn't work with replication.
|
||||||
-->
|
-->
|
||||||
<directoryFactory name="DirectoryFactory"
|
<directoryFactory name="DirectoryFactory"
|
||||||
class="${solr.directoryFactory:solr.NRTCachingDirectoryFactory}"/>
|
class="${solr.directoryFactory:solr.NRTCachingDirectoryFactory}">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- These will be used if you are using the solr.HdfsDirectoryFactory,
|
||||||
|
otherwise they will be ignored. If you don't plan on using hdfs,
|
||||||
|
you can safely remove this section. -->
|
||||||
|
<!-- The root directory that collection data should be written to. -->
|
||||||
|
<str name="solr.hdfs.home">${solr.hdfs.home:}</str>
|
||||||
|
<!-- The hadoop configuration files to use for the hdfs client. -->
|
||||||
|
<str name="solr.hdfs.confdir">${solr.hdfs.confdir:}</str>
|
||||||
|
<!-- Enable/Disable the hdfs cache. -->
|
||||||
|
<str name="solr.hdfs.blockcache.enabled">${solr.hdfs.blockcache.enabled:true}</str>
|
||||||
|
|
||||||
|
</directoryFactory>
|
||||||
|
|
||||||
<!-- The CodecFactory for defining the format of the inverted index.
|
<!-- The CodecFactory for defining the format of the inverted index.
|
||||||
The default implementation is SchemaCodecFactory, which is the official Lucene
|
The default implementation is SchemaCodecFactory, which is the official Lucene
|
||||||
|
|
Loading…
Reference in New Issue