Apache Flink · Schema

TaskCheckpointStatisticsWithSubtaskDetailsSummary

TaskCheckpointStatisticsWithSubtaskDetailsSummary schema from Apache Flink REST API

ApacheBatch ProcessingBig DataOpen SourceReal-Time AnalyticsStateful ComputingStream Processing

Properties

Name Type Description
alignment object
checkpoint_duration object
checkpointed_size object
end_to_end_duration object
start_delay object
state_size object
View JSON Schema on GitHub

JSON Schema

flink-rest-task-checkpoint-statistics-with-subtask-details-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-task-checkpoint-statistics-with-subtask-details-summary-schema.json",
  "title": "TaskCheckpointStatisticsWithSubtaskDetailsSummary",
  "description": "TaskCheckpointStatisticsWithSubtaskDetailsSummary schema from Apache Flink REST API",
  "type": "object",
  "properties": {
    "alignment": {
      "$ref": "#/components/schemas/CheckpointAlignmentSummary"
    },
    "checkpoint_duration": {
      "$ref": "#/components/schemas/CheckpointDurationSummary"
    },
    "checkpointed_size": {
      "$ref": "#/components/schemas/StatsSummaryDto"
    },
    "end_to_end_duration": {
      "$ref": "#/components/schemas/StatsSummaryDto"
    },
    "start_delay": {
      "$ref": "#/components/schemas/StatsSummaryDto"
    },
    "state_size": {
      "$ref": "#/components/schemas/StatsSummaryDto"
    }
  }
}