Apache Ignite · JSON Structure

Rest Api Local Zone Partition State Response Structure

Information about local zone partition state.

Type: object Properties: 5 Required: 5
CachingCompute GridDistributed DatabaseIn-MemoryOpen SourceSQL

LocalZonePartitionStateResponse is a JSON Structure definition published by Apache Ignite, describing 5 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

partitionId zoneName nodeName state estimatedRows

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-local-zone-partition-state-response-structure.json",
  "name": "LocalZonePartitionStateResponse",
  "description": "Information about local zone partition state.",
  "properties": {
    "partitionId": {
      "type": "int32"
    },
    "zoneName": {
      "type": "string"
    },
    "nodeName": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "estimatedRows": {
      "type": "int64"
    }
  },
  "required": [
    "estimatedRows",
    "nodeName",
    "partitionId",
    "state",
    "zoneName"
  ]
}