DESCRIBE STORE

Syntax

DESCRIBE STORE store_name;

Description

This provides the definition of an existing Store.

Stores will only be listed if the current role has USAGE privileges.

Arguments

store_name

This is the name of the Store to describe. For case-sensitive names, the name must be wrapped in double quotes; otherwise, the lowercase name will be used.

Examples

Describe a Store

The following describes the Store named demostore:

demodb.public/demostore# DESCRIBE STORE demostore;
+-------------+------------------------------------------+----------+--------------+------------------+------------------+
|  Properties |  Uri                                     |  Details |  Tls Enabled |  Verify Hostname |  Schema Registry |
+=============+==========================================+==========+==============+==================+==================+
| {}          | b-1.kafka:9196,b-2.kafka:9196,b-3.kafka: | {}       | true         | true             | <null>           |
|             | 9196                                     |          |              |                  |                  |
+-------------+------------------------------------------+----------+--------------+------------------+------------------+

Describe a case-sensitive Store

The following describes the Store named MyStore:

demodb.public/demostore# DESCRIBE STORE "MyStore";
+-------------+------------------------------------------+----------+--------------+------------------+------------------+
|  Properties |  Uri                                     |  Details |  Tls Enabled |  Verify Hostname |  Schema Registry |
+=============+==========================================+==========+==============+==================+==================+
| {}          | b-1.kafka:9196,b-2.kafka:9196,b-3.kafka: | {}       | true         | false            | <null>           |
|             | 9196                                     |          |              |                  |                  |
+-------------+------------------------------------------+----------+--------------+------------------+------------------+

Last updated