Apache Ignite system API
The system API from Apache Ignite — 2 operation(s) for system.
The system API from Apache Ignite — 2 operation(s) for system.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/apache-ignite-system-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Apache Ignite REST module clusterConfiguration System API
contact:
email: user@ignite.apache.org
license:
name: Apache 2.0
url: https://ignite.apache.org
version: 3.1.0
servers:
- url: http://localhost:10300
security:
- basicAuth: []
tags:
- name: system
paths:
/management/v1/recovery/cluster/migrate:
post:
tags:
- system
description: Migrates nodes from old cluster to new (repaired) cluster.
operationId: migrate
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/MigrateRequest'
examples:
migrateRequestExample:
summary: Default migrate request
x-microcks-default: true
value:
cmgNodes: []
metaStorageNodes: []
version: example-value
clusterId: item-5239
clusterName: example-name
formerClusterIds: []
required: true
responses:
'200':
description: Migration initiated.
'500':
description: Internal error.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Problem'
'400':
description: Bad request.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Problem'
x-microcks-operation:
delay: 0
dispatcher: FALLBACK
/management/v1/recovery/cluster/reset:
post:
tags:
- system
description: Initiates cluster reset to repair CMG/Metastorage group/both.
operationId: resetCluster
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/ResetClusterRequest'
examples:
resetClusterRequestExample:
summary: Default resetCluster request
x-microcks-default: true
value:
cmgNodeNames: []
metastorageReplicationFactor: 50
required: true
responses:
'200':
description: Cluster reset initiated.
'500':
description: Internal error.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Problem'
'400':
description: Bad request.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Problem'
x-microcks-operation:
delay: 0
dispatcher: FALLBACK
components:
schemas:
ResetClusterRequest:
type: object
properties:
cmgNodeNames:
type:
- array
- 'null'
description: Names of the proposed CMG nodes. Optional if the MG group is being repaired. If not specified, the current CMG nodes are used.
items:
type: string
metastorageReplicationFactor:
type:
- integer
- 'null'
description: Number of nodes in the voting member set of the Metastorage RAFT group.
format: int32
description: Reset cluster.
InvalidParam:
type: object
properties:
name:
type: string
description: Parameter name.
reason:
type: string
description: The issue with the parameter.
description: Information about invalid request parameter.
MigrateRequest:
type: object
properties:
cmgNodes:
type: array
description: Names of the CMG node names.
items:
type: string
metaStorageNodes:
type: array
description: Names of the Metastorage node names.
items:
type: string
version:
type: string
description: Ignite version.
clusterId:
type: string
description: ID of the cluster.
format: uuid
clusterName:
type: string
description: Name of the cluster.
formerClusterIds:
type:
- array
- 'null'
description: IDs the cluster had before. If CMG/Metastorage group were never repaired, this is null.
items:
type: string
format: uuid
description: Migrate nodes to new cluster.
Problem:
type: object
properties:
title:
type: string
description: Short summary of the issue.
status:
type: integer
description: Returned HTTP status code.
format: int32
code:
type: string
description: Ignite 3 error code.
type:
type: string
description: URI to documentation regarding the issue.
detail:
type: string
description: Extended explanation of the issue.
node:
type: string
description: Name of the node the issue happened on.
traceId:
type: string
description: Unique issue identifier. This identifier can be used to find logs related to the issue.
format: uuid
invalidParams:
type: array
description: A list of parameters that did not pass validation and the reason for it.
items:
$ref: '#/components/schemas/InvalidParam'
description: Extended description of the problem with the request.
securitySchemes:
basicAuth:
type: http
scheme: basic