Apache Samza · Schema

Task

Samza task within a container

Big DataHadoopKafkaStream ProcessingStreamingApacheOpen-Source

Properties

Name Type Description
taskName string Task name
containerId string Container the task runs on
status string Task status
partitions array
View JSON Schema on GitHub

JSON Schema

apache-samza-task-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-task-schema.json",
  "title": "Task",
  "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"
      }
    }
  }
}