Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

API

Configuration REST API


Info

Configuration API already exists in Apache Ignite 3.


This REST group provides methods to read and update node/cluster configuration.

MethodPathParametersDescription
GET/management/v1/configuration/node/
Return node configuration in HOCON format
GET/management/v1/configuration/node/{configPath}
  • configPath: subtree selector in format root.subtree.subsubtree

Return node configuration subtree in HOCON format specified with configPath parameter.

PATCH/management/v1/configuration/node/
  • request body: configuration to update in HOCON format
Update node configuration with a given body.
GET/management/v1/configuration/cluster/
Return cluster configuration in HOCON format.
GET/management/v1/configuration/cluster/{configPath}
  • configPath: subtree selector in format root.subtree.subsubtree

Return cluster configuration subtree in HOCON format specified with configPath parameter.

PATCH/management/v1/configuration/cluster/
  • request body: configuration to update in HOCON format

Update cluster configuration with a given body.

Management REST API

Info

Management API already exists in Apache Ignite 3.

Manage cluster state.

MethodPathParametersDescription
POST/management/v1/init/
  • body: list of meta storage node names and list of cmg nodes
Initialize cluster

...