Apache Ignite clusterConfiguration API
The clusterConfiguration API from Apache Ignite — 2 operation(s) for clusterconfiguration.
The clusterConfiguration API from Apache Ignite — 2 operation(s) for clusterconfiguration.
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-clusterconfiguration-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 Cluster Configuration 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: clusterConfiguration
paths:
/management/v1/configuration/cluster:
get:
tags:
- clusterConfiguration
summary: Apache Ignite Get Cluster Configuration
description: Gets the current configuration of the cluster. The configuration is returned in HOCON format.
operationId: getClusterConfiguration
responses:
'200':
description: Received cluster configuration.
content:
text/plain:
schema:
type: string
'500':
description: Internal error.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Problem'
'400':
description: Incorrect configuration.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Problem'
'404':
description: Configuration not found. Most likely, the cluster is not initialized.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Problem'
x-microcks-operation:
delay: 0
dispatcher: FALLBACK
patch:
tags:
- clusterConfiguration
summary: Apache Ignite Update Cluster Configuration
description: Updates cluster configuration. New configuration should be provided in HOCON format.
operationId: updateClusterConfiguration
requestBody:
description: The cluster configuration to update.
content:
text/plain:
schema:
type: string
required: true
responses:
'200':
description: Configuration updated.
'500':
description: Internal error.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Problem'
'400':
description: Incorrect configuration.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Problem'
'404':
description: Configuration not found. Most likely, the cluster is not initialized.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Problem'
'422':
description: Configuration parse error.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Problem'
x-microcks-operation:
delay: 0
dispatcher: FALLBACK
/management/v1/configuration/cluster/{path}:
get:
tags:
- clusterConfiguration
summary: Apache Ignite Get Configuration Represented by Path
description: Gets the configuration on the specific path. Configuration is in HOCON format
operationId: getClusterConfigurationByPath
parameters:
- name: path
in: path
description: 'Configuration tree address. For example: `element.subelement`.'
required: true
schema:
type: string
example: example-value
responses:
'200':
description: Configuration of the cluster on the specified path.
content:
text/plain:
schema:
type: string
'500':
description: Internal error.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Problem'
'400':
description: Incorrect configuration.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Problem'
'404':
description: Configuration not found. Most likely, the cluster is not initialized.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Problem'
x-microcks-operation:
delay: 0
dispatcher: FALLBACK
components:
schemas:
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.
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