Quick Start for Schema Management on Confluent Cloud¶
You can use Confluent Cloud Schema Registry to manage schemas in Confluent Cloud. You enable a single Schema Registry per Confluent Cloud environment. Schema Registry is accessed over port 443.
You can create and edit schemas in a schema editor and associate them with Kafka topics.
Important
- Your VPC must be able to communicate with the Confluent Cloud Schema Registry public internet endpoint. For more information, see Using Confluent Cloud Schema Registry in a VPC Peered Environment.
- This quick start assumes that you have completed Quick Start for Apache Kafka using Confluent Cloud, including installing and using the Confluent Cloud CLI.
- This quick start requires that you use both the Confluent Cloud UI and the Confluent Cloud CLI. (A handy list of CLI commands is here.)
Log in to the Confluent Cloud UI¶
- Log in to Confluent Cloud at https://confluent.cloud.
- Select an environment or create a new one.
Enable Schema Registry for Confluent Cloud¶
Select a cluster.
Click the Schemas tab.
Choose a cloud provider and geography (which will map to a region under the hood).
- Select Amazon Web Services (AWS), Google Cloud Platform (GCP), or Azure
- Choose a Region. US, Europe, and APAC are the available choices.
- Click Enable Schema Registry.
Tip
For each cloud provider, geographies are mapped under the hood to the following regions:
- GCP US: us-central1
- GCP EU: europe-west3
- GCP APAC: australia-southeast1
- AWS US: us-east-2
- AWS EU: eu-central-1
- AWS APAC: ap-southeast-2
- Azure US: westus2
- Azure EU: westeurope
- Azure APAC: southeastasia
Review your settings, and click Confirm to create the Schema Registry with these cloud provider and region settings.
An empty schemas list is shown, indicating no schemas have yet been created.
Create an API Key for Confluent Cloud Schema Registry¶
To use Confluent Cloud Schema Registry for managing Kafka clusters, you need an API key specific to Schema Registry.
Note
- The API key for Confluent Cloud Schema Registry is distinct from the API key you created for Kafka clusters in the same environment, per the Quick Start for Apache Kafka using Confluent Cloud.
- Confluent Cloud provides one Schema Registry per environment, and each environment can contain multiple Kafka clusters. You need an API key/secret pair for each Kafka cluster and another for the Schema Registry cluster.
In the environment for which you want to set up Schema Registry, click the Settings tab, then click Schema Registry API access to expand those options.
Under Make requests to this Schema Registry endpoint, copy the Schema Registry endpoint to a safe location.
Click Create key to create a new Schema Registry API key.
When the API Key and API Secret are saved, click the checkbox next to I have saved my API key and secret and am ready to continue, and click Continue.
Your new Schema Registry key is shown on the Schema Registry API access key list.
Schema Registry API Keys for Multi-Tenant Clusters¶
Confluent Cloud supports one Schema Registry per environment. In multi-tenant deployments, the registries for different Kafka clusters in different environments will have the same URL as the Confluent Cloud Schema Registry. However, Confluent Cloud uses the Schema Registry API keys to store schemas in different logical clusters.
Therefore, if you have a Schema Registry API key (prod-sr-api-1
) for Schema Registry in production
1 cluster in environment A and a Schema Registry API key (for example, prod-sr-api-2
)
for a Schema Registry in production 2 cluster in Environment B, when a Kafka producer sends
messages with prod-sr-api-1
, Confluent Cloud appropriately registers a schema in
Schema Registry in prod-1
.
Tip
To learn more about other environment level schema management options available on the Environment settings page, see Configure and Manage Schemas for an Environment.
Create a Topic in Confluent Cloud¶
You may already have topics available on this cluster, having worked through the prerequisite Quick Start for Apache Kafka using Confluent Cloud, but create a new topic designed to test out Schema Registry.
Select the environment.
Tip
If you have only one environment, default, it will be selected already.
Select the cluster.
Click Topics on the left menu, then click Create topic.
Name the new topic
employees
, and click Create with defaults to add it.
Create a Schema¶
Use the Confluent Cloud CLI to create the schema. If you need more help with the basic
CLI commands, type ccloud --help
, ccloud schema-registry --help
to drill down,
or see Quick Start for Apache Kafka using Confluent Cloud and the Confluent Cloud command reference.
Log in to the Confluent Cloud CLI.
ccloud login
Follow the prompts to enter your credentials (email and password).
Upon login, Confluent Cloud indicates your current environment.
Enter your Confluent credentials: Email: Password: Using environment t2814 ("my-cloud-demos")
Select the environment where you created the
employees
topic. (It may already be selected upon login.)In order to verify this, use
ccloud environment list
to get the environment IDs, followed byccloud environment use <ID>
to select the environment you want (if it is not already the current environment).For example:
ccloud environment list
Your output should resemble:
Id | Name +-------------+----------------+ * t1898 | default t2814 | my-cloud-demos env-gw333 | my-new-env
To use “my-new-env”:
ccloud environment use env-gw333
Tip
- To list environments:
ccloud environment list
- To select an environment:
ccloud environment use <environment ID>
- To list clusters:
ccloud kafka cluster list
- To select a cluster:
ccloud kafka cluster use <cluster ID>
- For the full list of
ccloud
commands see Confluent Cloud command reference.
- To list environments:
Create a file containing the following JSON and name it
employees.json
.{ "type" : "record", "namespace" : "Example", "name" : "Employee", "fields" : [ { "name" : "Name" , "type" : "string" }, { "name" : "Age" , "type" : "int" } ] }
Create a schema that uses
employees.json
.ccloud schema-registry schema create --subject employees-value --schema employees.json --type AVRO
For example:
ccloud schema-registry schema create --subject employees-value --schema employees.json --type AVRO Enter your Schema Registry API Key: xxxx Enter your Schema Registry API Secret: xxxxyyyyzzzz Successfully registered schema with ID: 100001
Tip
You have the option to create schemas that reference other schemas by using the
--refs <ref-file>
flag withccloud schema-registry schema create
. To learn more about schema references, see Schema References in the Confluent Platform documentation.You must specify a schema format type as one of
AVRO
,JSON
, orPROTOBUF
, and then supply a schema that conforms to the syntax for that type. To learn more about development using these schema formats, see Schema Formats, Serializers, and Deserializers in the Confluent Platform documentation, the JSON Schema project documentation, the Apache Avro® specification, and the Google Developer documentation on Protocol Buffers.You can also create a schema on the Confluent Cloud web UI. To do so, select an environment and cluster, select a topic, then click the Schema tab for that topic. Select a schema format type (for this example, Avro), paste the schema (such as the
employees.json
content), and click Save.
View the Topic and Associated Schema¶
Return to the Confluent Cloud UI to view the new schema for the employees
topic.
Navigate to the topics list for your cluster.
Click the employees topic you created in a previous step.
Click Schema.
And there you have it! You have a new schema (
employees-value
) for theemployees
topic in Confluent Cloud Schema Registry.
Configure and Manage Schemas for an Environment¶
Several tasks related to schemas on Confluent Cloud are managed at the environment level. This includes creating and managing Schema Registry API keys along with options, as described below, to view and search schemas, monitor usage, and set a compatibility mode for schemas.
View and Search All Schemas in an Environment¶
To view a searchable list of all schemas available in a Confluent Cloud environment:
Select an environment.
Click the Schemas tab.
View Allowed Usage for Schemas on Confluent Cloud¶
Schema Registry in Confluent Cloud limits the number of schema versions supported in the registry for basic clusters, standard clusters, and dedicated clusters as described in Confluent Cloud Cluster Types. You can view the number of schemas you have in an environment compared to the allowed usage limit.
Select an environment.
Click the Settings tab.
Click Schema Registry allowed usage to expand the usage view.
To learn more about how to manage schema usage on Confluent Cloud, see how to free up space for new schemas.
View and Edit Schema Compatibility Settings¶
The default compatibility mode is Backward. You can change the mode, which will apply to all schemas in an environment.
Caution
If you change the compatibility mode of existing schemas already in production use, be aware of any possible breaking changes to your applications.
Select an environment.
Click the Settings tab.
Click Schema Registry compatibility configuration to expand the compatibility options.
Select a mode option:
- Backward (Confluent Schema Registry default)
- Transitive backward
- Forward and Transitive forward
- Full and Transitive full
- None (not recommended)
Descriptions indicate the compatibility behavior for each option. For more information, including the changes allowed for each option, see Schema Evolution and Compatibility.
Click Save.
Use curl to View and Manage Schemas¶
You can also use curl commands to view and manage schemas on Confluent Cloud.
Schema Registry on Confluent Cloud requires that you pass the API Key and Secret with the --user
(or -u
) flag.
For example, to view all subjects in the registry:
curl --user <schema-registry-api-key>:<schema-registry-api-secret> \
<schema-registry-url>/subjects
For more information about using curl commands with Schema Registry, see Schema Registry API Usage Examples. With the exception of this one same example, the examples are for on-premises Schema Registry but many of the commands are relevant to Confluent Cloud, once you know how to pass your API Key and Secret as shown here.
Suggested Reading¶
- Working with Schemas
- Confluent Cloud Schema Registry Tutorial
- Quick Start for Apache Kafka using Confluent Cloud
- Confluent Cloud UI
- Confluent Cloud CLI Schema Registry commands
- Schema Management
- Migrate Schemas
- Confluent Cloud schemas limits and how to free up space
- Schema Formats, Serializers, and Deserializers (Confluent Platform tools that support application development for Confluent Cloud and self-managed systems)
- Run an automated Confluent Cloud quickstart with Avro, Protobuf, and JSON formats