Apache Samza · JSON Structure

Apache Samza Task Structure

Samza task within a container

Type: object Properties: 4
Big DataHadoopKafkaStream ProcessingStreamingApacheOpen Source

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

Properties

taskName containerId status partitions

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-task-structure.json",
  "description": "Samza task within a container",
  "type": "object",
  "properties": {
    "taskName": {
      "type": "string",
      "description": "Task name"
    },
    "containerId": {
      "type": "string",
      "description": "Container the task runs on"
    },
    "status": {
      "type": "string",
      "description": "Task status"
    },
    "partitions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Partition"
      }
    }
  },
  "name": "Task"
}