DROP SCHEMA_REGISTRY
Syntax
DROP SCHEMA_REGISTRY schema_registry_name;
Description
Drops a Schema Registry from the organization. A Schema Registry cannot be dropped if there exist any stores that depend on that Schema Registry.
DROP SCHEMA_REGISTRY
cannot be undone. Use it with care!
Arguments
schema_registry_name
Specifies the name of the Schema Registry. For case-sensitive names, the name must be wrapped in double quotes, otherwise, the lowercased name will be used.
Examples
Drop a Schema Registry
Drops the Schema Registry named ccsr
:
demodb.public/demostore# LIST SCHEMA_REGISTRIES;
+---------------------+------------+------------+------------------------------------------+------------+-------------------------------+-------------------------------+
| Name | Type | State | Uris | Owner | Created At | Updated At |
+=====================+============+============+==========================================+============+===============================+===============================+
| ConfluentPlatformSR | Confluent | ready | https://url.to.schema.registry.listener: | sysadmin | 2024-07-03 14:49:13 +0000 UTC | 2024-07-03 14:49:13 +0000 UTC |
| | | | 8081 | | | |
+---------------------+------------+------------+------------------------------------------+------------+-------------------------------+-------------------------------+
| ccsr | Confluent | ready | https://path-to-my-registry | sysadmin | 2024-07-03 15:42:20 +0000 UTC | 2024-07-03 15:42:20 +0000 UTC |
+---------------------+------------+------------+------------------------------------------+------------+-------------------------------+-------------------------------++-------------------------------+-------------------------------+
demodb.public/demostore# DROP SCHEMA_REGISTRY ccsr;
+-----------------+------------+------------+------------------------------------------+
| Type | Name | Command | Summary |
+=================+============+============+==========================================+
| schema registry | ccsr | DROP | schema registry "ccsr" has been marked |
| | | | for deletion |
+-----------------+------------+------------+------------------------------------------+
demodb.public/demostore# LIST SCHEMA_REGISTRIES;
+---------------------+------------+------------+------------------------------------------+------------+-------------------------------+-------------------------------+
| Name | Type | State | Uris | Owner | Created At | Updated At |
+=====================+============+============+==========================================+============+===============================+===============================+
| ConfluentPlatformSR | Confluent | ready | https://url.to.schema.registry.listener: | sysadmin | 2024-07-03 14:49:13 +0000 UTC | 2024-07-03 14:49:13 +0000 UTC |
| | | | 8081 | | | |
+---------------------+------------+------------+------------------------------------------+------------+-------------------------------+-------------------------------+
Drop a Schema Registry with a case-sensitive name
Drops the Schema Registry named ConfluentCloudSR
:
demodb.public/demostore# LIST SCHEMA_REGISTRIES;
+---------------------+----------------+------------+------------------------------------------+------------+-------------------------------+-------------------------------+
| Name | Type | State | Uris | Owner | Created At | Updated At |
+=====================+================+============+==========================================+============+===============================+===============================+
| ConfluentPlatformSR | Confluent | ready | https://url.to.schema.registry.listener: | sysadmin | 2024-07-03 14:49:13 +0000 UTC | 2024-07-03 14:49:13 +0000 UTC |
| | | | 8081 | | | |
+---------------------+----------------+------------+------------------------------------------+------------+-------------------------------+-------------------------------+
| ConfluentCloudSR | ConfluentCloud | ready | https://abcd-efghi.us-east-2.aws.conflue | sysadmin | 2024-07-03 14:37:03 +0000 UTC | 2024-07-03 14:37:03 +0000 UTC |
| | | | nt.cloud | | | |
+---------------------+----------------+------------+------------------------------------------+------------+-------------------------------+-------------------------------+
demodb.public/demostore# DROP SCHEMA_REGISTRY "ConfluentCloudSR";
+-----------------+------------------+------------+------------------------------------------+
| Type | Name | Command | Summary |
+=================+==================+============+==========================================+
| schema registry | ConfluentCloudSR | DROP | schema registry "ConfluentCloudSR" has |
| | | | been marked for deletion |
+-----------------+------------------+------------+------------------------------------------+
demodb.public/demostore# LIST SCHEMA_REGISTRIES;
+---------------------+------------+------------+------------------------------------------+------------+-------------------------------+-------------------------------+
| Name | Type | State | Uris | Owner | Created At | Updated At |
+=====================+============+============+==========================================+============+===============================+===============================+
| ConfluentPlatformSR | Confluent | ready | https://url.to.schema.registry.listener: | sysadmin | 2024-07-03 14:49:13 +0000 UTC | 2024-07-03 14:49:13 +0000 UTC |
| | | | 8081 | | | |
+---------------------+------------+------------+------------------------------------------+------------+-------------------------------+-------------------------------+
Last updated