Apache Flink · Schema

SubtaskAccumulatorsInfo

SubtaskAccumulatorsInfo schema from Apache Flink REST API

ApacheBatch ProcessingBig DataOpen SourceReal-Time AnalyticsStateful ComputingStream Processing

Properties

Name Type Description
attempt integer
endpoint string
subtask integer
user-accumulators array
View JSON Schema on GitHub

JSON Schema

flink-rest-subtask-accumulators-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-subtask-accumulators-info-schema.json",
  "title": "SubtaskAccumulatorsInfo",
  "description": "SubtaskAccumulatorsInfo schema from Apache Flink REST API",
  "type": "object",
  "properties": {
    "attempt": {
      "type": "integer",
      "format": "int32"
    },
    "endpoint": {
      "type": "string"
    },
    "subtask": {
      "type": "integer",
      "format": "int32"
    },
    "user-accumulators": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/UserAccumulator"
      }
    }
  }
}