Apache Ignite · Schema

RestartZonePartitionsRequest

restart partitions configuration.

CachingCompute GridDistributed DatabaseIn-MemoryOpen SourceSQL

Properties

Name Type Description
nodeNames array Names specifying nodes to restart zone partitions. Case-sensitive. If empty/omitted, partitions on all nodes are restarted.
zoneName string Name of the zone to restart partitions of. Without quotes, case-sensitive.
partitionIds array IDs of partitions to restart. If empty/omitted, all partitions will be restarted.
View JSON Schema on GitHub

JSON Schema

rest-api-restart-zone-partitions-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-ignite/refs/heads/main/json-schema/rest-api-restart-zone-partitions-request-schema.json",
  "title": "RestartZonePartitionsRequest",
  "description": "restart partitions configuration.",
  "type": "object",
  "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": "integer",
        "format": "int32"
      }
    }
  }
}