Apache Flink · Schema

JobDetailsVertexInfo

JobDetailsVertexInfo schema from Apache Flink REST API

ApacheBatch ProcessingBig DataOpen SourceReal-Time AnalyticsStateful ComputingStream Processing

Properties

Name Type Description
duration integer
end-time integer
id object
maxParallelism integer
metrics object
name string
parallelism integer
slotSharingGroupId object
start-time integer
status object
tasks object
View JSON Schema on GitHub

JSON Schema

flink-rest-job-details-vertex-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-job-details-vertex-info-schema.json",
  "title": "JobDetailsVertexInfo",
  "description": "JobDetailsVertexInfo schema from Apache Flink REST API",
  "type": "object",
  "properties": {
    "duration": {
      "type": "integer",
      "format": "int64"
    },
    "end-time": {
      "type": "integer",
      "format": "int64"
    },
    "id": {
      "$ref": "#/components/schemas/JobVertexID"
    },
    "maxParallelism": {
      "type": "integer",
      "format": "int32"
    },
    "metrics": {
      "$ref": "#/components/schemas/IOMetricsInfo"
    },
    "name": {
      "type": "string"
    },
    "parallelism": {
      "type": "integer",
      "format": "int32"
    },
    "slotSharingGroupId": {
      "$ref": "#/components/schemas/SlotSharingGroupId"
    },
    "start-time": {
      "type": "integer",
      "format": "int64"
    },
    "status": {
      "$ref": "#/components/schemas/ExecutionState"
    },
    "tasks": {
      "type": "object",
      "additionalProperties": {
        "type": "integer",
        "format": "int32"
      }
    }
  }
}