Apache ORC · Schema

ConversionResult

ConversionResult schema from Apache ORC

Big DataColumnar StorageCompressionFile FormatHadoopApacheOpen-Source

Properties

Name Type Description
status string
outputPath string
rowsWritten integer
duration integer Duration in milliseconds
View JSON Schema on GitHub

JSON Schema

apache-orc-conversion-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-orc/refs/heads/main/json-schema/apache-orc-conversion-result-schema.json",
  "title": "ConversionResult",
  "description": "ConversionResult schema from Apache ORC",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "success",
        "failure"
      ],
      "example": "success"
    },
    "outputPath": {
      "type": "string",
      "example": "data/sales.orc"
    },
    "rowsWritten": {
      "type": "integer",
      "example": 1000000
    },
    "duration": {
      "type": "integer",
      "description": "Duration in milliseconds",
      "example": 5234
    }
  }
}