List available features

GET /v1/features

List the available Redpanda features. Available features are based on the loaded Redpanda license and activated features configuration.

Responses

  • 200 application/json

    Features response

    Hide response attributes Show response attributes object
    • cluster_version integer(int64)

      Logical version of cluster. Should equal latest_node_version if cluster is not currently being upgraded.

    • features array[object]

      list of feature_state for each feature

      State of one feature (active, available etc)

      Hide features attributes Show features attributes object
      • name string
      • state string

        Values are active, preparing, available, unavailable, or disabled.

      • was_active boolean

        Whether the feature has ever been active, i.e. data depending on this feature may have been written to disk

    • original_cluster_version integer(int64)

      Logical version at time of cluster creation. Should equal latest_node_version if cluster is not currently being upgraded.

    • node_earliest_version integer(int64)

      Earliest logical version supported by the broker answering this request

    • node_latest_version integer(int64)

      Latest logical version supported by the broker answering this request

GET /v1/features
curl \
 --request GET 'http://localhost:9644/v1/features'
Response examples (200)
{
  "cluster_version": 42,
  "features": [
    {
      "name": "string",
      "state": "active",
      "was_active": true
    }
  ],
  "original_cluster_version": 42,
  "node_earliest_version": 42,
  "node_latest_version": 42
}