DESCRIBE STORE

Syntax

DESCRIBE STORE store_name;

Description

This provides the definition of an existing Store.

Stores are listed only if the current role has USAGE privileges.

Arguments

store_name

This is the name of the store to describe. If the name is case sensitive you must wrap it in double quotes; otherwise, the system uses the lowercase name.

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