Apache Ignite · JSON Structure

Rest Api Restart Zone Partitions Request Structure

restart partitions configuration.

Type: object Properties: 3
CachingCompute GridDistributed DatabaseIn-MemoryOpen SourceSQL

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

Properties

nodeNames zoneName partitionIds

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-ignite/refs/heads/main/json-structure/rest-api-restart-zone-partitions-request-structure.json",
  "name": "RestartZonePartitionsRequest",
  "description": "restart partitions configuration.",
  "properties": {
    "nodeNames": {
      "type": "array",
      "description": "Names specifying nodes to restart zone partitions. Case-sensitive. If empty/omitted, partitions on all nodes are restarted.",
      "items": {
        "type": "string"
      }
    },
    "zoneName": {
      "type": "string",
      "description": "Name of the zone to restart partitions of. Without quotes, case-sensitive."
    },
    "partitionIds": {
      "type": "array",
      "description": "IDs of partitions to restart. If empty/omitted, all partitions will be restarted.",
      "items": {
        "type": "int32"
      }
    }
  }
}