Skip to main content

cluster_config

Creates, updates, deletes, gets or lists a cluster_config resource.

Overview

Namecluster_config
TypeResource
Idconfluent.schema_registry.cluster_config

Fields

The following fields are returned by SELECT queries:

The cluster config

NameDatatypeDescription
maxRequestsPerSecinteger (int32)Maximum number of allowed requests per second
maxSchemasinteger (int32)Maximum number of registered schemas allowed

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_cluster_configselectRetrieves cluster config information.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription

SELECT examples

Retrieves cluster config information.

SELECT
maxRequestsPerSec,
maxSchemas
FROM confluent.schema_registry.cluster_config
;