Apache Ignite · Schema
RestartPartitionsRequest
restart partitions configuration.
CachingCompute GridDistributed DatabaseIn-MemoryOpen SourceSQL
Properties
| Name | Type | Description |
|---|---|---|
| nodeNames | array | Names specifying nodes to restart 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. |
| tableName | string | Fully-qualified name of the table to restart partitions of. |
JSON Schema
{
"$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-partitions-request-schema.json",
"title": "RestartPartitionsRequest",
"description": "restart partitions configuration.",
"type": "object",
"properties": {
"nodeNames": {
"type": "array",
"description": "Names specifying nodes to restart 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"
}
},
"tableName": {
"type": "string",
"description": "Fully-qualified name of the table to restart partitions of."
}
}
}