Apache Nutch · Schema

ReaderConfig

Configuration specifying a file path for reader operations.

Web CrawlerIndexingSearchApacheJavaHadoopOpen-Source

Properties

Name Type Description
path string The path to the sequence file, link data, or node data to read.
View JSON Schema on GitHub

JSON Schema

apache-nutch-reader-config-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-nutch/refs/heads/main/json-schema/apache-nutch-reader-config-schema.json",
  "title": "ReaderConfig",
  "description": "Configuration specifying a file path for reader operations.",
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "The path to the sequence file, link data, or node data to read."
    }
  },
  "required": [
    "path"
  ],
  "example": {
    "path": "crawl-01/crawldb/current/part-00000/data"
  }
}