Apache Samza · Schema

Checkpoint

Checkpoint for a Samza task

Big DataHadoopKafkaStream ProcessingStreamingApacheOpen-Source

Properties

Name Type Description
taskName string Task name
systemStreamPartition string System stream partition identifier
offset string Checkpoint offset value
View JSON Schema on GitHub

JSON Schema

apache-samza-checkpoint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-samza/refs/heads/main/json-schema/apache-samza-checkpoint-schema.json",
  "title": "Checkpoint",
  "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"
    }
  }
}