Apache ORC · JSON Structure

Apache Orc Conversion Result Structure

ConversionResult schema from Apache ORC

Type: object Properties: 4
Big DataColumnar StorageCompressionFile FormatHadoopApacheOpen Source

ConversionResult is a JSON Structure definition published by Apache ORC, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

status outputPath rowsWritten duration

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-orc/refs/heads/main/json-structure/apache-orc-conversion-result-structure.json",
  "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": "int32",
      "example": 1000000
    },
    "duration": {
      "type": "int32",
      "description": "Duration in milliseconds",
      "example": 5234
    }
  },
  "name": "ConversionResult"
}