DESCRIBE : Stream과 Table의 컬럼과 타입을 보여준다. 그 외에도 Stream과 Table에 대한 관련 세부 정보를 보여준다.
DESCRIBE EXTENDED : 카프카 토픽 세부 사항 및 더 다양한 정보를 보여준다.
예제
> DESCRIBE ip_sum;
Field | Type
-----------------------------------------
IP | VARCHAR(STRING) (primary key)
KBYTES | BIGINT
-----------------------------------------
For runtime statistics and query details run: DESCRIBE <Stream,Table> EXTENDED
> DESCRIBE ip_sum EXTENDED;
Type : TABLE
Timestamp field : Not set - using <ROWTIME>
Key format : KAFKA
Value format : JSON
Kafka output topic : IP_SUM (partitions: 4, replication: 1)
Field | Type
-----------------------------------------
IP | VARCHAR(STRING) (primary key)
KBYTES | BIGINT
-----------------------------------------
Queries that write into this TABLE
-----------------------------------
id:CTAS_IP_SUM - CREATE TABLE IP_SUM as SELECT ip, sum(bytes)/1024 as kbytes FROM CLICKSTREAM window SESSION (300 second) GROUP BY ip EMIT CHANGES;
For query topology and execution plan run: EXPLAIN <QueryId>; for more information
Local runtime statistics
------------------------
messages-per-sec: 4.41 total-messages: 486 last-message: 12/14/17 4:32:23 PM GMT
failed-messages: 0 last-failed: n/a
(Statistics of the local ksqlDB server interaction with the Kafka topic IP_SUM)
내용 정리
SHOW Streams
예제
DESCRIBE
예제