Apache Flink · JSON Structure

Flink Rest Checkpoint Statistics Structure

CheckpointStatistics schema from Apache Flink REST API

Type: object Properties: 17 Required: 1
ApacheBatch ProcessingBig DataOpen SourceReal-Time AnalyticsStateful ComputingStream Processing

CheckpointStatistics is a JSON Structure definition published by Apache Flink, describing 17 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

alignment_buffered checkpoint_type checkpointed_size className end_to_end_duration id is_savepoint latest_ack_timestamp num_acknowledged_subtasks num_subtasks persisted_data processed_data savepointFormat state_size status tasks trigger_timestamp

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-flink/refs/heads/main/json-structure/flink-rest-checkpoint-statistics-structure.json",
  "name": "CheckpointStatistics",
  "description": "CheckpointStatistics schema from Apache Flink REST API",
  "type": "object",
  "properties": {
    "alignment_buffered": {
      "type": "int64"
    },
    "checkpoint_type": {
      "type": "string"
    },
    "checkpointed_size": {
      "type": "int64"
    },
    "className": {
      "type": "string"
    },
    "end_to_end_duration": {
      "type": "int64"
    },
    "id": {
      "type": "int64"
    },
    "is_savepoint": {
      "type": "boolean"
    },
    "latest_ack_timestamp": {
      "type": "int64"
    },
    "num_acknowledged_subtasks": {
      "type": "int32"
    },
    "num_subtasks": {
      "type": "int32"
    },
    "persisted_data": {
      "type": "int64"
    },
    "processed_data": {
      "type": "int64"
    },
    "savepointFormat": {
      "type": "string"
    },
    "state_size": {
      "type": "int64"
    },
    "status": {
      "type": "string"
    },
    "tasks": {
      "type": "object"
    },
    "trigger_timestamp": {
      "type": "int64"
    }
  },
  "required": [
    "className"
  ]
}