Apache Samza · JSON Structure

Apache Samza Partition Structure

Stream partition assigned to a task

Type: object Properties: 3
Big DataHadoopKafkaStream ProcessingStreamingApacheOpen Source

Partition 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

systemName stream partitionId

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-partition-structure.json",
  "description": "Stream partition assigned to a task",
  "type": "object",
  "properties": {
    "systemName": {
      "type": "string",
      "description": "System name (e.g. kafka)"
    },
    "stream": {
      "type": "string",
      "description": "Stream/topic name"
    },
    "partitionId": {
      "type": "int32",
      "description": "Partition number"
    }
  },
  "name": "Partition"
}