Apache Flink · Schema

ExceptionInfo

ExceptionInfo schema from Apache Flink REST API

ApacheBatch ProcessingBig DataOpen SourceReal-Time AnalyticsStateful ComputingStream Processing

Properties

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

JSON Schema

flink-rest-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-exception-info-schema.json",
  "title": "ExceptionInfo",
  "description": "ExceptionInfo schema from Apache Flink REST API",
  "type": "object",
  "properties": {
    "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"
    }
  }
}