Apache Flink · Schema

RootExceptionInfo

RootExceptionInfo schema from Apache Flink REST API

ApacheBatch ProcessingBig DataOpen SourceReal-Time AnalyticsStateful ComputingStream Processing

Properties

Name Type Description
concurrentExceptions array
endpoint string
exceptionName string
failureLabels object
stacktrace string
taskManagerId string
taskName string
timestamp integer
View JSON Schema on GitHub

JSON Schema

flink-rest-root-exception-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-flink/refs/heads/main/json-schema/flink-rest-root-exception-info-schema.json",
  "title": "RootExceptionInfo",
  "description": "RootExceptionInfo schema from Apache Flink REST API",
  "type": "object",
  "properties": {
    "concurrentExceptions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ExceptionInfo"
      }
    },
    "endpoint": {
      "type": "string"
    },
    "exceptionName": {
      "type": "string"
    },
    "failureLabels": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    },
    "stacktrace": {
      "type": "string"
    },
    "taskManagerId": {
      "type": "string"
    },
    "taskName": {
      "type": "string"
    },
    "timestamp": {
      "type": "integer",
      "format": "int64"
    }
  }
}