Apache Flink · Schema

CompletedSubtaskCheckpointStatistics

CompletedSubtaskCheckpointStatistics schema from Apache Flink REST API

ApacheBatch ProcessingBig DataOpen SourceReal-Time AnalyticsStateful ComputingStream Processing
View JSON Schema on GitHub

JSON Schema

flink-rest-completed-subtask-checkpoint-statistics-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-completed-subtask-checkpoint-statistics-schema.json",
  "title": "CompletedSubtaskCheckpointStatistics",
  "description": "CompletedSubtaskCheckpointStatistics schema from Apache Flink REST API",
  "type": "object",
  "allOf": [
    {
      "$ref": "#/components/schemas/SubtaskCheckpointStatistics"
    },
    {
      "type": "object",
      "properties": {
        "ack_timestamp": {
          "type": "integer",
          "format": "int64"
        },
        "end_to_end_duration": {
          "type": "integer",
          "format": "int64"
        },
        "checkpointed_size": {
          "type": "integer",
          "format": "int64"
        },
        "state_size": {
          "type": "integer",
          "format": "int64"
        },
        "checkpoint": {
          "$ref": "#/components/schemas/CheckpointDuration"
        },
        "alignment": {
          "$ref": "#/components/schemas/CheckpointAlignment"
        },
        "start_delay": {
          "type": "integer",
          "format": "int64"
        },
        "unaligned_checkpoint": {
          "type": "boolean"
        },
        "aborted": {
          "type": "boolean"
        }
      }
    }
  ]
}