Cluster

Cluster Configs Definition

These are the properties that be set at the cluster level.

Cluster Configs APIs

List All Cluster Configs

GET http://<controller>:<port>/cluster/configs

Description - Lists all the configurations set at the cluster level

{
  "allowParticipantAutoJoin": "true",
  "enable.case.insensitive": "false",
  "pinot.broker.enable.query.limit.override": "false",
  "default.hyperloglog.log2m": "8"
}

Update Cluster Configs

POST http://<controller>:<port>/cluster/configs

Add new or update existing cluster configs.

Request Body

{
  "status": "Updated cluster config."
}

Example:

Last updated