Class FieldReportTransformer

java.lang.Object
com.norconex.importer.handler.transformer.impl.FieldReportTransformer
All Implemented Interfaces:
Configurable<FieldReportTransformerConfig>, ConfigurableDocHandler<FieldReportTransformerConfig>, DocHandler

public class FieldReportTransformer extends Object implements ConfigurableDocHandler<FieldReportTransformerConfig>

A utility tagger that reports in a CSV file the fields discovered in a crawl session, captured at the point of your choice in the importing process. If you use this class to report on all fields discovered, make sure you use it as a post-parse handler, before you are limiting which fields you want to keep.

The report will list one field per row, along with a few sample values (3 by default). The samples will be the first ones encountered.

This handler does not impact the data being imported at all (it only reads it). It also do not store the "content" as a field.

When not specified with FieldReportTransformerConfig.setFile(Path), a file called "field-report.csv" will be created in the working directory.

Can be used both as a pre-parse or post-parse handler.

See Also:
  • Constructor Details

    • FieldReportTransformer

      public FieldReportTransformer()
  • Method Details