Author: mattmann
Date: Fri Apr 17 20:36:47 2015
New Revision: 1674396
URL: http://svn.apache.org/r1674396
Log:
Fix for NUTCH-1986 Clarify Elastic Search Indexer Plugin Settings contributed
by Michael Joyce <[email protected]> this closes #17.
Modified:
nutch/trunk/CHANGES.txt
nutch/trunk/conf/nutch-default.xml
Modified: nutch/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/nutch/trunk/CHANGES.txt?rev=1674396&r1=1674395&r2=1674396&view=diff
==============================================================================
--- nutch/trunk/CHANGES.txt (original)
+++ nutch/trunk/CHANGES.txt Fri Apr 17 20:36:47 2015
@@ -2,6 +2,8 @@ Nutch Change Log
Nutch Current Development 1.10-SNAPSHOT
+* NUTCH-1986 Clarify Elastic Search Indexer Plugin Settings (Michael Joyce via
mattmann)
+
* NUTCH-1906 Typo in CrawlDbReader command line help (Michael Joyce via
mattmann)
* NUTCH-1911 Imeprove DomainStatistics tool command line parsing (Michael
Joyce via mattmann)
Modified: nutch/trunk/conf/nutch-default.xml
URL:
http://svn.apache.org/viewvc/nutch/trunk/conf/nutch-default.xml?rev=1674396&r1=1674395&r2=1674396&view=diff
==============================================================================
--- nutch/trunk/conf/nutch-default.xml (original)
+++ nutch/trunk/conf/nutch-default.xml Fri Apr 17 20:36:47 2015
@@ -1573,22 +1573,32 @@
<property>
<name>elastic.host</name>
- <value></value>
- <description>The hostname to send documents to using TransportClient. Either
host
- and port must be defined or cluster.</description>
+ <value>localhost</value>
+ <description>
+ The hostname to send documents to using TransportClient. Either host
+ and port must be defined or cluster to connect.
+ </description>
</property>
<property>
<name>elastic.port</name>
- <value>9300</value>The port to connect to using TransportClient.<description>
+ <value>9300</value>
+ <description>
+ The port to connect to using TransportClient. Note, the default port
+ for HTTP is 9200. The TransportClient port is NOT the same. By default
+ it should be 9300.
</description>
</property>
<property>
<name>elastic.cluster</name>
- <value></value>
- <description>The cluster name to discover. Either host and potr must be
defined
- or cluster.</description>
+ <value>elasticsearch</value>
+ <description>
+ The cluster name to discover. Either host and port must be defined
+ or cluster. The default Elasticsearch cluster name is 'elasticsearch'. If
+ yours is different be sure to update this value even if you specified a host
+ and port for connection otherwise you may encounter issues.
+ </description>
</property>
<property>