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
CREATETABLEIF NOT EXISTS student
(primary key (_id))
include key as _id
WITH (
connector='kafka',
properties.bootstrap.server='kafka:9092',
topic='owener.student'
)
FORMAT UPSERT ENCODE AVRO (
schema.registry='http://schema-reg:8081'
);
But the primary key (_id) data is \x00000027608e0ee2
My actual data from kafka key should be studentid: 33
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I have created the table shown as below
But the primary key (_id) data is
\x00000027608e0ee2
My actual data from kafka key should be
studentid: 33
If i want to filter _id = 33, how should i do ?
Beta Was this translation helpful? Give feedback.
All reactions