Apache Samza · JSON Structure

Apache Samza Job Status Structure

Job status response

Type: object Properties: 4
Big DataHadoopKafkaStream ProcessingStreamingApacheOpen Source

JobStatus 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

jobName jobId status message

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-job-status-structure.json",
  "description": "Job status response",
  "type": "object",
  "properties": {
    "jobName": {
      "type": "string"
    },
    "jobId": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "STARTED",
        "STOPPED",
        "NEW",
        "STARTING",
        "STOPPING",
        "RESTARTING",
        "UNKNOWN"
      ]
    },
    "message": {
      "type": "string"
    }
  },
  "name": "JobStatus"
}