Apache Flink · Schema

CheckpointStatisticsSummary

CheckpointStatisticsSummary schema from Apache Flink REST API

ApacheBatch ProcessingBig DataOpen SourceReal-Time AnalyticsStateful ComputingStream Processing

Properties

Name Type Description
alignment_buffered object
checkpointed_size object
end_to_end_duration object
persisted_data object
processed_data object
state_size object
View JSON Schema on GitHub

JSON Schema

flink-rest-checkpoint-statistics-summary-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-checkpoint-statistics-summary-schema.json",
  "title": "CheckpointStatisticsSummary",
  "description": "CheckpointStatisticsSummary schema from Apache Flink REST API",
  "type": "object",
  "properties": {
    "alignment_buffered": {
      "$ref": "#/components/schemas/StatsSummaryDto"
    },
    "checkpointed_size": {
      "$ref": "#/components/schemas/StatsSummaryDto"
    },
    "end_to_end_duration": {
      "$ref": "#/components/schemas/StatsSummaryDto"
    },
    "persisted_data": {
      "$ref": "#/components/schemas/StatsSummaryDto"
    },
    "processed_data": {
      "$ref": "#/components/schemas/StatsSummaryDto"
    },
    "state_size": {
      "$ref": "#/components/schemas/StatsSummaryDto"
    }
  }
}