Update cluster configuration

PUT /v1/cluster_config

Modify cluster configuration properties of a cluster.

Query parameters

  • force string

    If nonzero, skip validation of properties, and permit setting unknown properties

  • dry_run string

    If nonzero, do not apply any changes (but still do validation and return 400 on errors)

application/json

Body

  • upsert object Required

    Cluster configuration property key-value pairs to add or update.

    Hide upsert attribute Show upsert attribute object
    • * string Additional properties
  • remove array[string] Required

    Cluster configuration property keys to reset to their default.

Responses

  • 200

    Success

PUT /v1/cluster_config
curl \
 --request PUT 'http://localhost:9644/v1/cluster_config' \
 --header "Content-Type: application/json" \
 --data '{"upsert":{"additionalProperty1":"string","additionalProperty2":"string"},"remove":["string"]}'
Request examples
{
  "upsert": {
    "additionalProperty1": "string",
    "additionalProperty2": "string"
  },
  "remove": [
    "string"
  ]
}