Apache Ignite · Schema
LocalPartitionStateResponse
Information about local partition state.
CachingCompute GridDistributed DatabaseIn-MemoryOpen SourceSQL
Properties
| Name | Type | Description |
|---|---|---|
| partitionId | integer | |
| zoneName | string | |
| tableId | integer | |
| schemaName | string | |
| tableName | string | |
| nodeName | string | |
| state | string | |
| estimatedRows | integer |
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-local-partition-state-response-schema.json",
"title": "LocalPartitionStateResponse",
"description": "Information about local partition state.",
"type": "object",
"properties": {
"partitionId": {
"type": "integer",
"format": "int32"
},
"zoneName": {
"type": "string"
},
"tableId": {
"type": "integer",
"format": "int32"
},
"schemaName": {
"type": "string"
},
"tableName": {
"type": "string"
},
"nodeName": {
"type": "string"
},
"state": {
"type": "string"
},
"estimatedRows": {
"type": "integer",
"format": "int64"
}
},
"required": [
"estimatedRows",
"nodeName",
"partitionId",
"schemaName",
"state",
"tableId",
"tableName",
"zoneName"
]
}