tree: b45bb7b40e655f7ace92ad0eb888b163b6751cc0 [path history] [tgz]
  1. src/
  2. build-ivy.xml
  3. build.xml
  4. howto_upgrade_opensearch.md
  5. ivy.xml
  6. plugin.xml
  7. README.md
src/plugin/indexer-opensearch-1x/README.md

indexer-opensearch1x plugin for Nutch

indexer-opensearch1x plugin is used for sending documents from one or more segments to an OpenSearch server. The configuration for the index writers is on conf/index-writers.xml file, included in the official Nutch distribution and it's as follow:

<writer id="<writer_id>" class="org.apache.nutch.indexwriter.opensearch1x.OpenSearch1xIndexWriter">
  <mapping>
    ...
  </mapping>
  <parameters>
    ...
  </parameters>   
</writer>

Each <writer> element has two mandatory attributes:

  • <writer_id> is a unique identification for each configuration. This feature allows Nutch to distinguish each configuration, even when they are for the same index writer. In addition, it allows to have multiple instances for the same index writer, but with different configurations.

  • org.apache.nutch.indexwriter.opensearch1x.OpenSearch1x.IndexWriter corresponds to the canonical name of the class that implements the IndexWriter extension point. This value should not be modified for the indexer-opensearch1x plugin.

Mapping

The mapping section is explained here. The structure of this section is general for all index writers.

Parameters

Each parameter has the form <param name="<name>" value="<value>"/> and the parameters for this index writer are:

Parameter NameDescriptionDefault value
hostComma-separated list of hostnames to send documents to using TransportClient. Either host and port must be defined.
portThe port to connect to using TransportClient.9300
schemeThe scheme (http or https) to connect to OpenSearch server.https
indexDefault index to send documents to.nutch
usernameUsername for auth credentialsadmin
passwordPassword for auth credentialsadmin
trust.store.pathPath to the trust store
trust.store.passwordPassword for trust store
trust.store.typeType of trust storeJKS
key.store.pathPath to the key store
key.store.passwordPassword for the key and the key store
key.store.typeType of key storeJKS
max.bulk.docsMaximum size of the bulk in number of documents.250
max.bulk.sizeMaximum size of the bulk in bytes.2500500
exponential.backoff.millisInitial delay for the BulkProcessor exponential backoff policy.100
exponential.backoff.retriesNumber of times the BulkProcessor exponential backoff policy should retry bulk operations.10
bulk.close.timeoutNumber of seconds allowed for the BulkProcessor to complete its last operation.600

Authentication and SSL/TLS

It is highly recommended that users use at least basic authentication (modify the username and password!!!) and that they set up at least the trust store (1-way TLS). For a “getting started” level introduction to setting up a trust store, see: Connecting java-high-level-rest-client. For a more in depth treatment, see: Configuring TLS certificates.

Users may opt for 2-way TLS and skip basic authentication (username and password).
To do this, specify both the trust.store.* parameters and the key.store.* parameters.

If users do not specify at least 1-way TLS (trust-store), this indexer logs a warning that this is a bad idea(TM), and it will proceed by completely ignoring all the SSL security.

Design

This index writer was built to be as close as possible to Nutch's existing indexer-elastic code. We therefore chose to use the to-be-deprecated-in-3.x opensearch-rest-high-level-client. We should plan to migrate to the java client for 2.x, whenever the BulkProcessor has been added. See the discussion on NUTCH-2920.