Node Reload

Operation related to reloading nodes.

Get cluster reload operations

Retrieve the latest reload operation done on each node in the specified cluster.

SecurityBasic Authentication
Request
path Parameters
bundle
required
string
Value: "POSTGRESQL"
clusterId
required
string <uuid>
Responses
200

Successfully return a list of node reload operations.

400

The requested bundle is not attached to this cluster.

404

Cluster not found

get/provisioning/v1/{bundle}/cluster/{clusterId}/reload
Request samples
Response samples
application/json
{
  • "operations": {
    }
}

Get node reload operations

Retrieve the latest reload operation of the specified node.

SecurityBasic Authentication
Request
path Parameters
bundle
required
string
Value: "POSTGRESQL"
nodeId
required
string <uuid>
Responses
200

Successfully return the latest node reload operation.

400

The requested bundle is not attached to this cluster.

404

Node not found

get/provisioning/v1/{bundle}/node/{nodeId}/reload
Request samples
Response samples
application/json
{
  • "operations": [
    ]
}

Trigger a node reload operation

Trigger a node reload operation, this is generally done to allow configuration changes to take effect without initiating a full restart.

SecurityBasic Authentication
Request
path Parameters
bundle
required
string
Value: "POSTGRESQL"
nodeId
required
string <uuid>
Responses
202

Successfully trigger the node reload operation.

400

The requested bundle is not attached to this cluster.

404

Node not found

409

A reload operation is already running.

post/provisioning/v1/{bundle}/node/{nodeId}/reload
Request samples
Response samples
application/json
{
  • "timeCreated": "2019-08-24T14:15:22Z",
  • "timeModified": "2019-08-24T14:15:22Z",
  • "status": "GENESIS",
  • "message": "string"
}