Configuring the Child Split Processor

This processor splits XML documents in several chunks. Every chunk is then handled as a separate document by a child processor. Every first-level child of the XML document will be extracted.

For example, if you want to index all books from the following file:

<books>
  <book><title>title..</title></book> 
  <book><title>title..</title></book>
</books>

You can use a Child split processor to extract every <book/> node, and use an XPathProcessor to extract the title with the XPath expression /book/title.

See Also
Configuring the XPath Processor
  1. Expand Child split processors, and click Add item.
  2. In Next processor's id, specify the identifier of the next processor in the pipeline that must process chunks.
  3. In Processor's id, specify the identifier of the processor that must process documents. This id must be identical to the Entry point id.
  4. Click Apply.