Apache ORC · Schema

OperationResult

OperationResult schema from Apache ORC

Big DataColumnar StorageCompressionFile FormatHadoopApacheOpen Source

Properties

Name Type Description
status string
outputPath string
rowsWritten integer
View JSON Schema on GitHub

JSON Schema

apache-orc-operation-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-operation-result-schema.json",
  "title": "OperationResult",
  "description": "OperationResult schema from Apache ORC",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "success",
        "failure"
      ],
      "example": "success"
    },
    "outputPath": {
      "type": "string",
      "example": "data/merged.orc"
    },
    "rowsWritten": {
      "type": "integer",
      "example": 2000000
    }
  }
}