Apache SeaTunnel · JSON Structure

Apache Seatunnel Job Stop Request Structure

Request to stop a SeaTunnel job

Type: object Properties: 2 Required: 1
Data IntegrationETLELTBatchStreamingApacheOpen Source

JobStopRequest is a JSON Structure definition published by Apache SeaTunnel, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

jobId isStopWithSavePoint

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-seatunnel/refs/heads/main/json-structure/apache-seatunnel-job-stop-request-structure.json",
  "description": "Request to stop a SeaTunnel job",
  "type": "object",
  "properties": {
    "jobId": {
      "type": "string",
      "description": "Job identifier to stop"
    },
    "isStopWithSavePoint": {
      "type": "boolean",
      "description": "Whether to create a savepoint before stopping"
    }
  },
  "required": [
    "jobId"
  ],
  "name": "JobStopRequest"
}