Apache Ignite · JSON Structure

Rest Api Reset Partitions Request Structure

Reset partitions configuration.

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

ResetPartitionsRequest 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

zoneName partitionIds tableName

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-reset-partitions-request-structure.json",
  "name": "ResetPartitionsRequest",
  "description": "Reset partitions configuration.",
  "properties": {
    "zoneName": {
      "type": "string",
      "description": "Name of the zone to reset partitions of. Without quotes, case-sensitive."
    },
    "partitionIds": {
      "type": "array",
      "description": "IDs of partitions to reset. All if empty.",
      "items": {
        "type": "int32"
      }
    },
    "tableName": {
      "type": "string",
      "description": "Fully-qualified name of the table to reset partitions of. Without quotes, case-sensitive."
    }
  }
}