You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ksql> DESCRIBE EXTENDED CUSTOMERS;
Type : TABLE
Key field : ID
Timestamp field : Not set - using <ROWTIME>
Key format : STRING
Value format : AVRO
Kafka output topic : fullfillment.demo.customers2-smt (partitions: 1, replication: 1)
Field | Type
----------------------------------------
ROWTIME | BIGINT (system)
ROWKEY | VARCHAR(STRING) (system)
ID | INTEGER
FIRST_NAME | VARCHAR(STRING)
LAST_NAME | VARCHAR(STRING)
EMAIL | VARCHAR(STRING)
GENDER | VARCHAR(STRING)
COMMENTS | VARCHAR(STRING)
----------------------------------------
Local runtime statistics
------------------------
(Statistics of the local KSQL server interaction with the Kafka topic fullfillment.demo.customers2-smt)
ksql>
Stream:
ksql> DESCRIBE EXTENDED LOGONS;
Type : STREAM
Key field :
Timestamp field : Not set - using <ROWTIME>
Key format : STRING
Value format : AVRO
Kafka output topic : logons6 (partitions: 1, replication: 1)
Field | Type
-----------------------------------------
ROWTIME | BIGINT (system)
ROWKEY | VARCHAR(STRING) (system)
LOGIN_ID | BIGINT
CUSTOMER_ID | INTEGER
LOGIN_TS | VARCHAR(STRING)
IP | VARCHAR(STRING)
-----------------------------------------
Local runtime statistics
------------------------
(Statistics of the local KSQL server interaction with the Kafka topic logons6)
ksql>
Table:
Stream:
Each have rows for ID 151:
The datatype matches (INTEGER), there are matching rows on each…but no values from the table are returned when attempting a
LEFT JOIN
:The text was updated successfully, but these errors were encountered: