Apache Samza · JSON Structure

Apache Samza Checkpoint Structure

Checkpoint for a Samza task

Type: object Properties: 3
Big DataHadoopKafkaStream ProcessingStreamingApacheOpen Source

Checkpoint is a JSON Structure definition published by Apache Samza, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

taskName systemStreamPartition offset

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-samza/refs/heads/main/json-structure/apache-samza-checkpoint-structure.json",
  "description": "Checkpoint for a Samza task",
  "type": "object",
  "properties": {
    "taskName": {
      "type": "string",
      "description": "Task name"
    },
    "systemStreamPartition": {
      "type": "string",
      "description": "System stream partition identifier"
    },
    "offset": {
      "type": "string",
      "description": "Checkpoint offset value"
    }
  },
  "name": "Checkpoint"
}